实现 android:src="@drawable/image"在 Android 中以编程方式
我正在尝试在图像按钮上设置前景图像。经过一番研究,我发现了这个代码示例:
<ImageButton android:text="Button" android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/icon"/>
我的查询是如何在代码中实际实现 android:src 。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
试试这个:
其中
newimage
是 drawable 文件夹中的图像名称。已编辑
试试这个:
其中bm是从服务器提取的位图。
再次编辑
我看到你收到了一个 Drawable;好吧,这样做:
Try this:
where
newimage
is the image name in drawable folder.EDITED
try this:
where bm is bitmap extracted from server.
EDITED AGAIN
I see you receive a Drawable; well, do this:
以下是我以编程方式**或通过代码在
ImageButton
上设置image:src
的方法:1 .检索可绘制的图像。
2.获取视图。
3.设置视图的图像。
希望这也适合你!
Here's what worked for me in setting the
image:src
on anImageButton
programmatically** or through code:1.Retrieve the image drawable.
2.Get the view.
3.Set the image for the view.
Hope this works for you too!
希望这会帮助你
Hope ths will help you
试试这个::
try this::
又一个简短的变体
One more short variant
我知道这是一个老问题,但对于未来的搜索......
我相信您正在寻找的是:
I know this is an old question, but for future searches...
I believe what you are looking for is: