我在android中设计按钮时遇到问题。我怎样才能制作像下图一样的按钮
问问题
312 次
2 回答
1
在您的可绘制文件夹中创建一个名为 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>
就是这样。
于 2013-09-10T07:21:23.353 回答
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
于 2013-09-10T07:26:36.183 回答