本文介绍了如何设置背景和保存图像的ImageView?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个的ImageView
,我想设置在图像显示背景图片
I have one ImageView
and I want to set as background image in image View
我怎么能这样做?
推荐答案
首先把你的形象RES /绘制文件夹需要的清晰度(绘制,华电国际,绘制,LDPI,绘制,MDPI)的文件夹。
First put your image in res/drawable folder with desired resolution( drawable-hdpi, drawable-ldpi, drawable-mdpi) folder.
然后尝试这样的:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:background="@drawable/bg"/>
</RelativeLayout>
这篇关于如何设置背景和保存图像的ImageView?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!