我想用Twitter App等徽标替换工具栏中的标题。
我认为我们可以像这样以编程方式替换它:
mToolbar = (Toolbar) findViewById(R.id.app_toolbar);
mToolbar.setLogo(R.drawable.ic_logo);
但是我想直接在我的XML工具栏声明中替换它,但我看不到属性app:logo
或android:logo
。
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/app_toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/colorPrimary"
android:minHeight="?attr/actionBarSize"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:theme="@style/MyCustomToolBarTheme" />
请帮帮我,谢谢。
答案 0 :(得分:5)
如果您查看Toolbar
和Toolbar
custom attributes的源代码,则只有少数几个属性可用于自定义Toolbar
,但徽标不是一个他们:
Toolbar.setLogo(resId)
似乎是目前唯一的选择。
答案 1 :(得分:2)
工具栏包含一个ViewGroup,您可以使用您想要的任何视图填充它 - 如果您想要徽标,可以在那里添加ImageView。例如:
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
>
<ImageView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:src="@drawable/ic_logo"/>
</android.support.v7.widget.Toolbar>
如果手动将其附加到AppCompatActivity或ActionBar活动,它将“变为”ActionBar,然后必须使用这些代码函数进行操作。