1

我的 DialogFragments 之一实现了两个大小相等的 GridView,一个堆叠在另一个之上。理想情况下,我的布局应该是这样的(在 Android Studio 中可以看到): Android Studio 中的布局

不幸的是,当我在实际的 Android 设备上加载布局时,我得到了这样的结果: Android上相同的布局

Kanji GridView 为空时,它是完全不可见的。此外,它的高度取决于它必须显示的元素数量。如何根据 Android Studio 中看到的布局强制底部 GridView 填充 50% 的高度,即使它是空的?

这是此特定布局的 XML:

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/kanji_lookup_root"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingLeft="5dp"
    android:paddingRight="5dp"
    android:focusableInTouchMode="true">

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">

        <ProgressBar
            android:layout_width="32dp"
            android:layout_height="32dp"
            android:id="@+id/progress_bar"
            android:layout_toStartOf="@+id/search_box_kanji"
            android:visibility="gone"
            android:indeterminate="true"
            android:layout_centerVertical="true"/>

        <SearchView
            android:layout_width="300dp"
            android:layout_height="wrap_content"
            android:id="@id/search_box_kanji"
            android:queryHint="@string/menu_search_hint"
            android:iconifiedByDefault="false"
            android:layout_centerHorizontal="true"/>

    </RelativeLayout>

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

        <TextView
            style="@style/EntryDetailsHeader"
            android:text="@string/components" />

        <com.tonicartos.widget.stickygridheaders.StickyGridHeadersGridView
            android:id="@+id/grid_components"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:numColumns="9"/>

    </LinearLayout>

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

        <TextView
            style="@style/EntryDetailsHeader"
            android:text="@string/kanji" />

        <GridView
            android:id="@+id/grid_kanji"
            android:layout_height="match_parent"
            android:layout_width="match_parent"
            android:numColumns="9"/>

    </LinearLayout>

</LinearLayout>

(顺便说一下,我使用StickyGridHeaders 库作为上层组件GridView)

4

2 回答 2

0

将两个 LinearLayout 上的“0dp”layout_height 更改为“match_parent”。

于 2013-10-10T16:25:31.920 回答
0

您在weightSum最外层缺少一个属性LinearLayout

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/kanji_lookup_root"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:focusableInTouchMode="true"
    android:orientation="vertical"
    android:paddingLeft="5dp"
    android:paddingRight="5dp"
    android:weightSum="2" > <!-- This line is what you were missing -->
    ...
</LinearLayout>

测试这在设备上工作(假设您的 EntryDetailsHeader 样式设置match_parent宽度和wrap_content高度)。

于 2013-10-10T20:42:56.403 回答