文本和图像如何在按钮中进行

时间:2012-07-03 09:10:30

标签: android image button text

我试图让布局看起来像

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

2 个答案:

答案 0 :(得分:2)

创建自定义按钮:

第1步:在res / drawable / button_background.xml中创建一个Button drawable shape xml:

<?xml version=”1.0″ encoding=”UTF-8″?>
<shape xmlns:android=”http://schemas.android.com/apk/res/android”>
<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"/>

答案 1 :(得分:0)

您可以在按钮android:drawableLeft="@drawable/your_icon"

中执行此操作