android的图像视图案例
程序员文章站
2022-04-01 18:51:04
运行效果图在xml中的代码
运行效果图
在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
上一篇: JAVA实现目录拷贝(注意递归的思想)
推荐阅读
-
Android编程开发之EditText实现输入QQ表情图像的方法
-
Android编程开发实现TextView显示表情图像和文字的方法
-
通过案例分析Android WindowManager解析与骗取QQ密码的过程
-
Android Listview中显示不同的视图布局详解及实例代码
-
Android编程实现扭曲图像的绘制功能示例
-
Android编程开发之EditText实现输入QQ表情图像的方法
-
Android编程开发实现TextView显示表情图像和文字的方法
-
Android开发中获取View视图宽与高的常用方法小结
-
Android编程实现扭曲图像的绘制功能示例
-
Android实现下拉刷新的视图和图标的旋转