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>
网友评论