ScrollView不会滚动溢出的布局

时间:2014-10-06 18:12:41

标签: android android-layout layout

我有一个包含一个子布局(线性布局)的滚动视图,该子窗口包含相对布局和线性布局。相对布局和线性布局共享半个半屏。线性布局动态添加了按钮。

现在出现问题,因为滚动视图在滚动相对布局和线性布局时不滚动按钮。

<ScrollView>
 <LinearLayout>

  <RelativeLayout>       
  </RelativeLayout>

  <LinearLayout>
                          ->Dynamically adding buttons here
  </LinearLayout>

 </LinearLayout>
</ScrollView>

我希望这些按钮滚动滚动

作为参考我的xml代码是: -

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/whitecolor"
android:orientation="vertical"
 >

 <ScrollView
     android:id="@+id/scrollview"
     android:layout_width="fill_parent"
     android:layout_height="fill_parent"
     android:fillViewport="true"
     >

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

<RelativeLayout 
   android:
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="1"
    android:orientation="vertical"
    >
<View 
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@color/bluecolor"   
    />
<TextView 
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_above="@+id/stauslinearlayout"
    android:layout_marginBottom="8dp"
    android:padding="5dp"
    android:gravity="center"
    android:textColor="@color/whitecolor"
    android:text="@string/app_name"
    />
<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:layout_alignParentBottom="true"
    android:background="@color/bluecolor"
    >
<EditText 
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:background="@drawable/edit_text_custom"
    android:singleLine="true"
    android:hint="@string/status"
    android:textColor="#000"
    android:textColorHint="#5222"
    android:padding="7dp"
    android:maxLength="50"
    android:cursorVisible="true"
    android:layout_marginBottom="10dp"
    android:layout_marginLeft="10dp"
    android:drawableLeft="@android:drawable/ic_input_add"
    android:ems="10"
    />
<TextView
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:layout_gravity="right|center_horizontal"
    android:gravity="center" 
    android:layout_weight="0"
    android:layout_marginBottom="10dp"
    android:layout_marginRight="10dp"
    android:padding="5dp"
    android:text="@string/statusnumber"
    android:background="@drawable/edit_text_custom"
    />
</LinearLayout>
</RelativeLayout>

<LinearLayout 
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="1"
    android:orientation="vertical"
    >
<TextView 
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@color/whitecolor"
    android:text="abcdfrg"
    />
<Button
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="@string/app_name" 
    />
<Button
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="@string/app_name" 
    />
    <Button
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="@string/app_name" 
    />
    <Button
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="@string/app_name" 
    />
        <Button
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="@string/app_name" 
    />
        <Button
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="@string/app_name" 
    />            
</LinearLayout>
</LinearLayout>
</ScrollView>

1 个答案:

答案 0 :(得分:0)

AFAIK,如果你想将屏幕划分为相同的两种尺寸,你必须在底部视图中采用另一个scrollView,如下例所示......

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <ScrollView
        android:id="@+id/scrollview"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:fillViewport="true" >

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

            <RelativeLayout
                android:layout_width="match_parent"
                android:layout_height="0dp"
                android:layout_weight="1"
                android:orientation="vertical" >

                <View
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:background="@android:color/darker_gray" />

                <TextView
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_above="@+id/stauslinearlayout"
                    android:layout_marginBottom="8dp"
                    android:gravity="center"
                    android:padding="5dp"
                    android:text="@string/app_name"
                    android:textColor="@android:color/white" />

                <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_alignParentBottom="true"
                    android:background="@android:color/darker_gray"
                    android:orientation="horizontal" >

                    <EditText
                        android:layout_width="0dp"
                        android:layout_height="wrap_content"
                        android:layout_marginBottom="10dp"
                        android:layout_marginLeft="10dp"
                        android:layout_weight="1"
                        android:cursorVisible="true"
                        android:drawableLeft="@android:drawable/ic_input_add"
                        android:ems="10"
                        android:hint="status"
                        android:maxLength="50"
                        android:padding="7dp"
                        android:singleLine="true"
                        android:textColor="#000"
                        android:textColorHint="#5222" />

                    <TextView
                        android:layout_width="wrap_content"
                        android:layout_height="match_parent"
                        android:layout_gravity="right|center_horizontal"
                        android:layout_marginBottom="10dp"
                        android:layout_marginRight="10dp"
                        android:layout_weight="0"
                        android:gravity="center"
                        android:padding="5dp"
                        android:text="statusnumber" />
                </LinearLayout>
            </RelativeLayout>

            <ScrollView
                android:layout_width="match_parent"
                android:layout_height="0dp"
                android:layout_weight="1" >

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

                    <TextView
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:background="@android:color/white"
                        android:text="abcdfrg" />

                    <Button
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:text="@string/app_name" />

                    <Button
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:text="@string/app_name" />

                    <Button
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:text="@string/app_name" />

                    <Button
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:text="@string/app_name" />

                    <Button
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:text="@string/app_name" />

                    <Button
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:text="@string/app_name" />
                </LinearLayout>
            </ScrollView>
        </LinearLayout>
    </ScrollView>

</LinearLayout> 

如果您不想再使用另一个scrollView,则必须将wrap_contant赋予底部线性布局。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <ScrollView
        android:id="@+id/scrollview"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:fillViewport="true" >

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

            <RelativeLayout
                android:layout_width="match_parent"
                android:layout_height="0dp"
                android:layout_weight="1"
                android:orientation="vertical" >

                <View
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:background="@android:color/darker_gray" />

                <TextView
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_above="@+id/stauslinearlayout"
                    android:layout_marginBottom="8dp"
                    android:gravity="center"
                    android:padding="5dp"
                    android:text="@string/app_name"
                    android:textColor="@android:color/white" />

                <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_alignParentBottom="true"
                    android:background="@android:color/darker_gray"
                    android:orientation="horizontal" >

                    <EditText
                        android:layout_width="0dp"
                        android:layout_height="wrap_content"
                        android:layout_marginBottom="10dp"
                        android:layout_marginLeft="10dp"
                        android:layout_weight="1"
                        android:cursorVisible="true"
                        android:drawableLeft="@android:drawable/ic_input_add"
                        android:ems="10"
                        android:hint="status"
                        android:maxLength="50"
                        android:padding="7dp"
                        android:singleLine="true"
                        android:textColor="#000"
                        android:textColorHint="#5222" />

                    <TextView
                        android:layout_width="wrap_content"
                        android:layout_height="match_parent"
                        android:layout_gravity="right|center_horizontal"
                        android:layout_marginBottom="10dp"
                        android:layout_marginRight="10dp"
                        android:layout_weight="0"
                        android:gravity="center"
                        android:padding="5dp"
                        android:text="statusnumber" />
                </LinearLayout>
            </RelativeLayout>

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

                <TextView
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:background="@android:color/white"
                    android:text="abcdfrg" />

                <Button
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:text="@string/app_name" />

                <Button
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:text="@string/app_name" />

                <Button
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:text="@string/app_name" />

                <Button
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:text="@string/app_name" />

                <Button
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:text="@string/app_name" />

                <Button
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:text="@string/app_name" />
            </LinearLayout>
        </LinearLayout>
    </ScrollView>

</LinearLayout>

选择符合您的要求。

如果还有问题,那么请问......: - )