gpt4 book ai didi

android - 使底部导航 View 背景透明

转载 作者:行者123 更新时间:2023-12-05 00:10:31 25 4
gpt4 key购买 nike

所以我在我的应用程序中添加了一个底部导航 View ,但是有一个问题。我希望我的底部导航 View 的背景是透明的(它目前是黑色的)即我希望它显示它覆盖的 Relative 布局(包含 btmnav )的背景部分。我在某处读到它这样做默认情况下,我需要做的就是给相对布局一个背景,它会起作用...但是当我这样做时,底部导航 View 的背景仍然是黑色。

菜单资源文件:

<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:id="@+id/live"
android:icon="@drawable/ic_live_tv_black_24dp"
android:title="Live"/>

<item
android:id="@+id/squad"
android:icon="@drawable/ic_team_squad_black_24dp"
android:title="Squad"/>

<item
android:id="@+id/schedule"
android:icon="@drawable/ic_schedule_black_24dp"
android:title="Schedule"/>
<item
android:id="@+id/feed"
android:icon="@drawable/ic_rss_feed_black_24dp"
android:title="Feed"/>

</menu>

布局文件中的代码

   <?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"
tools:context=".MainActivity"


>



<com.google.android.material.bottomnavigation.BottomNavigationView
android:id="@+id/btmnav"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
app:itemTextColor="#fff3CD70"
app:itemIconTint="#fff3CD70"


app:menu="@menu/bottom_navigation" />



</RelativeLayout>

Before adding the background

After adding the background

What i want

最佳答案

我正在使用这条线:

BottomNavigationView navView = findViewById(R.id.nav_view);
navView.setBackgroundColor(ContextCompat.getColor(getApplicationContext(), android.R.color.transparent));

这是我的 project

关于android - 使底部导航 View 背景透明,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61734893/

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