3

我的申请确实有一个奇怪的错误。当我直接从操作系统启动应用程序时,我的应用程序崩溃(不要介意崩溃,我大致知道原因 - 类加载器),然后通过任何任务杀手从后台杀死它(这是重现崩溃的少数方法之一一致 - >模拟操作系统释放内存并关闭应用程序)并尝试再次重新启动它。

问题是,如果我使用以下命令通过 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

4

1 回答 1

1

我可以看到的第一件事是,如果您从启动器图标启动应用程序,则 Intent 包含 CATEGORY “android.intent.category.LAUNCHER”,而使用adb shell am它则不包含。

此外,当您通过启动器图标启动时,会设置 Intent 标志FLAG_ACTIVITY_RESET_TASK_IF_NEEDED(0x200000),adb shell如果没有设置。

不确定这是否会对您的崩溃行为产生影响,但它回答了这个问题。

于 2012-07-11T09:23:05.177 回答