我在android中设计按钮时遇到问题。如何制作与下图相同的按钮
答案 0 :(得分:1)
在drawable文件夹中创建一个名为yourfilename.xml的文件,并将代码放在其中。
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<corners
android:bottomLeftRadius="7dp"
android:bottomRightRadius="7dp"
android:topLeftRadius="7dp"
android:topRightRadius="7dp">
</corners>
<stroke android:color="#FFFFFF"
android:width="1dp"></stroke>
</shape>
在你的main.xml文件中放置代码。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#FBBECB">
<Button
android:layout_width="55dp"
android:layout_height="wrap_content"
android:text="Button"
android:background="@drawable/yourfilename"
android:id="@+id/button"
android:layout_gravity="center"
android:layout_marginTop="73dp"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
android:layout_marginLeft="54dp" />
</RelativeLayout>
就是这样。
答案 1 :(得分:1)
你必须在你的drawable文件夹中制作自定义文件..
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<corners
android:bottomLeftRadius="8dp"
android:bottomRightRadius="8dp"
android:topLeftRadius="8dp"
android:topRightRadius="8dp">
<stroke android:color="#FFFFFF"
android:width="1dp"></stroke>
</shape>
然后在xml文件文件中使用它来获取按钮
像:
android:background="@drawable/customfile" // get from drawable folder