Imageview
Created At :
Views 👀 :
ImageView控件使用
imageview是继承于view类的控件,主要用于显示图像
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
| <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="horizontal"> <ImageView android:layout_width="match_parent" android:layout_height="match_parent" android:background="@drawable/bg"/> <ImageView android:layout_width="match_parent" android:layout_height="match_parent" android:src="@android:drawable/sym_def_app_icon"/>
</LinearLayout>
|
在这段代码中声明了两个imageview标签,第一个利用background属性为imageview指定了一张背景图片,该图片存放于res/drawable文件夹中,通过@drawable来找到此文件夹,再以“/”来引用图片的名称,即“bg”,第二个利用src属性指定了imageview的前景图片
二者的差别在于第一个是背景,图片大小会随着imageview控件大小的改变而伸缩,后者则始终以原图的大小显示
转载请注明来源,欢迎对文章中的引用来源进行考证,欢迎指出任何有错误或不够清晰的表达。可以在下面评论区评论,也可以邮件至 3049155267@qq.com