テキストを含む編集ボックスに画像を追加しようとしていますが、画像が表示されません。テキストのみを表示しています。
これが私のxmlです。
<Button
android:id="@+id/favButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Add to "
android:drawableRight="@drawable/white_star"
android:layout_below="@id/priceText"
android:layout_alignParentLeft="true"
android:background="@drawable/rounded_corner_black"
android:padding="10dip"
style="@style/ButtonText"
android:onClick="onAddFavClick" />
これが私のJavaコードです。
private void updateFavButton() {
if (atmItem.isFav()) {
favButton.setText("Remove from ");
} else {
favButton.setText("Add to ");
}
}