我有一個ImageButton,它看起來像這樣。在ImageButton中設置文本
<ImageButton
android:id="@+id/ImageButton"
android:layout_width="200dp"
android:layout_height="200dp"
android:layout_gravity="center"
android:layout_marginBottom="6px"
android:layout_marginRight="3px"
android:layout_toRightOf="@+id/Logo"
android:background="@drawable/button_bg_purple"
android:scaleType="fitStart"
android:src="@drawable/ImageButton" />
ImageButton ImgButton= (ImageButton) this.findViewById(R.id.ImageButton);
現在我需要以編程方式在ImageButton中添加動態文本,並且我無法使用按鈕。 我該怎麼辦?
在此先感謝...
爲什麼你不能使用按鈕? ImageButtons沒有文本屬性。他們擴展ImageView。如果你不想使用Button,那麼使用TextView。或者...你必須在ImageButton的程序內畫出你的文字...這樣的矯枉過正! –
ImageButton不能有文字! –