我有一個帶有2個選項的菜單充氣器,About和Rate。關於工作很好,當點擊率時,強制關閉。單擊菜單項時強制關閉android
case R.id.About:
Intent i = new Intent(this, About.class);
startActivity(i);
break;
case R.id.Rate:
Intent marketIntent = new Intent(Intent.ACTION_VIEW,
Uri.parse("market://details?
id="+"com.androidsleepmachine.gamble"));
startActivity(marketIntent);
}
和清單代碼
<activity android:name="com.androidsleepmachine.gamble.About"/>
<activity android:name="com.androidsleepmachine.gamble.Rate" />
和logcat的
06-13 23:59:30.294: E/AndroidRuntime(1576): FATAL EXCEPTION: main
06-13 23:59:30.294: E/AndroidRuntime(1576): android.content.ActivityNotFoundException:
No Activity found to handle Intent { act=android.intent.action.VIEW
dat=market://details?id=com.androidsleepmachine.gamble }
我相信這是一些簡單的,我被忽視,但它讓我瘋狂。同樣,關於工作正常,速度導致一個力量關閉,而不是加載市場的URL到我的應用程序,因此用戶可以評價它。
這是模擬器還是設備? – matiash