我尝试了所有的解决方案,但仍然无法在工具栏上显示图标,在我的主项目中我有一个工具栏,在工具栏和工具栏内部,片段,无论我尝试什么,我都无法在工具栏上显示图标,这里是mainActivity.java,它扩展了AppCompatActivity
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_act_main_screen);
Toolbar myToolbar = (Toolbar) findViewById(R.id.my_toolbar);
setSupportActionBar(myToolbar);
ActionBar ab = getSupportActionBar();
ab.setTitle("Title");
tabs = (TabLayout) findViewById(R.id.tabs);
tabs.addTab(tabs.newTab().setText("Today"),true);
tabs.addTab(tabs.newTab().setText("Settings"));
tabs.setOnTabSelectedListener(this);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.menu_main, menu);
return true;
}
styles.xml
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
</style>
menu.xml文件
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
工具:上下文= “地址” &GT;
<item
android:id="@+id/action_settings"
android:title="@string/action_settings"
app:showAsAction="always"
//android:showAsAction="always" tried this as well
android:icon="@drawable/share"/>
mainactivity.xml
<android.support.v7.widget.Toolbar
android:id="@+id/my_toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/toolbarColor"
android:elevation="3dp">
</android.support.v7.widget.Toolbar>
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:tabGravity="fill"
app:tabMode="fixed"
/>
没有什么工作,不确定如何实现自定义命名空间,但我将名称从app更改为自定义,但是也没有工作也有足够的空间但仍然没有显示。
答案 0 :(得分:0)
在你的活动课上,你需要这个:
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu, menu);
return true;
}
答案 1 :(得分:0)
我总是为工具栏的标题和图标执行此操作:
因为我现在无法访问计算机,所以我无法发布完整的样本,但我会描述:
首先设置toolbar
这样的高度:layout_height="android:?attr/actionBarSize"
然后在android.support.v7.widget.Toolbar
标记中添加LinearLayout
这些属性:android:layout_width="match_parent
和{{1} }和android:layout_height="match_parent"
然后在android:gravity="center_vertical|left"
中添加ImageView
这些属性:
LinearLayout
如果要添加标题,只需在添加ImageView后添加文本视图。
答案 2 :(得分:0)
尝试同时使用
android:showAsAction="always"
app:showAsAction="always"
忽略应使用app:showAsAction