问题描述
- 在relativelayout中的布局问题
- <LinearLayout
android:id=""@+id/linearlayout""
android:layout_width=""fill_parent""
android:layout_height=""wrap_content""
android:layout_alignParentBottom=""true""android:orientation=""vertical"" > ....... ....... </LinearLayout> 现在xml中有一个属性为alignParentBottom的linearlayout现在想用一个view将他顶上去,该怎么做?
解决方案
在底部的LinearLayout下面再添加一个view呗。反正android:orientation=""vertical""。
解决方案二:
linearlayout放置在view之上。。。。
解决方案三:
在LinearLayout下添加一个View给view添加一个属性 below = @+id/LinearLayout的id.
解决方案四:
<RelativeLayout android:layout_width="wrap_content" android:layout_height="wrap_content"> <R......<br/><strong>答案就在这里:</strong><a target='_blank' rel='nofollow' href='http://blog.csdn.net/somatezyc/article/details/7609810'>RelativeLayout布局问题</a><br/>
解决方案五:
。。。。。。。。。。。。。。。
时间: 2024-09-22 09:58:28