我在有android:layout_height="fill_parent"
的ScrollView
中有一个LinearLayout
,但它没有展开到ScrollView
的完整高度。我的布局看起来像这样:
level layout layout_width layout_height
1 LinearLayout fill_parent fill_parent
2 LinearLayout fill_parent wrap_content
3 (some irrelevant stuff)
2 ScrollView fill_parent fill_parent <-- this expands full height
3 LinearLayout fill_parent fill_parent <-- this does not (has orientation=vertical)
(following stuff probably are irrelevant, but just to be sure:)
4 TextView fill_parent fill_parent
4 LinearLayout fill_parent wrap_content
我可以看到LinearLayout
没有展开ScrollView
的整个高度,因为在Eclipse中的Android Layout Editor
中,如果我选择ScrollView
(在大纲面板中),它会突出显示一个红色边框,将屏幕填充到底部,但当我选择LinearLayout
时,它的高亮不会扩展到屏幕底部。我怎样才能让它这样做呢?
我试图实现的效果是有一些文本和下面的按钮(在第4级的LinearLayout
里面只有一个按钮)。文本可能大到需要滚动条,在这种情况下,我希望用户必须向下滚动才能看到按钮。在文本不够大的情况下,滚动条,我希望包含按钮的LinearLayout
粘在屏幕底部。
起初,我认为我不应该发布完整的XML,因为在一个问题中看到大量代码通常会让人失望。然而,这似乎是必要的,所以这里是完整的布局。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
xmlns:android="http://schemas.android.com/apk/res/android">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:id="@+id/video_layout"
android:focusable="true"
style="@style/VideoLayout">
<FrameLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:foreground="@android:drawable/ic_media_play"
android:foregroundGravity="center">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/video_thumb"
android:padding="5dip"
android:background="#454545"/>
</FrameLayout>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:focusable="true"
style="@style/VideoTitle"
android:id="@+id/video_title"
android:layout_gravity="center"
android:layout_weight="1"/>
</LinearLayout>
<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1">
<!-- this ScrollView expands the full height of the screen.
However, the next LinearLayout does not expand the full height of the ScrollView -->
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:layout_gravity="fill"
android:orientation="vertical"
android:id="@+id/info_layout">
<TextView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/info_body"
style="@style/InfoText"/>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
style="@android:style/ButtonBar">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_weight="1"
android:text="@string/button_readmore"
android:id="@+id/btn_read_more"/>
</LinearLayout>
</LinearLayout>
</ScrollView>
</LinearLayout>
目前,我已经在有问题的LinearLayout
上求助于android:layout_gravity="bottom"
,这使得按钮无论如何都粘在屏幕底部。但这也会使文本粘在屏幕底部,这并不是我想要的。
更新:注意,android:layout_gravity="bottom"
使ScrollView
无法滚动。其他的想法吗?