gpt4 book ai didi

java - 更改左侧工具栏默认图标

转载 作者:太空宇宙 更新时间:2023-11-03 11:48:12 25 4
gpt4 key购买 nike

我目前在顶部使用工具栏,想用主页按钮替换默认的后退按钮。但是当我添加项目时,它总是添加到右边。我也没有看到任何可供选择的 layout_gravity 选项。有没有办法做到这一点?

主要 Activity

Toolbar toolbar;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_add_delete);

toolbar = (Toolbar)findViewById(R.id.app_bar);
setSupportActionBar(toolbar);
getSupportActionBar().setTitle(" Testing");
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.home_icon_empty, menu);
return true;
}

home_icon_empty.xml

<item
android:id="@+id/homepage"
android:orderInCategory="100"
android:title="HOME"
android:icon="@drawable/home_icon"
app:showAsAction="always"
/>

<item
android:id="@+id/homepage1"
android:orderInCategory="200"
android:title="HOME"
android:icon="@drawable/home_icon"
app:showAsAction="always"
/>

activity_main.xml

<include
android:id="@+id/app_bar"
layout="@layout/app_bar"
android:layout_width="match_parent"
android:layout_height="wrap_content" />

app_bar.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/colorPrimary">

</android.support.v7.widget.Toolbar>

当前工具栏输出:

enter image description here

预期的工具栏输出:

enter image description here

新编辑后的图片:

enter image description here

最佳答案

设置为导航图标:

Drawable drawable = ContextCompat.getDrawable(context, R.drawable.your_drawable)
toolbar.setNavigationIcon(drawable);
setSupportActionBar(toolbar);

关于java - 更改左侧工具栏默认图标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34292674/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com