使用 Android 百分比支持库,如何将 ImageView 的宽度设置为其包含 PercentRelativeLayout 的百分比,同时以保持原始纵横比的方式缩放高度?
问问题
1038 次
1 回答
3
我让它与版本 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>
于 2015-09-14T21:29:41.103 回答