先添加如下依赖:
compile 'com.android.support:percent:27.1.0'
主要属性如下,注意这些属性没有代码提示功能,要自己输入,我的android studio是这样的,手动输出:
layout_widthPercent
layout_heightPercent
layout_marginPercent
layout_marginLeftPercent
layout_marginTopPercent
layout_marginRightPercent
layout_marginBottomPercent
layout_marginStartPercent
layout_marginEndPercent
layout_aspectRatio
示例代码:
<?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">
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#FF4081"
app:layout_heightPercent="100%"
app:layout_marginPercent="4%"
app:layout_widthPercent="10%"/>
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/textView"
android:background="#80FF4081"
app:layout_heightPercent="80%"
app:layout_marginPercent="4%"
app:layout_widthPercent="10%"/>
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/textView1"
android:background="#60FF4081"
app:layout_heightPercent="60%"
app:layout_marginPercent="4%"
app:layout_widthPercent="10%"/>
<TextView
android:id="@+id/textView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/textView2"
android:background="#40FF4081"
app:layout_heightPercent="40%"
app:layout_marginPercent="4%"
app:layout_widthPercent="10%"/>
<TextView
android:id="@+id/textView4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/textView3"
android:background="#20FF4081"
app:layout_heightPercent="20%"
app:layout_marginPercent="4%"
app:layout_widthPercent="10%"/>
</android.support.percent.PercentRelativeLayout>
效果图: