带图片和文字的按钮

With text and an icon, using the Button class with the android:drawableLeft attribute:

<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/button_text"
    android:drawableLeft="@drawable/button_icon"
    ... />

这样写图片在左边,文字在右边,如果想要图片在上,文字在下的布局,就用drawableTop

你可能感兴趣的:(带图片和文字的按钮)