问题描述
解决方案
设置一个 relative布局,然后在把所有的linear布局的代码添加在relative layout里。再添加textview,并且标明textview在top位置,同时给出外边距。
<RelativeLayout>
<TextView android:layout_alignParentTop="true"
android:layout_margin="20dip/>
<LinearLayout>
// here is your linear layout
</LinearLayout>
</RelativeLayout>
解决方案二:
<RelativeLayout>)
<LinearLayout with border>
<TextView with white background>
</RelativeLayout>
TextView应该添加在linear布局上面,覆盖边框与布局的白色背景。你要使用外边距设置标题的位置。
时间: 2024-10-29 06:31:19