我需要添加facebook喜歡在設置菜單如下圖像.so如何添加新項目設置菜單我試圖解決這個問題,只有我已經找到設置菜單res> values> string.xml>設置菜單。如何將新項目添加到Android的設置菜單?
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<menu>
<item
android:id="@+id/action_settings"
android:orderInCategory="1"
android:showAsAction="never"
android:title="Settings"/>
<item
android:id="@+id/action_about"
android:orderInCategory="2"
android:showAsAction="never"
android:title="About"/>
<item
android:id="@+id/action_exit"
android:orderInCategory="3"
android:showAsAction="never"
android:title="Exit"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<WebView
android:id="@+id/web_engine"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</WebView>
也許水庫 - >排列 - >菜單?或res - > menu - > main_activity? –
也許這將幫助http://stackoverflow.com/questions/7133141/android-changing-option-menu-items-programmatically – Gina