国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統(tǒng) > Android > 正文

Android的ImageButton當(dāng)顯示Drawable圖片時就不顯示文字

2020-04-11 12:17:13
字體:
供稿:網(wǎng)友
很多人對 Android提供的ImageButton有個疑問,當(dāng)顯示Drawable圖片時就不會再顯示文字了,其實(shí)解決的方法有三種:

第一種:就是圖片中就寫入文字,但是這樣解決會增加程序體積,同時硬編碼方式會影響多國語言的發(fā)布。
第二種:解決方法很簡單,通過分析可以看到ImageButton的 layout,我們可以直接直接繼承,添加一個TextView,對齊方式為右側(cè)即可實(shí)現(xiàn)ImageButton支持文字右側(cè)顯示。
第三種:更簡潔效率的方法:使用Button ,然后設(shè)定Button 的 android:drawableLeft 等屬性即可。示例:
復(fù)制代碼 代碼如下:

<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawableLeft="@drawable/icon"
android:text="按鈕"
/>

第四種:用布局多封一層
復(fù)制代碼 代碼如下:

<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:id="@+id/bt">
<ImageView
android:id="@+id/ib"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ringlove"
android:background="#00000000"
/>
<TextView
android:id="@+id/tv"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/cs"
android:paddingLeft="20px"
/>
</LinearLayout>
發(fā)表評論 共有條評論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 修文县| 泽普县| 青浦区| 含山县| 齐齐哈尔市| 北票市| 缙云县| 农安县| 临颍县| 西吉县| 从化市| 贵南县| 秭归县| 大关县| 鞍山市| 沂源县| 白玉县| 砀山县| 公主岭市| 兴文县| 隆尧县| 上饶县| 周口市| 彰武县| 曲阳县| 沙田区| 浦东新区| 中卫市| 富锦市| 宁武县| 比如县| 南昌市| 旅游| 大埔县| 德钦县| 高碑店市| 崇文区| 阿鲁科尔沁旗| 韶山市| 开原市| 玉屏|