私は、textView を使用して、relativeLayout の下部 30 dp 部分を表示しようとしています。
<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全体ではなく)半分を表示させる属性はありますか?