1.添加compile 'com.android.support:percent:25.1.1'支持库依赖,版本要一致
2.写四个Button控件,平均分配主屏幕
app:layout_widthPercent="50%"
app:layout_heightPercent="50%"
3.最终效果
4.xml文件代码
<?xml version="1.0" encoding="utf-8"?>
<android.support.percent.PercentFrameLayout 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">
<Button
android:text="Button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="left|top"
app:layout_widthPercent="50%"
app:layout_heightPercent="50%"
android:id="@+id/button" />
<Button
app:layout_widthPercent="50%"
app:layout_heightPercent="50%"
android:text="Button"
android:layout_gravity="left|bottom"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/button2" />
<Button
app:layout_widthPercent="50%"
app:layout_heightPercent="50%"
android:text="Button"
android:layout_gravity="right|top"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/button3" />
<Button
app:layout_widthPercent="50%"
app:layout_heightPercent="50%"
android:text="Button"
android:layout_gravity="right|bottom"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/button4" />
</android.support.percent.PercentFrameLayout>