Skip to content

fenghebaiyang/AspectRatioImageView

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AspectRatioImageView

根据比例自动计算宽高的ImageView

工作中经常遇到加载图片变形的问题,所以写了这样的一个imageview,使用场景是宽高中的一边为match_parent或固定值,而另一边为wrap_content的时候,可以根据输入的宽高比自动计算wrap_content所对应的实际长度。当两边都为wrap_content时,没有固定值做依据,自动计算的功能实效。

使用方法

<com.fenghebaiyang.aspectratioview.AspectRatioImageView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:scaleType="fitXY"
    android:src="@mipmap/rem"
    app:ratio="16:9" />

<com.fenghebaiyang.aspectratioview.AspectRatioImageView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:scaleType="fitXY"
    android:src="@mipmap/rem"
    app:ratio="1:1" />

<com.fenghebaiyang.aspectratioview.AspectRatioImageView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:scaleType="fitXY"
    android:src="@mipmap/rem"
    app:ratio="9:16" />

<com.fenghebaiyang.aspectratioview.AspectRatioImageView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:scaleType="fitXY"
    android:src="@mipmap/rem"
    app:ratio="h,9:16" />

<com.fenghebaiyang.aspectratioview.AspectRatioImageView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:scaleType="fitXY"
    android:src="@mipmap/rem"
    app:ratio="w,9:16" />

效果图

About

根据比例自动计算宽高的ImageView

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages