欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

android的图像视图案例

程序员文章站 2022-07-05 17:45:47
运行效果图在xml中的代码

运行效果图

android的图像视图案例

在xml中的代码

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
   android:orientation="horizontal"
    tools:context=".MainActivity">

    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="3dp"
        android:src="@drawable/xx" />

    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="3dp"
        android:adjustViewBounds="true"
        android:maxWidth="90dp"
        android:maxHeight="90dp"
        android:src="@drawable/xx" />

    <ImageView
        android:layout_width="90dp"
        android:layout_height="90dp"
        android:scaleType="fitEnd"
        android:src="@drawable/xx" />

    <ImageView
        android:layout_width="90dp"
        android:layout_height="90dp"
        android:src="@drawable/xx"
        android:tint="#77FF0000"/>
</LinearLayout>

 

本文地址:https://blog.csdn.net/qq_44716544/article/details/108145595

相关标签: android