如何设置ImageView宽度使用百分比支持库和维护长宽比



使用Android百分比支持库,我如何将ImageView的宽度设置为包含PercentRelativeLayout的百分比,同时缩放高度以保持原始宽高比?

我得到了这个工作与版本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>

最新更新