ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

ImageView图像视图

2021-07-10 14:58:03  阅读:168  来源: 互联网

标签:src 填入 拉伸 视图 background 图像 ImageView 图片


  在API文档中,我们发现ImageView有两个可以设置图片的属性,分别是srcbackground。它们之间的区别如下:

  • background通常指的都是背景,而src指的是内容。
  • 当使用src填入图片时,是按照图片大小直接填充,并不会进行拉伸;而使用background填入图片,则会根据ImageView给定的宽度来进行拉伸。

  XML文件如下:

<?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:id="@+id/imageView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="5dp"
        android:src="@mipmap/apple" />
    <!-- 限制最大宽度和高度 -->
    <ImageView
        android:id="@+id/imageView2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="5dp"
        android:adjustViewBounds="true"
        android:maxHeight="90dp"
        android:maxWidth="90dp"
        android:src="@mipmap/apple" />
    <!-- 缩放图片后将其放在右下角 -->
    <ImageView
        android:id="@+id/imageView3"
        android:layout_width="90dp"
        android:layout_height="90dp"
        android:layout_margin="5dp"
        android:scaleType="fitEnd"
        android:src="@mipmap/apple" />
    <!-- 为图片进行着色 -->
    <ImageView
        android:id="@+id/imageView4"
        android:layout_width="90dp"
        android:layout_height="90dp"
        android:src="@mipmap/apple"
        android:tint="#77ff0000" />
</LinearLayout>

在这里插入图片描述
  对于ImageView的旋转,可以通过在xml中设置ImageView的属性来实现:

android:rotation="90"

标签:src,填入,拉伸,视图,background,图像,ImageView,图片
来源: https://blog.csdn.net/fukangwei_lite/article/details/118635085

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有