Android studio-ImageView
1:创建新项目方法:https://blog.csdn.net/cpcpcp123/article/details/105324839
2:ImageView:
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 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"
tools:context=".myimageview">
<ImageView
android:src="@drawable/img_big"设置图片路径
android:scaleType="fitCenter"设置图片缩放类型
android:layout_width="200dp"
android:layout_height="200dp"/>
<ImageView
android:src="@drawable/img_small"
android:scaleType="fitCenter"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:maxHeight="200dp"//一下三个是一体的,设置图片界限,保证图片完整性
android:maxWidth="20dp"
android:adjustViewBounds="true"
/>
依然有未解决的问题:
写了俩ImageView。只运行了一个ImageView