Android ScrollView没有垂直填充设备上的布局

时间:2013-05-24 19:46:44

标签: android android-layout android-scrollview

这很奇怪。我有一组标签,一个(实际上是两个,但它们是相同的,内容略有不同)正在起作用。我有两个XML文件。一个是景观,它工作得很好。另一个是肖像,它是行为不端。在下面我将附加xml。页面的设置方式,它具有线性布局作为根布局。然后是一个包含水平线性布局和相对布局的滚动视图。他们应该互相堆叠。为此,我做了横向版本的反面。我在每个布局上将高度设置为0dp并将权重设置为1。在横向版本上,这样可以正常工作,并按照预期的方式将它们分开。滚动视图的填充视图窗口标记为true,标记或声明或其他高度位于高度之后。

但是在肖像版本上,它在Eclipse中正确渲染,但无法在我的设备上正确渲染(Samsung Galaxy Tab 2 10.1)。我专门针对这个屏幕和设备,如果那是相关的。

有没有人有任何想法?

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:baselineAligned="true"
    android:orientation="vertical" >

    <!-- the id itemListItemList is named that way on purpose -->
    <!-- This will be filled programmatically as items are added to the inventory -->

    <ScrollView
        android:id="@+id/itemListScrollView"
        android:fillViewport="true"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:scrollbarStyle="insideOverlay" >

        <LinearLayout
            android:id="@+id/itemListItemList"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:orientation="vertical" >

        </LinearLayout>

    </ScrollView>

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

        <LinearLayout
            android:id="@+id/linearLayout1"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="10dp" >

            <EditText
                android:id="@+id/itemListItemName"
                style="@style/item_list_label_style"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:background="@drawable/label_background"
                android:clickable="false"
                android:cursorVisible="false"
                android:ems="10"
                android:focusable="false"
                android:focusableInTouchMode="false"
                android:hint="@string/item_list_item_label"
                android:inputType="none"
                android:paddingLeft="11dp"
                android:singleLine="true" />

            <EditText
                android:id="@+id/itemListItemTag"
                style="@style/item_list_label_style"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:background="@drawable/label_background"
                android:clickable="false"
                android:cursorVisible="false"
                android:ems="10"
                android:focusable="false"
                android:focusableInTouchMode="false"
                android:hint="@string/item_list_tag_label"
                android:inputType="none"
                android:paddingLeft="11dp"
                android:singleLine="true" />
        </LinearLayout>

        <EditText
            android:id="@+id/itemListItemDescSym"
            style="@style/item_list_label_style"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_below="@+id/linearLayout1"
            android:layout_marginTop="23dp"
            android:background="@drawable/label_background"
            android:clickable="false"
            android:cursorVisible="false"
            android:ems="10"
            android:focusable="false"
            android:focusableInTouchMode="false"
            android:hint="@string/item_list_desc_sym_label"
            android:inputType="none"
            android:paddingLeft="11dp"
            android:singleLine="true" />

        <EditText
            android:id="@+id/itemListItemExceptions"
            style="@style/item_list_label_style"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_below="@+id/itemListItemDescSym"
            android:layout_marginTop="26dp"
            android:background="@drawable/label_background"
            android:clickable="false"
            android:cursorVisible="false"
            android:ems="10"
            android:focusable="false"
            android:focusableInTouchMode="false"
            android:hint="@string/item_list_exceptions_label"
            android:inputType="none"
            android:paddingLeft="11dp"
            android:singleLine="true" />

        <!--
             <Button
            android:id="@+id/item_list_void_button"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignBaseline="@+id/item_list_clear_button"
            android:layout_alignBottom="@+id/item_list_clear_button"
            android:layout_alignParentRight="true"
            android:layout_marginRight="27dp"
            android:text="@string/item_list_void_button" />
        -->

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_alignParentLeft="true" >

            <Button
                android:id="@+id/item_list_edit_button"
                android:layout_width="wrap_content"
                android:layout_height="75dp"
                android:layout_gravity="left"
                android:layout_weight="1"
                android:text="@string/item_list_edit_button" />

            <Button
                android:id="@+id/item_list_clear_button"
                android:layout_width="wrap_content"
                android:layout_height="75dp"
                android:layout_gravity="center_horizontal"
                android:layout_weight="1"
                android:text="@string/item_list_clear_button" />

            <Button
                android:id="@+id/item_list_void_button"
                android:layout_width="wrap_content"
                android:layout_height="75dp"
                android:layout_gravity="right"
                android:layout_weight="1"
                android:text="@string/item_list_void_button" />
        </LinearLayout>
    </RelativeLayout>

</LinearLayout>

1 个答案:

答案 0 :(得分:0)

设置android:fillViewport =&#34; true&#34;在scrollview标签