如何使用百分比支持库设置 ImageView 宽度并保持纵横比?
how to set ImageView width using Percent support lib and maintain aspect ratio?
-
android
-
android-layout
-
android-percentrelativelayout
-
android-percent-library
-
percent-support-library
使用 Android 百分比支持库,如何将 ImageView 的宽度设置为其包含的 PercentRelativeLayout 的百分比,同时以保持原始宽高比的方式缩放高度?
我得到它来使用版本 23.0.0 支持库:
<?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>
android
android-layout
android-percentrelativelayout
android-percent-library
percent-support-library
使用 Android 百分比支持库,如何将 ImageView 的宽度设置为其包含的 PercentRelativeLayout 的百分比,同时以保持原始宽高比的方式缩放高度?
我得到它来使用版本 23.0.0 支持库:
<?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>