1

数秒後に別のアクティビティを開始するスプラッシュ アクティビティを設定しました。とにかく、もう 1 つの機能を追加したかったのです。5 秒後だけでなく、スプラッシュ ビューをクリックした後に 2 番目のアクティビティを開始することです。次をセットアップするとすぐに:

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>
4

4 に答える 4

7

android:clickable="true"layout 属性を設定android:focusable="true"android:focusableInTouchMode="true"、xml またはコードからLinearLayout をクリック可能にしsetClickable(true)ます。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
于 2012-07-28T12:32:30.993 に答える
1

xml レイアウトでこれが欠落している可能性があります

android:id="@+id/splash"
于 2012-07-28T12:25:27.290 に答える
0

レイアウト インフレータが役立つfindViewById(int id)前に setを使用することはできません。また、レイアウト上では使用できません。setContentView()android:clickable="true"android:focusable="true"android:focusableInTouchMode="true"

于 2015-09-11T23:46:57.643 に答える
0

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(これ);

于 2012-07-28T12:28:16.900 に答える