我有一個操作欄,我不明白爲什麼使用此代碼操作欄內的菜單項不顯示。項目沒有顯示在操作欄上
main_menu.xml
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
tools:context="com.foo.activity" >
<item
android:id="@+id/button1"
android:icon="@drawable/button1"
android:onClick="clickEvent"
android:showAsAction="ifRoom|withText"
android:title="@string/button1">
<item
android:id="@+id/log_out"
android:orderInCategory="100"
android:showAsAction="never"
android:title="@string/log_out"/>
</item>
</menu>
和
// create action bar menu
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
它alwasy顯示此:
在此先感謝。
爲什麼把項目放入另一個項目???改變android:showAsAction =「ifRoom | withText」to android:showAsAction =「always」 – MHP 2014-08-31 07:55:58
@MHP用你的建議我在'onCreateOptionMenu'上得到'inflateException' – 2014-08-31 07:59:21
以下答案是真的,你有錯誤,因爲你忘了把/>項目結束 – MHP 2014-08-31 08:09:32