我有2个视图,一个是滚动视图,另一个是LinearLayout。我希望LinearLayout是一个固定的大小,我有大约80dp。我希望这个布局始终位于屏幕的右侧。剩下的空间我想让我的Scroll View占用。这是我的代码的样子。
<LinearLayout
android:id="@+id/widget4327"
android:layout_below="@+id/line"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#F4F5DC">
<ScrollView
android:id="@+id/ScrollView01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="left"
android:layout_below="@+id/line">
</ScrollView>
<LinearLayout
android:id="@+id/linearL2"
android:background="#EEEFE0"
android:layout_gravity="right"
android:layout_height="fill_parent"
android:layout_width="80dp"
android:orientation="vertical"
android:gravity="left"
android:layout_toRightOf="@id/ScrollView01">
</LinearLayout>
</LinearLayout>
我认为引力会照顾到这一点,但我似乎无法让它发挥作用。有什么想法吗?
答案 0 :(得分:0)
如果您使用RelativeLayout
,则可以将alignToParentLeft
设置为true