为什么滑动抽屉不接受布局宽度为fill_parent或match_parent

时间:2014-05-15 08:45:16

标签: android slidingdrawer

如果我使用布局宽度为100dip或50 dip,那么我的滑动抽屉工作正常,当使用布局宽度为fill_parent或匹配父级时显示Sliding drawer cannot have unspecified dimension。我不知道我做了什么错, 看看我的布局

 <SlidingDrawer
        android:id="@+id/slidingDrawer1"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:content="@+id/content"
        android:handle="@+id/handle" >

        <Button
            android:id="@+id/handle"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Handle" />

        <LinearLayout
            android:id="@+id/content"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical" >

            <ListView
                android:id="@+id/gocashHistorylist"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent" >
            </ListView>
        </LinearLayout>
    </SlidingDrawer>

在我的滑动抽屉中我使用了listview,所以对我来说必须使用布局宽度作为填充父级, 请提出一些建议。

1 个答案:

答案 0 :(得分:0)