Comme vous ne pouvez pas utiliser android:text
je vous recommande d'utiliser un bouton normal et utiliser un composé un drawable. Par exemple:
<Button
android:id="@+id/buttonok"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:drawableLeft="@drawable/buttonok"
android:text="OK"/>
Vous pouvez mettre le drawable où vous le souhaitez en utilisant: drawableTop
, drawableBottom
, drawableLeft
ou drawableRight
.
Mise à JOUR
Pour le Bouton de cela aussi fonctionne très bien. Mettre "android:background" est très bien !
<Button
android:id="@+id/fragment_left_menu_login"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/button_bg"
android:text="@string/login_string" />
Je viens d'avoir ce Problème et fonctionne parfaitement