zoukankan      html  css  js  c++  java
  • Android---->RelativeLayout相对对齐方式布局

    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>

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

  • 相关阅读:
    java(5)流程控制n阶乘各位和
    java(4)运算符
    java(3)
    java(2)
    java(1)
    语音识别,图片识别(1)
    java实现——005从尾到头打印链表
    java实现——004替换空格
    java实现——003二维数组中的查找
    java实现——035第一个只出现一次的字符
  • 原文地址:https://www.cnblogs.com/yihujiu/p/5722088.html
Copyright © 2011-2022 走看看