Android Studio基础ImageView使用

Posted 徐为波

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android Studio基础ImageView使用相关的知识,希望对你有一定的参考价值。

android Studio基础ImageView使用

知识点1:

<ImageView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    />

在ImageView中“match_parent”是占满宽度/高度,“wrap_content”是自适应宽度/高度。

 

知识点2:

图片属性:background(宽度或高可以被单独拉伸)、src(宽度或高必须同时缩放,以最小的值为准)的对比

<ImageView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@mipmap/ic_launcher"
    />
<ImageView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:src="@mipmap/ic_launcher"
    />

 

以上是关于Android Studio基础ImageView使用的主要内容,如果未能解决你的问题,请参考以下文章

Android Studio XML 无法勾勒出 imageview

我不能在android studio Gradle 4.7中使用ImageView

基于android studio开发 安卓控件的基础属性1

基于android studio开发 安卓控件的基础属性1

基于android studio开发 安卓控件的基础属性1

Android Studio开发基础之自定义View组件