我創建了一個小應用程序,當我在模擬器上運行它時,它運行完美。Android應用程序在模擬器上工作,並安裝在Android設備上,但當我打開它時,它顯示空白屏幕,然後強制關閉
但是,當我將其安裝在設備上並啓動它時,它顯示空白/黑屏,然後與消息The Application TOH(process my.own) has stopped unexpectedly
崩潰。
不知道我在做什麼錯..
請指教..
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="my.own"
android:versionCode="2"
android:versionName="2.3.4" >
<uses-sdk android:minSdkVersion="10" />
<supports-screens android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="true"
android:anyDensity="true" />
<application
android:icon="@drawable/background2"
android:label="@string/app_name" >
<activity
android:name=".TOH"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".Startgame"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
<activity
android:name=".scoretell"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
<activity android:name=".details"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
<activity
android:name=".ShowPopUp"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
</application>
</manifest>
如果您在這裏發佈LogCat,這將會很有幫助。 – DrA
這是因爲你的代碼中有錯誤。 ... – Selvin
您的'supports-screens'標籤完全是多餘的......默認情況下,這些值被設置爲「true」。你應該刪除它。 –