我目前面临的问题是我只能通过eclipse中的运行按钮运行我的应用程序。当我拔下我的设备并点击应用程序的图标时,应用程序不会运行,并且屏幕为黑色,直到我通过单击主页按钮返回主菜单。
我希望有人可以帮助我!
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.agpfd.whackamole"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="8"
android:targetSdkVersion="19" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.agpfd.whackamole.WhackAMoleActivity"
android:screenOrientation="portrait"
android:configChanges="orientation|keyboardHidden"
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>
</manifest>
我是初学者
Pps我在互联网上搜索了我的问题,但除了这个之外我找不到任何东西: Android Application Installed but won't open on device 我猜这不起作用/与我的清单无关