RelativeLayout漏的知识点

作者: 你的益达233 | 来源:发表于2018-07-24 22:22 被阅读32次

    RelativeLayout

    知识点

    ignoreGravity:设置该属性的控件,将不受gravity影响
    margin:可以设置负数

    测试代码

    <?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.cong.androidlearn.RLActivity"
    android:gravity="center"
    android:ignoreGravity="@+id/tv_04">
    
    <TextView
    android:id="@+id/tv_04"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="2333"
    />
    
    <TextView
    android:id="@+id/tv_05"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="6666"
    android:layout_marginTop="-30dp"
    />
    
    </RelativeLayout>
    

    相关文章

      网友评论

        本文标题:RelativeLayout漏的知识点

        本文链接:https://www.haomeiwen.com/subject/udqumftx.html