gpt4 book ai didi

android - 抽屉布局 setBackgroundColor 不起作用

转载 作者:行者123 更新时间:2023-11-29 23:49:04 24 4
gpt4 key购买 nike

我需要在运行时设置 DrawerLayout 的背景颜色。这是我正在做的:

DrawerLayout drawerLayout = findViewById(R.id.drawer_layout);
drawerLayout.setBackgroundColor(Color.parseColor("#ffffff"));

我真的不会将其设置为硬编码值,这只是为了说明。这似乎没有效果 - 背景保持深灰色,我认为这是从某个地方的风格中挑选出来的。我可以在 DrawerLayout 中设置 ExpandableListView 的背景颜色,但我无法用它来填充垂直空间,所以一些背景是正确的颜色而空白区域是错误的颜色。

可以在 XML 中设置 ExpandableListView 的背景颜色,但我需要能够在运行时更改它。如果我不在 XML 中设置 ListView 颜色,ListView 将不会像我希望的那样填充垂直空间。它只是在显示所有项目后中断。我试过在 Java 中设置抽屉布局和列表背景,最接近效果的是列表项下方的空白区域改变了颜色。我无法更改实际列表的背景。有什么建议吗?

布局 XML:

<android.support.v4.widget.DrawerLayout 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/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".activities.MainActivity">

<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/primary"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:theme="@style/ToolBarStyle" />

<FrameLayout
android:id="@+id/frame_container"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
</FrameLayout>

<!-- The navigation drawer -->
<ExpandableListView
android:id="@+id/left_drawer"
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:background="@color/drawer_background"
android:choiceMode="singleChoice"
android:divider="@android:color/transparent"
android:dividerHeight="0dp"
android:groupIndicator="@null" />
</android.support.v4.widget.DrawerLayout>

屏幕截图:

enter image description here

最佳答案

我认为您需要为 NavigationView 而不是 DrawerLayout 设置背景。

<android.support.design.widget.NavigationView
android:id="@+id/navigationView"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:background="@android:color/white" //set background here
app:itemBackground="@android:color/transparent"
app:menu="@menu/menu_navigation"/>

如果您在 DrawerLayout 中使用 ExpandableListView。我认为您应该将 ExpandableListView 放在 RelativeLayout 中。像这样:

<android.support.v4.widget.DrawerLayout 
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/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".activities.MainActivity">

<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/primary"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:theme="@style/ToolBarStyle" />

<FrameLayout
android:id="@+id/frame_container"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>

</FrameLayout>

<!-- The navigation drawer -->
<RelativeLayout
android:id="@+id/drawer_container"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:background="@drawable/background"> //set background here

<ExpandableListView
android:id="@+id/left_drawer"
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:background="@color/drawer_background"
android:choiceMode="singleChoice"
android:divider="@android:color/transparent"
android:dividerHeight="0dp"
android:groupIndicator="@null" />

</RelativeLayout>

</android.support.v4.widget.DrawerLayout>

关于android - 抽屉布局 setBackgroundColor 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51105870/

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