gpt4 book ai didi

android - getRootView() 不工作

转载 作者:搜寻专家 更新时间:2023-11-01 08:06:04 24 4
gpt4 key购买 nike

这是我的 xml 文件:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/background"
android:orientation="vertical"
android:padding="15dip" >

<ListView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</ListView>

现在在我的代码中我想改变窗口的背景颜色,我是这样做的:

ListView listview = (ListView) findViewById(android.R.id.list);
View root = listview.getRootView();
root.setBackgroundColor(Color.parseColor("#bdbdbd"));

如果我理解正确,这应该会更改 ListView 父级(在本例中为 LinearLayout)的背景颜色。但是这不起作用,我做错了什么?

最佳答案

我想你很困惑,getRootView() 不会让你得到那个 LinearLayout,而是那个 View 的父级。参见 this other question .您应该改用 listview.getParent();注意需要强制转换。

关于android - getRootView() 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14260411/

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