I need to put my own image on some imageView
. So that's why I created folder named "drawable" in res folder , and copy my Image in this folder , but now I don't know how to set this image to my imageView
in XML code. Can anybody help? and sorry for English :)
相关问题
- How can I create this custom Bottom Navigation on
- Bottom Navigation View gets Shrink Down
- How to make that the snackbar action button be sho
- Listening to outgoing sms not working android
- How to create Circular view on android wear?
相关文章
- android开发 怎么把图片放入drawable的文件夹下
- android上如何获取/storage/emulated/下的文件列表
- androidStudio有个箭头不认识
- SQLite不能创建表
- Windows - Android SDK manager not listing any plat
- Animate Recycler View grid when number of columns
- Why is the app closing suddenly without showing an
- Android OverlayItem.setMarker(): Change the marker
Try this.
This may help you.
In your layout XML file:
Replace
your_image_name
with the name of the image file without the extension (e.g. if your drawable file is calledimg1.png
, thesrc
attribute should have a value of@drawable/img1
).//set background as your image by calling the
android:background
attributes in your xmlNote: you no need to create any drawable folder by default android project will contain
you can put your image in that.
Set it using android:src=""