gpt4 book ai didi

android - 菜单项文本未显示在 BottomAppBar 中

转载 作者:行者123 更新时间:2023-11-29 16:31:16 25 4
gpt4 key购买 nike

我一直在尝试将菜单项的标题与 Android Studio 底部应用栏中的菜单图标一起添加。我尝试设置:

app:showAsAction="ifRoom|withText"

但是没有成功。仅显示图标。我还尝试制作自己的布局文件并使用 actionLayout:

        android:actionLayout="@layout/menu_item_lists"

这也不起作用。

我想要的示例(图标下方有文字):

现在的样子:

enter image description here

我的 Activity 的 XML:

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main_constraint_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ededed"
tools:context=".MainActivity">


<fragment
android:id="@+id/activity_main_nav_host_fragment"
android:name="androidx.navigation.fragment.NavHostFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:defaultNavHost="true"
app:navGraph="@navigation/navigation_graph" />

<androidx.coordinatorlayout.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent">

<com.google.android.material.bottomappbar.BottomAppBar
android:id="@+id/bottomAppBar"
style="@style/Widget.MaterialComponents.BottomAppBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:background="#ffffff"
app:fabAlignmentMode="end"
app:fabCradleMargin="8dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" />

<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/floatingActionButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:clickable="true"
android:focusable="true"
app:backgroundTint="@color/colorPrimary"
app:layout_anchor="@id/bottomAppBar"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.502"
app:layout_constraintStart_toStartOf="parent"
app:rippleColor="@color/colorAccent"
app:srcCompat="@drawable/ic_add_white_24dp" />

</androidx.coordinatorlayout.widget.CoordinatorLayout>

</androidx.constraintlayout.widget.ConstraintLayout>

我的菜单代码:

    <?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/fragment_menu_lists"
android:title="Handlelister"
android:icon="@drawable/ic_format_list_bulleted_black_24dp"
android:actionLayout="@layout/menu_item_lists"
app:showAsAction="ifRoom|withText" />
<item android:id="@+id/fragment_menu_stores"
android:title="Butikker"
android:icon="@drawable/ic_map_black_24dp"
app:showAsAction="ifRoom|withText"/>
<item android:id="@+id/fragment_menu_profile"
android:title="Profil"
android:icon="@drawable/ic_person_outline_black_24dp"
app:showAsAction="ifRoom|withText"
/>
</menu>

我尝试创建自己的操作布局的代码(如果相关):

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/relativeLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">

<ImageView
android:id="@+id/imageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="24dp"
android:layout_marginEnd="28dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/ic_format_list_bulleted_black_24dp" />

<TextView
android:id="@+id/textView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:text="Handlelister"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/imageView" />
</androidx.constraintlayout.widget.ConstraintLayout>

最佳答案

我终于找到了一种方法:

而不是使用

android:actionLayout="@layout/menu_item_lists"

我用过:

app:actionLayout="@layout/menu_item_lists"

然后我必须在菜单项上添加 onClickListener:

override fun onCreateOptionsMenu(menu: Menu?): Boolean {
val inflater = menuInflater
inflater.inflate(R.menu.menu_bottom_navigation, menu)

val navController = findNavController(R.id.activity_main_nav_host_fragment)

menu?.findItem(R.id.fragment_menu_lists)?.actionView?.setOnClickListener {
navController.navigate(R.id.fragment_menu_lists)
}

menu?.findItem(R.id.fragment_menu_stores)?.actionView?.setOnClickListener {
navController.navigate(R.id.fragment_menu_stores)
}

menu?.findItem(R.id.fragment_menu_profile)?.actionView?.setOnClickListener {
navController.navigate(R.id.fragment_menu_profile)
}

return super.onCreateOptionsMenu(menu)
}

关于android - 菜单项文本未显示在 BottomAppBar 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55141719/

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