如何在Android中的图像按钮下添加文字?
我想在图像按钮下添加文本,这些文本也是可单击的,并且将被重定向到与图像按钮相同的活动。基本上它就像任何 Android 手机中的应用程序列表,例如
I want to add text under a image button, which are also clickable, and will be redirected to the same activity as the image button. basically it's like the app list in any android phone, e.g.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果您在 XML 中声明了
ImageButton
,则只需将其放入还包含TextView
的LinearLayout
中并设置onClickListener< /code> 在
LinearLayout
上。结构就像然后在你的java中:
如果你通过java代码动态添加每个
ImageButton
,那么它仍然会保持相同的结构。如果我需要添加任何内容,请告诉我。If you have your
ImageButton
declared in XML, then just put it into aLinearLayout
which also contains aTextView
and set theonClickListener
on theLinearLayout
. The structure would be likeAnd then in your java:
If you're adding each
ImageButton
dynamically via java code, then it will still maintain the same structure. Let me know if I need to add anything.setAlpha 并执行以下操作
setAlpha and do the below
如果你想创建这个列表之王,请使用 gridview
并在 getview 方法中用 imageview 和 textview 膨胀 customlayout
if you want to create this king of list use gridview
and in getview method inflate customlayout with imageview and textview
您还可以将 onClickListener 设置为 TextView
java代码:
Also you can set onClickListener to TextView
java code: