2

当我在移动设备上运行应用程序时,它在操作栏上显示我的应用程序名称的空白页面,一秒钟后它导航到我的 MainActivity。我被设置在清单中

<intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />             
 </intent-filter> 

但没有帮助,我正在尝试

 <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.home" />             
 </intent-filter>

但无济于事。如何将我的应用程序启动页面设置为首次运行?

4

1 回答 1

0

可能是您在 onCreate 中进行了一些昂贵的操作。如果是这种情况,那么在另一个线程中执行任务。这样做

onCreate(Bundle b){
    super.onCreate(b);
    setContentView(R.id.something);
    // now use different thread or handler to do costly things
}
于 2013-10-09T14:41:24.337 回答