ScrollView高度0即使在fill_parent时也是如此

时间:2010-11-20 19:50:56

标签: android scrollview android-linearlayout

我有一个包含imageview和scrollview的linearlayout A. scrollview包含第二个linearlayout B 这个想法是有一个固定的标题,而linearLayout B包含多个完全匹配scrollview高度的视图。将其视为tabview,其中所有选项卡都在滚动视图中相互跟随。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:id="@+id/main_view"
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="#000000"
    android:orientation="vertical">

<ImageView android:id="@+id/logoImg"
    android:layout_width="fill_parent"
    android:gravity="center"
    android:src="@drawable/logo"
    android:layout_height="wrap_content"/>

<ScrollView
  android:id="@+id/scrollView"
  android:layout_weight="1"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"> 

<LinearLayout android:id="@+id/scrollLinear"
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">
</ScrollView>
</LinearLayout>

我尝试通过在scrollView上调用getHeight然后将此高度设置为linearLayout B中的每个视图来实现此目的,但getHeight始终返回0。 任何人都知道最简单的方法是什么?

1 个答案:

答案 0 :(得分:3)

嗯,这个问题很老了,但我会试一试:) 在ScrollView中不会缺少“fillViewport”吗?

  <ScrollView
    android:id="@+id/scrollView"
    android:layout_weight="1"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"

    android:fillViewport="true" 

    >