如何创建带有图像和文本的按钮?
How can i create a BUTTON with image and text?
我想创建一个按钮或图像按钮,它将包含图标和文本。图标将位于左侧,文本将位于按钮中央。
如果你进一步搜索,还有几个例子。例如:
Button with text AND an image (Android)
Android: combining text & image on a Button or ImageButton
<Button
android:id="@+id/button3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:drawableLeft="@android:drawable/btn_star_big_on"
android:text="Drawable\nleft"/>
这里是答案:)
我想创建一个按钮或图像按钮,它将包含图标和文本。图标将位于左侧,文本将位于按钮中央。
如果你进一步搜索,还有几个例子。例如:
Button with text AND an image (Android)
Android: combining text & image on a Button or ImageButton
<Button
android:id="@+id/button3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:drawableLeft="@android:drawable/btn_star_big_on"
android:text="Drawable\nleft"/>
这里是答案:)