ScrollView没有滚动权重

时间:2013-09-06 14:17:21

标签: java android scrollview

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fillViewport="true"
    android:measureAllChildren="true"
    android:overScrollMode="ifContentScrolls" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" >

        <FrameLayout
            android:id="@+id/viewPagerLayout"
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="1" >

           contents like button textview are here

        </FrameLayout>

        <FrameLayout
            android:id="@+id/viewPagerLayout"
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="1" >

           contents like button textview are here


        </FrameLayout>

</LinearLayout>
</Scrollview>

当KeyBoard弹出时,滚动视图不会像我们想象的那样滚动...

0 个答案:

没有答案