gpt4 book ai didi

安卓。如何动态更改整个 FrameLayout 的颜色而不仅仅是 View 背景的颜色?

转载 作者:行者123 更新时间:2023-11-29 22:29:31 25 4
gpt4 key购买 nike

这是我的 main.xml

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

<ImageButton android:background="@null" android:layout_gravity="center_vertical|center_horizontal|center"
android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/sample" android:id="@+id/pressThisButton" android:layout_y="40px" android:layout_x="20px"></ImageButton>
</FrameLayout>

在框架布局中,我有一个包含按钮 pressThisButton 的 View v。

按下按钮时,我可以更改 View 中按钮周围的填充背景的颜色——但不能更改整个屏幕的背景——使用

private OnClickListener buttonClickListener = new OnClickListener() 
{
public void onClick( View v )


{


v.setBackgroundColor(0xffff0000);

在 FrameLayout 中有没有办法同时更改 View 背景和整个屏幕颜色?

感谢您的宝贵时间。

最佳答案

您可以使用 findViewById 获取 FrameLayout 并在其上设置背景颜色。

关于安卓。如何动态更改整个 FrameLayout 的颜色而不仅仅是 View 背景的颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4673770/

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