如何访问工具栏中的按钮?
How to access a button in toolbar?
我在应用程序中有一个客户工具栏,如下所示,有一个按钮调用注销
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar_layout"
android:layout_width="match_parent"
android:layout_height="80dp"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:background="@android:color/transparent">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="24dp">
<Button
android:id="@+id/toolbar_logo_image"
android:layout_width="32dp"
android:layout_height="32dp"
android:layout_marginStart="8dp"
android:layout_marginEnd="4dp"
android:layout_centerVertical="true"
android:background="@drawable/logo" />
<EditText
android:id="@+id/toolbar_search_field"
android:layout_width="280dp"
android:layout_height="36dp"
android:textSize="20dp"
android:hint="Search"
android:textColorHint="@color/white"
android:layout_toEndOf="@+id/toolbar_logo_image"
android:layout_centerVertical="true"
android:textColor="@android:color/white"
android:background="@android:color/transparent"
android:drawablePadding="2dp"
android:drawableStart="@drawable/ic_search_24dp"
tools:textColor="@android:color/black"/>
</RelativeLayout>
</android.support.v7.widget.Toolbar>
我已将此工具栏包含在我的主 activity 中,如下所示
<include
android:id="@+id/main_page_toolbar"
layout="@layout/app_bar_toolbar">
</include>
在我的主 activity 我有如下所示的工具栏
mToolbar = (Toolbar) findViewById(R.id.main_page_toolbar);
如何访问该工具栏中的按钮 我想创建一个 onclickevent
我该怎么做?
您可以在每个视图上使用 findViewById
。所以你可以使用
Button button = (Button) mToolbar.findViewById(R.id.toolbar_logo_image);
但是由于您在根布局中包含了工具栏布局,所以它应该足够使用
Button button = (Button) findViewById(R.id.toolbar_logo_image);
两者都应该有效。
编辑:您的 app_bar_toolbar.xml 有一个 FrameLayout
作为根元素,但在代码中您试图将其转换为 Toolbar
。那是行不通的,并且会因 ClassCastException 而崩溃。因此,将您的 FrameLayout 更改为 Toolbar 或正确投射 FrameLayout。取决于您的需求。
您没有使用工具栏,您使用的是 FrameLayout...
改用这个
<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:layout="http://schemas.android.com/apk/res-auto"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@android:color/white"
android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
layout:popupTheme="@style/Toolbar.Theme">
<Button
android:id="@+id/toolbar_logo_image"
android:layout_width="32dp"
android:layout_height="32dp"
android:layout_centerVertical="true"
android:layout_marginEnd="4dp"
android:layout_marginStart="8dp"
android:background="@drawable/logo"></Button>
</android.support.v7.widget.Toolbar>
您可以使用它来获取按钮
mToolbar = (Toolbar) findViewById(R.id.toolbar);
Button button = (Button) mToolbar.findViewById(R.id.toolbar_logo_image);
将此 xml 文件用于自定义工具栏
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:background="@color/sky"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
// here you can put your button or any tools which you want.
</RelativeLayout>
</android.support.v7.widget.Toolbar>
之后在你的 activity
Toolbar mToolbar= (Toolbar) findViewById(R.id.toolbar);
Button btn= (Button) mToolbar.findViewById(R.id.toolbar_logo_image);
setSupportActionBar(mToolbar); // add this line to your code.
并在您的 style.xml 中更改 parent="Theme.AppCompat.Light.DarkActionBar" to parent="Theme.AppCompat.Light.NoActionBar"
我在应用程序中有一个客户工具栏,如下所示,有一个按钮调用注销
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar_layout"
android:layout_width="match_parent"
android:layout_height="80dp"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:background="@android:color/transparent">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="24dp">
<Button
android:id="@+id/toolbar_logo_image"
android:layout_width="32dp"
android:layout_height="32dp"
android:layout_marginStart="8dp"
android:layout_marginEnd="4dp"
android:layout_centerVertical="true"
android:background="@drawable/logo" />
<EditText
android:id="@+id/toolbar_search_field"
android:layout_width="280dp"
android:layout_height="36dp"
android:textSize="20dp"
android:hint="Search"
android:textColorHint="@color/white"
android:layout_toEndOf="@+id/toolbar_logo_image"
android:layout_centerVertical="true"
android:textColor="@android:color/white"
android:background="@android:color/transparent"
android:drawablePadding="2dp"
android:drawableStart="@drawable/ic_search_24dp"
tools:textColor="@android:color/black"/>
</RelativeLayout>
</android.support.v7.widget.Toolbar>
我已将此工具栏包含在我的主 activity 中,如下所示
<include
android:id="@+id/main_page_toolbar"
layout="@layout/app_bar_toolbar">
</include>
在我的主 activity 我有如下所示的工具栏
mToolbar = (Toolbar) findViewById(R.id.main_page_toolbar);
如何访问该工具栏中的按钮 我想创建一个 onclickevent 我该怎么做?
您可以在每个视图上使用 findViewById
。所以你可以使用
Button button = (Button) mToolbar.findViewById(R.id.toolbar_logo_image);
但是由于您在根布局中包含了工具栏布局,所以它应该足够使用
Button button = (Button) findViewById(R.id.toolbar_logo_image);
两者都应该有效。
编辑:您的 app_bar_toolbar.xml 有一个 FrameLayout
作为根元素,但在代码中您试图将其转换为 Toolbar
。那是行不通的,并且会因 ClassCastException 而崩溃。因此,将您的 FrameLayout 更改为 Toolbar 或正确投射 FrameLayout。取决于您的需求。
您没有使用工具栏,您使用的是 FrameLayout... 改用这个
<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:layout="http://schemas.android.com/apk/res-auto"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@android:color/white"
android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
layout:popupTheme="@style/Toolbar.Theme">
<Button
android:id="@+id/toolbar_logo_image"
android:layout_width="32dp"
android:layout_height="32dp"
android:layout_centerVertical="true"
android:layout_marginEnd="4dp"
android:layout_marginStart="8dp"
android:background="@drawable/logo"></Button>
</android.support.v7.widget.Toolbar>
您可以使用它来获取按钮
mToolbar = (Toolbar) findViewById(R.id.toolbar);
Button button = (Button) mToolbar.findViewById(R.id.toolbar_logo_image);
将此 xml 文件用于自定义工具栏
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:background="@color/sky"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
// here you can put your button or any tools which you want.
</RelativeLayout>
</android.support.v7.widget.Toolbar>
之后在你的 activity
Toolbar mToolbar= (Toolbar) findViewById(R.id.toolbar);
Button btn= (Button) mToolbar.findViewById(R.id.toolbar_logo_image);
setSupportActionBar(mToolbar); // add this line to your code.
并在您的 style.xml 中更改 parent="Theme.AppCompat.Light.DarkActionBar" to parent="Theme.AppCompat.Light.NoActionBar"