-3
我想創建一個應用程序,它向我顯示optionMenu,但是當我想覆蓋onCreateOptionMenu時,沒有任何跟蹤。我的意思是我看不到它在活動類方法的集合中! 你能幫我嗎?我無法覆蓋OnCreateOptionMenu()
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.optionsmenu"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="7"
android:targetSdkVersion="16" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.derakhshani.optionsmenu.Main"
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>
爲什麼你可以發佈您的XML?在java中覆蓋一個方法。 – schmop
後要覆蓋它 –
我想這個問題是關係到我的清單文件 –