安卓第一行代码之百分比布局PercentFrameLayout/PercentRelativeLayout

时间:2022-03-23 05:32:26

在compile中引入:


compile 'com.android.support.percent:24.2.1'


使用百分比布局:

<android.support.percent.PercentFrameLayout

xmlns:app="http://schemas.android.com/apk/res-apk"

>

    <Button

    ···

    app:layout_widthPercent="50%"

    app:layout_heightPercent="50%"


    />



</android.support.percent.PercentFrameLayout>