首页 > 移动平台 > 详细

Android---->RelativeLayout相对对齐方式布局

时间:2016-07-31 00:00:45      阅读:276      评论:0      收藏:0      [点我收藏+]

技术分享

技术分享

技术分享

 

技术分享

技术分享

技术分享

技术分享

技术分享

 

 

技术分享

技术分享

技术分享

技术分享

 

 

技术分享

技术分享

技术分享

技术分享

 

main.xml应用布局分析

 

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:background="#0000FF"
    android:padding="10px"
    >
    <TextView  
        android:id="@+id/tv01"
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content" 
        android:layout_marginBottom="30dp"
        android:text="Type here:"
        />
    <EditText
        android:id="@+id/txt01"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@id/tv01"
        />
    <Button
        android:id="@+id/btn01"
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        android:layout_below="@id/txt01"
        android:layout_alignParentRight="true"
        android:text="OK"
        />
    <Button
        android:id="@+id/btn02"
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        android:layout_below="@id/txt01"
        android:layout_toLeftOf="@id/btn01"
        android:layout_marginRight="30dp"
        android:text="Cancel"
        />
</RelativeLayout>

 

注意的是:相对布局不能产生循环布局

Android---->RelativeLayout相对对齐方式布局

原文:http://www.cnblogs.com/yihujiu/p/5722088.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!