gpt4 book ai didi

java - 将背景图像添加到背景 xml 布局

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:11:40 25 4
gpt4 key购买 nike

我在 drawable 中使用 xml 文件来使我的应用程序中的按钮“漂亮”。

enter image description here

^ 就像那样。

它工作正常,但我想在按钮上添加一个勾号或叉号(以标记完成或未完成)- 我不太确定是否可行。

这是我的按钮 xml:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true" >
<shape>
<solid
android:color="#449def" />
<stroke
android:width="1dp"
android:color="#2f6699" />
<corners
android:radius="3dp" />
<padding
android:left="5dp"
android:top="5dp"
android:right="5dp"
android:bottom="5dp" />
</shape>
</item>
<item>
<shape>
<gradient
android:startColor="#449def"
android:endColor="#2f6699"
android:angle="270" />
<stroke
android:width="1dp"
android:color="#2f6699" />
<corners
android:radius="4dp" />
<padding
android:left="5dp"
android:top="5dp"
android:right="5dp"
android:bottom="5dp" />
</shape>
</item>
</selector>

我正在设置按钮上的背景元素以使用上面的 @drawable/bluebuttons

任何帮助将不胜感激

最佳答案

如果您正在使用按钮,那么您可以在 XML 文件中使用按钮的属性。

android:drawableRight="@drawable/ANY_DRAWABLE_IMAGE"

在我的例子中是这样的:

<Button android:id="@+id/button1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
...
...
android:drawableRight="@drawable/ic_tick" />

或者在你的代码中,你可以这样写:

// PUT ZERO FOR NO DRAWABLE
textView1.setCompoundDrawablesWithIntrinsicBounds(LEFT_DRAWABLE, TOP_DRAWABLE,RIGHT_DRAWABLE, BOTTOM_DRAWABLE);

希望对您有所帮助。

关于java - 将背景图像添加到背景 xml 布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14396261/

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