• RelativeLayout


    RelativeLayout的一个简单的列子:

    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        >
       <TextView 
            android:id="@+id/txt01"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="111111"
            android:background="#FF0000"
           />
       <TextView 
            android:id="@+id/txt02"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="222222"
            android:background="#00FF00"
            android:layout_below="@id/txt01"
            android:layout_toRightOf="@id/txt01"
           />
    </RelativeLayout>
    View Code

     一些属性的使用:

    android:layout_alignParentRight="true" //控件与容器向右对齐
    android:padding="10px" //定义控件和容器的间隙的大小
    android:layout_marginRight="30dp" //可以设置两个button之间的间距
    

      

  • 相关阅读:
    Commander Nodejs 命令行接口
    数据库集群 ---续集
    数据库集群
    实时查看linux下的日志
    自动化测试
    python中list和dict
    super与this的用法
    数据类型
    父类调用子类方法
    子类调用父类方法
  • 原文地址:https://www.cnblogs.com/zhang1107/p/3125484.html
Copyright © 2020-2023  润新知