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

发布于 2024-10-11 20:54:49 字数 1035 浏览 3 评论 0原文

这是我的 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>

在 Framelayout 中,我有一个 View v,其中包含按钮 pressThisButton。

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

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


        {


            v.setBackgroundColor(0xffff0000);

Is there a way in a FrameLayout to change the view background and the整个屏幕的颜色?

谢谢您的宝贵时间。

This is my 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>

In the Framelayout, I have a View v which contains the button pressThisButton.

When the button is pressed I am able to change the color of the padding background surrounding the button in the view--but not the background of the entire screen--using

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


        {


            v.setBackgroundColor(0xffff0000);

Is there a way in a FrameLayout to change both the view background and the entire screen color?

Thank you for your time.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

青衫负雪 2024-10-18 20:54:49

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

You could get the FrameLayout using findViewById and set the background color on it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文