使用Android百分比支持库,如何将ImageView的宽度设置为包含PercentRelativeLayout的百分比,同时缩放高度以保持原始宽高比?
答案 0 :(得分:3)
我得到了这个版本23.0.0支持lib:
<?xml version="1.0" encoding="utf-8"?>
<android.support.percent.PercentRelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:src="@drawable/logo"
app:layout_widthPercent="50%"
android:layout_height="wrap_content"
android:adjustViewBounds="true" />
</android.support.percent.PercentRelativeLayout>