当前位置: 代码迷 >> Android >> Android屏幕适配,百分比格局
  详细解决方案

Android屏幕适配,百分比格局

热度:88   发布时间:2016-04-27 23:40:17.0
Android屏幕适配,百分比布局

(Android studio)新建一个新的android项目,在build.gradle中的dependencies里添加compile 'com.android.support:percent:22.2.0'
如图:
这里写图片描述

导入了percent包之后就可以在xml文件里使用百分比布局了,如下:
view.xml:

<?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">    <View        android:id="@+id/top_left"        android:layout_width="0dp"        android:layout_height="0dp"        android:layout_alignParentTop="true"        android:background="#ff44aacc"        app:layout_heightPercent="20%"        app:layout_widthPercent="70%" />    <View        android:id="@+id/top_right"        android:layout_width="0dp"        android:layout_height="0dp"        android:layout_alignParentTop="true"        android:layout_toRightOf="@+id/top_left"        android:background="#ffe40000"        app:layout_heightPercent="20%"        app:layout_widthPercent="30%" />    <View        android:id="@+id/bottom"        android:layout_width="match_parent"        android:layout_height="0dp"        android:layout_below="@+id/top_left"        android:background="#ff00ff22"        app:layout_heightPercent="80%" /></android.support.percent.PercentRelativeLayout>

效果图:
这里写图片描述

版权声明:本文为博主原创文章,未经博主允许不得转载。

  相关解决方案