0

我试图使布局看起来像

它看起来有点像按钮类型。文本和图像如何在按钮中实现?

4

2 回答 2

2

创建您的自定义按钮为:

第 1步:在 res/drawable/button_background.xml 中创建一个 Button 可绘制形状 xml:

<?xml version=”1.0″ encoding=”UTF-8″?>
<shape xmlns:android=”http://schemas.android.com/apk/res/android”&gt;
<solid android:color=”#F000″/>
<stroke android:width=”1px” android:color=”#BB000000″ />
<padding
android:left=”10dp”
android:top=”7dp”
android:right=”10dp”
android:bottom=”7dp”
/>
<corners
android:bottomRightRadius=”5dp”
android:bottomLeftRadius=”5dp”
android:topLeftRadius=”5dp”
android:topRightRadius=”5dp”
/>
<gradient
android:angle=”90″
android:startColor=”#777″
android:centerColor=”#777″
android:endColor=”#BBB”
android:type=”linear”
/>

</shape>

第 2 步:将主 Button xml 布局添加为:

<Button android:id="@+id/btn"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Facebook"
        android:drawableLeft="@drawable/leftimg"
        android:drawableRight="@drawable/rightimg"
        android:padding="15dip"
       android:background="@drawable/button_background"/>
于 2012-07-03T09:24:57.733 回答
0

您可以在按钮中执行此操作android:drawableLeft="@drawable/your_icon"

于 2012-07-03T09:14:02.623 回答