我的申请确实有一个奇怪的错误。当我直接从操作系统启动应用程序时,我的应用程序崩溃(不要介意崩溃,我大致知道原因 - 类加载器),然后通过任何任务杀手从后台杀死它(这是重现崩溃的少数方法之一一致 - >模拟操作系统释放内存并关闭应用程序)并尝试再次重新启动它。
问题是,如果我使用以下命令通过 adb shell 启动应用程序:
adb shell am start -a android.intent.action.MAIN -n com.my.packagename/myLaunchActivity
我无法重现崩溃。
那么 Android 操作系统调用应用程序的方式与上述调用有什么不同吗?
编辑:添加清单(只是更改名称)
<?xml version="1.0" ?>
<manifest android:versionCode="5" android:versionName="1.05" package="com.my.sample" xmlns:android="http://schemas.android.com/apk/res/android">
<uses-sdk android:minSdkVersion="7"/>
<application android:icon="@drawable/square_my_logo" android:label="@string/app_name">
<activity android:label="@string/app_name" android:name="com.my.InfoActivity" android:screenOrientation="landscape"></activity>
<activity android:label="@string/app_name" android:name="com.my2.KickStart" android:screenOrientation="landscape"/>
<activity android:label="@string/app_name" android:name="com.my2.Launcher" android:screenOrientation="landscape">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/></manifest>
从 adb shell 启动 com.my2.Launcher