我想有一个非常小的按钮,它只是一个黑色矩形框围绕文本。最简单的方法是什么?我应该在Photoshop中制作图像还是只使用样式?我可以使用样式吗?
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" android:padding="10dp">
<solid android:color="#00FFFFFF"/>
<stroke android:width="1dp" android:color="#000000" />
</shape>
创建这个可绘制的,并设置它作为你的按钮的背景…
可以使用
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#000000"
android:textColor="#ffffff"
android:text="Button" />