我设置了启动活动,几秒钟后开始另一个活动。无论如何,我想再添加一项功能:不仅在 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>