gpt4 book ai didi

android - 线性布局背景色

转载 作者:太空宇宙 更新时间:2023-11-03 12:42:30 25 4
gpt4 key购买 nike

我正在尝试将整个屏幕的背景更改为白色。我通过将 android:background="#ffffff"属性添加到 linerlayout 来实现。但它不起作用,我不知道我错过了什么?

http://developer.android.com/reference/android/widget/LinearLayout.html

xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:padding="10dip"
android:layout_width="fill_parent" android:layout_height="wrap_content"
**android:background="#ffffff"** >

我也尝试过编程,像这样 setContentView(R.layout.main); LinearLayout linLay = (LinearLayout) findViewById(R.layout.main);
linLay.setBackgroundColor(Color.WHITE);

但是应用程序抛出错误

最佳答案

能否发布重现问题所需的完整代码?

这对我来说很好:

<LinearLayout 
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#FFFFFF">

关于android - 线性布局背景色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5446582/

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