【发布时间】:2014-03-13 12:18:33
【问题描述】:
我正在尝试在编辑框中添加带有一些文本的图像,但它没有显示图像。它只显示文本。
这是我的 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 ");
}
}
【问题讨论】:
-
你是说编辑文本,你使用按钮???在xml中这是什么。你想要编辑文本的圆角或其他东西
-
是的,很抱歉。我正在使用 Button,但现在已经解决了。
-
如果对您有帮助,请接受我的回答....