码迷,mamicode.com
首页 > 其他好文 > 详细

RealativeLayout

时间:2020-05-10 17:03:12      阅读:54      评论:0      收藏:0      [点我收藏+]

标签:nbsp   none   gif   color   encoding   close   message   mamicode   androi   

技术图片

 

技术图片 技术图片

 

 

技术图片
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <EditText
        android:id="@+id/et_relative_msg"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentRight="true"
        android:hint="Message">
    </EditText>
    
    <Button android:id="@+id/btn_relative_ok"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="OK"
        android:layout_below="@id/et_relative_msg"
        android:layout_alignRight="@id/et_relative_msg"
        android:layout_marginLeft="10dp"/>
    
     <Button android:id="@+id/btn_relative_cancel"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Cancel"
        android:layout_alignTop="@id/btn_relative_ok"
        android:layout_toLeftOf="@id/btn_relative_ok"/>

     <Button
         android:id="@+id/button1"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
         android:layout_centerInParent="true"
         android:text="相对父亲居中" />

</RelativeLayout>
View Code

 

RealativeLayout

标签:nbsp   none   gif   color   encoding   close   message   mamicode   androi   

原文地址:https://www.cnblogs.com/superxuezhazha/p/12863955.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!