如何在Android上启动新应用程序?我已经完成了一个新的应用程序NewHomeScreen和Hello,并在NewHomeScreen上编写了这段代码。
@Override public void onCreate(Bundle state) {
super.onCreate(state);
setContentView(R.layout.main);
Intent mainIntent = new Intent(this,Hello.class);
startActivity(mainIntent);
}
但是,它不会启动Hello应用程序。调试器说状态值为null但它应该是什么?我也写了这个给Manifest:
<activity android:name="Hello">
<intent-filter>
<action android:name="android.intent.action.HELLO" />
<category android:name="android.intent.category.HELLO"/>
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
答案 0 :(得分:0)
我想您忘记在AndroidManifest.xml文件中指定主要的活动:
<application android:icon="@drawable/icon">
<activity android:name="NewHomeScreen" android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.HELLO" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
答案 1 :(得分:0)
尝试删除Home活动中的intent-filter。如果它不是你的主屏幕,你无论如何都不需要它。