gpt4 book ai didi

android - 如何给按钮添加边框和背景图片

转载 作者:太空狗 更新时间:2023-10-29 16:43:22 24 4
gpt4 key购买 nike

我正在尝试为按钮添加背景纹理和边框。但是我无法在我的按钮上看到这两个东西。

有了这个我就有了我的背景图片

<item>
<bitmap android:src="@drawable/button_background" android:tileMode="repeat" />
</item>

有了这个我就有了边界

<corners android:radius="5dp" />
<stroke android:width="3px" android:color="#FFFFFF" />

我尝试同时使用 <shape> 来组合它们和 <layer-list>但我可以获得边框或背景纹理。

最佳答案

9patches 通常非常适合这种情况(确保使用 SDK 工具目录中的 draw9patch 工具),但如果您不想创建自己的图形(请记住,您需要制作每个分辨率有几个版本)并且想使用 XML,你可以这样做:

Red button

<?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="#ef4444" />
<stroke
android:width="1dp"
android:color="#992f2f" />
<corners
android:radius="3dp" />
<padding
android:left="10dp"
android:top="10dp"
android:right="10dp"
android:bottom="10dp" />
</shape>
</item>
<item>
<shape>
<gradient
android:startColor="#ef4444"
android:endColor="#992f2f"
android:angle="270" />
<stroke
android:width="1dp"
android:color="#992f2f" />
<corners
android:radius="3dp" />
<padding
android:left="10dp"
android:top="10dp"
android:right="10dp"
android:bottom="10dp" />
</shape>
</item>
</selector>

来源:http://www.dibbus.com/2011/02/gradient-buttons-for-android/

关于android - 如何给按钮添加边框和背景图片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14142281/

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