我是Android新手,我正在尝试将最基本的应用程序安装到手机上以便开始使用。
我按照http://developer.android.com/training/basics/firstapp/index.html处的步骤操作,安装后我的应用程序图标不会显示在我手机的应用程序中。它出现在设置>应用程序>管理应用程序,但在我的应用程序列表中没有。我正在使用三星Galaxy S2 i9100。
这是我的清单。这是由Eclipse自动生成的。
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.testapp"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="21" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
</application>
</manifest>
答案 0 :(得分:1)
清单太短了。 您的应用程序未添加到已启动的应用程序列表中。 您必须通过在Manifest中指定以下描述将您的应用程序添加到列表中。
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.YOUR_HOME_ACTIVITY"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
这就是全部。