我是靠谱客的博主 小巧海燕,最近开发中收集的这篇文章主要介绍android java button 不显示图片_Android的ImageButton不能显示文字,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

很多人对 Android提供的ImageButton有个疑问,当显示Drawable图片时就不会再显示文字了,其实解决的方法有三种:

第一种:就是图片中就写入文字,但是这样解决会增加程序体积,同时硬编码方式会影响多国语言的发布。

第二种:解决方法很简单,通过分析可以看到ImageButton的 layout,我们可以直接直接继承,添加一个TextView,对齐方式为右侧即可实现ImageButton支持文字右侧显示。

第三种:更简洁效率的方法:使用Button ,然后设定Button 的 android:drawableLeft 等属性即可。示例:

android:id="@+id/button1"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:drawableLeft="@drawable/icon"

android:text="按钮"

/>

第四种:用布局多封一层

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:orientation="vertical"

android:id="@+id/bt">

android:id="@+id/ib"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:src="@drawable/ringlove"

android:background="#00000000"

/>

android:id="@+id/tv"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="@string/cs"

android:paddingLeft="20px"

/>

最后

以上就是小巧海燕为你收集整理的android java button 不显示图片_Android的ImageButton不能显示文字的全部内容,希望文章能够帮你解决android java button 不显示图片_Android的ImageButton不能显示文字所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(40)

评论列表共有 0 条评论

立即
投稿
返回
顶部