Android App启动activity_main.xml

时间:2014-02-17 16:09:23

标签: android eclipse

我制作了一个Android应用程序,但我想开始一个新的活动(.xml)。 通常,当应用程序启动时,它会直接显示activity_main.xml布局文件。 我不知道这是怎么回事,所以这是什么代码,因为我知道如何开始新的活动。

3 个答案:

答案 0 :(得分:0)

您可以使用setContentView方法指定要在Activity中显示的布局:

setContentView(R.layout.layoutForYourActivity);

必须在onCreate方法

中指定

答案 1 :(得分:0)

主要活动中需要简单: -

 {
(R.layout.main_activity);
   Intent intent =new Intent(getApplicationContext(),AnotherActivity.class);
   startActivity(intent);
 }  
and then you have create `AnotherActivity.class
and insert another layout for AnotherActivity in (R.layout.anotherlayout);
that solve 

答案 2 :(得分:0)

通过 New - >创建新活动其他 - > Android - > Android活动

活动是 .java 文件, .xml 只是布局。 使用

调用新活动
intent = new Intent(main.this, YourActivity.class);
startActivity(intent);

我建议你做一些基本的教程。