设置安卓视图可点击



我设置了飞溅活动,该活动在几秒钟后开始另一个活动。无论如何,我想再添加一个功能:不仅在 5 秒后而且在单击我的启动视图后启动第二个活动。一旦我设置了下一个:

View v = (View)findViewById(R.layout.splash); 
    v.setOnClickListener(this);
    setContentView(v);

而不是

setContentView(R.layout.splash);

我的项目未运行。问题出在哪里?

这是我的代码:

public class SlashC extends Activity implements Runnable, OnClickListener {
Thread timer;
MediaPlayer hTree;
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    View v = (View)findViewById(R.layout.splash); // problems start here
    v.setOnClickListener(this);
    setContentView(v);
    hTree = MediaPlayer.create(this, R.raw.happy_tree);
    hTree.start();
    timer = new Thread(this);
    timer.start();
}
public void onClick(View v) {
    // TODO Auto-generated method stub
    Intent class2 = new Intent("com.roger.calc.MainActivity");
    startActivity(class2);
}
public void run() {
    // TODO Auto-generated method stub
    try {
        timer.sleep(5000);
    } catch (InterruptedException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }finally{
        Intent class2 = new Intent("com.roger.calc.MainActivity");
        startActivity(class2);
    }       
}
@Override
protected void onPause() {
    // TODO Auto-generated method stub
    super.onPause();
    hTree.release();
    finish();
}}

和 XML

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@drawable/splash2"
android:clickable="true" >
</LinearLayout>

通过设置布局属性android:clickable="true"android:focusable="true"android:focusableInTouchMode="true" 从 XML 或从代码setClickable(true),使 LinearLayout 可单击。 将 onClickListener 设置为

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/splash"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:focusableInTouchMode="true"
    android:clickable="true"
    android:focusable="true" 
    android:orientation="vertical"
    android:background="@drawable/splash2"/>

在代码部分中:

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.splash);
    ((LinearLayout)findViewById(R.id.splash)).setOnClickListener(this);
    /// YOUR CODE HERE
可能是

您在XML布局中缺少此功能

android:id="@+id/splash"

XML

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@drawable/splash2"
android:id="@+id/splash"
android:clickable="true" >
</LinearLayout>

setContentView(R.layout.name(;

Linearlayout v = (LinearLayout(findViewById(R.layout.splash(;

v.setOnClickListener(this(;

您不能在setContentView()布局膨胀之前使用该findViewById(int id),还可以在布局上设置android:clickable="true"android:focusable="true"android:focusableInTouchMode="true"

相关内容

  • 没有找到相关文章

最新更新