Android 百分比布局

来源:互联网 发布:人员去向软件 编辑:程序博客网 时间:2024/06/05 06:12
引入库 compile 'com.zhy:percent-support-extends:1.0.1'
layout.activity_main :

<?xml version="1.0" encoding="utf-8"?><com.zhy.android.percent.support.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"    android:orientation="vertical">    <com.zhy.android.percent.support.PercentFrameLayout        android:layout_width="0dp"        android:layout_height="0dp"        android:layout_gravity="center"        android:background="#ff44aacc"        app:layout_heightPercent="50%w"        app:layout_widthPercent="50%w">        <com.zhy.android.percent.support.PercentFrameLayout            android:layout_width="0dp"            android:layout_height="0dp"            android:layout_gravity="center"            android:background="#ffcc5ec7"            app:layout_heightPercent="50%w"            app:layout_widthPercent="50%w">            <TextView                android:layout_width="match_parent"                android:layout_height="match_parent"                android:layout_gravity="center"                android:background="#ff7ecc16"                android:gravity="center"                android:text="margin 15% of w"                app:layout_marginPercent="15%w"                />        </com.zhy.android.percent.support.PercentFrameLayout>    </com.zhy.android.percent.support.PercentFrameLayout>    <TextView android:layout_width="0dp"        android:layout_height="0dp"        android:layout_gravity="bottom|right"        android:background="#44ff0000"        android:gravity="center"        android:text="15%w,15%w"        app:layout_textSizePercent="3%"        app:layout_heightPercent="15%w"        app:layout_marginPercent="5%w"        app:layout_widthPercent="15%w"        />
</com.zhy.android.percent.support.PercentFrameLayout>
http://www.jcodecraeer.com/a/anzhuokaifa/androidkaifa/2015/0707/3150.html

0 0
原创粉丝点击