有人对如何自定义选项菜单项有想法吗?因此我需要在工具栏中的选项菜单项的图标下方更改显示文本。
答案 0 :(得分:0)
Use Custom toolbar :-
<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/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/colorWhite"
android:elevation="0dp"
android:minHeight="?attr/actionBarSize"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/back_imageView"
android:layout_width="@dimen/card_h"
android:layout_height="@dimen/card_h"
android:layout_centerVertical="true"
android:contentDescription="@string/app_name"
android:paddingBottom="@dimen/small_margin"
android:paddingRight="@dimen/med_margin"
android:paddingTop="@dimen/small_margin"
android:src="@mipmap/back" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:orientation="vertical">
<ImageView
android:id="@+id/right_iv"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@mipmap/iv_dob"
android:layout_gravity="center"
android:contentDescription="@string/app_name" />
<TextView
android:id="@+id/first_textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:fontFamily="@font/lato_bold"
android:text="@string/app_name"
android:textAllCaps="true"
android:textColor="@color/colortext"
android:textSize="@dimen/normal_text_size" />
</LinearLayout>
</RelativeLayout>
</android.support.v7.widget.Toolbar>
答案 1 :(得分:0)
您可以使用自定义操作布局并将其放入菜单项:
这是菜单的XML。
<menu
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:Eventapp="http://schemas.android.com/apk/res-auto">
<item
android:id="@+id/action_create"
android:actionLayout="@layout/action_view_details_layout"
android:orderInCategory="50"
android:showAsAction = "always"/>
</menu>
布局是
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:text="@string/create"/>
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:src="@drawable/icon"/>
</LinearLayout>
这将以垂直方式显示图标和文本。