如何在 Android 工具栏导航图标中设置复选框?
How to set an checkbox in the Android toolbar navigation icon?
我正尝试在工具栏的导航图标中设置一个复选框,就像在 Lollipop 画廊中一样:
我知道您可以使用这样的可绘制图像进行更改:
mToolbar.setNavigationIcon(iconRes);
但是如何将导航图标更改为复选框?我尝试使用自定义布局,但没有成功:
checkbox.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.CheckBox
android:id="@+id/checkbox"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true" />
</RelativeLayout>
并在 activity 中:
mToolbar.setNavigationIcon(R.layout.checkbox);
但这行不通。
您只能将可绘制资源 ID 与 setNavigationIcon 一起使用。你不能在那里放置布局。
我删除了原来的导航图标和工具栏标题,在 toolbar.xml 中将其替换为我自己的复选框和标题。
我正尝试在工具栏的导航图标中设置一个复选框,就像在 Lollipop 画廊中一样:
我知道您可以使用这样的可绘制图像进行更改:
mToolbar.setNavigationIcon(iconRes);
但是如何将导航图标更改为复选框?我尝试使用自定义布局,但没有成功:
checkbox.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.CheckBox
android:id="@+id/checkbox"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true" />
</RelativeLayout>
并在 activity 中:
mToolbar.setNavigationIcon(R.layout.checkbox);
但这行不通。
您只能将可绘制资源 ID 与 setNavigationIcon 一起使用。你不能在那里放置布局。
我删除了原来的导航图标和工具栏标题,在 toolbar.xml 中将其替换为我自己的复选框和标题。