gpt4 book ai didi

java - 当我在图标中按一次时,导航底部 bat 不起作用,只有当我按两次时才起作用?

转载 作者:行者123 更新时间:2023-12-02 02:58:42 24 4
gpt4 key购买 nike

我对底部导航栏中的每个图标使用 fragment ,如果我在图标上按两次(哪个并不重要)它会显示 fragment ,如果我在另一个图标中按两 (2) 次下一个 fragment 它来了等等...但是如果我只在图标中按一次, fragment 就不会出现。顺便说一句,我正在使用 Android Studio。

我该如何解决问题?我想通过单击图标来显示 fragment 。

在 res 的菜单文件夹中,我创建了一个包含 5 个项目的 XML 文件,如下所示:

enter code here
<?xml version="1.0" encoding="utf-8"?>
<menu
xmlns:android="http://schemas.android.com/apk/res/
android"xmlns:app="http://schmas.android.com/apk/res-auto">

<item
android:id="@+id/home"
android:title="Home"
android:icon="@drawable/home"
/>
<item
android:id="@+id/search"
android:title="Home"
android:icon="@drawable/search"
/>
<item
android:id="@+id/add"
android:title="Home"
android:icon="@drawable/add"
/>
<item
android:id="@+id/pref"
android:title="Home"
android:icon="@drawable/pref"
/>
<item
android:id="@+id/profile"
android:title="Home"
android:icon="@drawable/profile"
/>
</menu>

连接到Java类的XML Activity 文件是这样的:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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:layout_width="match_parent"
android:layout_height="match_parent"
android:contextClickable="false"
tools:context=".MainActivity">

<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/navigacion"
android:id="@+id/frame"/>

<android.support.design.widget.BottomNavigationView
android:id="@+id/navigacion"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:background="@color/colorPrimary"
app:labelVisibilityMode="unlabeled"
app:itemIconTint="@color/color_nav_bar"
app:itemTextColor="@color/text"
app:menu="@menu/bottom_navigation"
app:itemIconSize="30dp"
/>

</RelativeLayout>

最佳答案

下面是我的工作代码

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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:layout_width="match_parent"
android:layout_height="match_parent"
android:contextClickable="false"
tools:context=".MainActivity">

<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/navigacion"
android:id="@+id/frame"/>

<com.google.android.material.bottomnavigation.BottomNavigationView
android:id="@+id/navigacion"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
app:menu="@menu/bottom"
app:itemIconSize="30dp"
/>

</RelativeLayout>

添加以下 Material 依赖

implementation 'com.google.android.material:material:1.0.0'

关于java - 当我在图标中按一次时,导航底部 bat 不起作用,只有当我按两次时才起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57063114/

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