如何调整顶部布局的背景属性

发布于 2024-12-02 21:38:30 字数 636 浏览 1 评论 0原文

我有一个 LinearLayout 作为我的 android xml 文件中的主要布局。背景设置为“@drawable/window_background_red”。在活动内部(在运行时)我想将其设置为“@drawable/window_background_green”。

window_background_green.xml:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item>
        <shape>
            <gradient
                android:type="linear"
                android:startColor="#000000"
                android:endColor="#004400"
                android:angle="-90"
                />
        </shape>
    </item>
</selector>

I have a linearLayout as the main layout in my android xml file. The background is set to "@drawable/window_background_red". Inside the activity (at run time) I want to set this to "@drawable/window_background_green".

window_background_green.xml:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item>
        <shape>
            <gradient
                android:type="linear"
                android:startColor="#000000"
                android:endColor="#004400"
                android:angle="-90"
                />
        </shape>
    </item>
</selector>

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

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

发布评论

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

评论(1

肤浅与狂妄 2024-12-09 21:38:30

假设对于 LinearLayout android:id="@+id/linearLayout"
然后在代码中:

LinearLayout linearLayout = (LinearLayout)findViewById(R.id.linearLayout);

linearLayout.setBackgroundResource(R.drawable.window_background_green);

在那里,您将背景设置为@drawable/window_background_green

let's say that for linearLayout android:id="@+id/linearLayout"
then in code:

LinearLayout linearLayout = (LinearLayout)findViewById(R.id.linearLayout);

linearLayout.setBackgroundResource(R.drawable.window_background_green);

And there, you've set the background to be @drawable/window_background_green

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