gpt4 book ai didi

android - 如何在工具栏菜单中显示图标下方的文字?

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:30:34 25 4
gpt4 key购买 nike

基本上我们使用带图标的工具栏菜单,有时我们也使用图标/文本。图标和文本水平显示,如下图所示

enter image description here

在正常情况下会发生,但我想像下图一样垂直显示菜单图标/文本

enter image description here

我已经用这个xml做了xml布局

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/colorPrimary"
android:orientation="horizontal"
android:padding="@dimen/default_margin">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawableTop="@drawable/bg_timeline"
android:layout_weight="1"
android:gravity="center"
android:text="@string/label_timeline" />

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/default_margin"
android:drawableTop="@drawable/ic_about_large"
android:layout_weight="1"
android:gravity="center"
android:text="@string/label_about" />

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawableTop="@drawable/ic_achivement_active"
android:layout_marginLeft="@dimen/default_margin"
android:layout_weight="1"
android:gravity="center"
android:text="@string/label_achievements" />

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawableTop="@drawable/ic_more"
android:background="?selectableItemBackground"
android:gravity="center"
android:layout_marginLeft="@dimen/default_margin"
android:layout_weight="1"
android:text="@string/label_more" />
</LinearLayout>

我的问题是当菜单项像文本一样放置在每个图标下方时,如何实现工具栏/操作栏。有办法做到这一点吗?

最佳答案

您可以使用工具栏方法 inflateMenu 来扩充自定义菜单布局。下面是一个小 fragment :

  1. 在菜单文件夹中定义您的自定义菜单 your_menu:
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<item
android:id="@+id/your_id"
android:title="@string/your_string"
android:icon="@drawable/your_menu_icon"
app:actionLayout="@layout/your_custom_menu_layout"
app:showAsAction = "always"
/>
</menu>
  1. 现在定义your_custom_menu_layout:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="vertical"
android:paddingRight="10dp">
<ImageView
android:layout_width="30dp"
android:layout_height="30dp"
android:gravity="center"
android:paddingLeft="5dp"
android:paddingRight="5dp"
android:src="@drawable/your_menu_icon" />

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:paddingLeft="0dp"
android:text="your_text"
android:textColor="@color/white"
android:textSize="9dp" />
</LinearLayout>
  1. 第三,使用工具栏在 Java 代码中扩充菜单项:

your_toolbar.inflateMenu(R.menu.your_menu);

  1. 引用和点击监听器:

Menu menu = your_toolbar.getMenu();

View your_menu_view = menu.findItem(R.id.your_id).getActionView(); your_menu_view.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { } });

关于android - 如何在工具栏菜单中显示图标下方的文字?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36199215/

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