在Android上运行为应用程序为Eclipse安装应用程序,但没有运行它,它不会显示为一个图标

时间:2014-10-31 01:30:18

标签: android sdk adt samsung-mobile

我最近没有处理Android,所以我更新了我的SDK和ADT插件(没有更多可用的更新)。我正在运行Eclipse Juno。我创建了一个新项目,当我运行Android应用程序时,它会安装在我的手机上,但不会运行或显示为图标。

我在清单中有意图过滤,因为有些人提出这个解决方案没有区别:

enter image description here

构建日志和目标API

enter image description here

enter image description here

我的手机是旧的三星3,它运行4.3。这可能是个问题吗?我现在正在更新,但需要一段时间。

我还应该检查一下吗?

1 个答案:

答案 0 :(得分:3)

intent filter文件

中提供<activity>Manifest标记
   <activity
        android:name="TestHome">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

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