gpt4 book ai didi

Android 在菜单的自定义布局上设置全宽

转载 作者:行者123 更新时间:2023-11-30 01:01:34 25 4
gpt4 key购买 nike

我正在尝试为 DrawerLayout 上的菜单项附加自定义布局,但如您所见,菜单项没有全宽,我无法解决此问题

enter image description here

我的菜单布局

<?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">
<group android:id="@+id/groupOne">
<item
android:id="@+id/inbox"
app:actionLayout="@layout/create_new"/>
</group>
</menu>

我的自定义布局为 create_new

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:paddingTop="5dp"
android:paddingBottom="5dp">

<TextView
android:layout_width="match_parent"
android:layout_height="25dp"
android:text="New Text"
android:gravity="left|center"
android:layout_marginLeft="20dp"
android:background="#000"
android:textColor="#fff"/>
</LinearLayout>

最佳答案

是的,对我有用的唯一方法是在自定义布局的 Root View 上设置 android:layout_width="100000dp"

然而,丑陋丑陋的黑客。

关于Android 在菜单的自定义布局上设置全宽,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39313551/

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