我尝试使用android.support.v7.widget.toolbar创建工具栏,但是当我尝试添加项目时,它不会显示在工具栏上:
activity_main.xml中的工具栏:
<android.support.v7.widget.Toolbar
android:id="@+id/my_toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"/>
main_activity: on onCreate:
Toolbar my_tbar = (Toolbar) findViewById(R.id.my_toolbar);
setSupportActionBar(my_tbar);
out of onCreate:
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case R.id.refresh:
return true;
default:
return super.onOptionsItemSelected(item);
}
}
RES /菜单/ main_menu.xml
<?xml version="1.0" encoding="utf-8"?>
<menu
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<item
android:title="RefreshButton"
android:id="@+id/refresh"
android:icon="@drawable/refresh_icon"
app:showAsAction="always"
/>
</menu>
refresh_icon
由我创建,因为在@drawable/
我没有找到ic_menu_refresh
为什么没有显示按钮?
谢谢
答案 0 :(得分:1)
它没有显示,因为你没有透过菜单布局。在致电onOptionsItemSelected()
之前,您需要像这样膨胀布局
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.main_menu, menu);
return true;
}
只需在您的活动中添加此方法,它就可以正常使用。