我尝试使用 textView 显示我的 relativeLayout 的底部 30dp 部分:
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<RelativeLayout
android:id="@+id/refresh_layout"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_marginTop= "-20dp"
android:padding="10dp">
<TextView
android:id = "@+id/refresh_textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Pull down..."
android:layout_centerInParent="true"
android:textColor="@color/sys_gray"/>
</RelativeLayout>
<!--(...there are many elements here)-->
</RelativeLayout>
但是当我这样写时,RelativeLayout 和 textView 都不会显示。他们都隐藏在他们的父RelativeLayout之外。是否有任何属性可以让它们在其父 RelativeLayout 中显示一半(而不是整个 TextView 和 RelativeLayout)?