如果我使用布局宽度为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,所以对我来说必须使用布局宽度作为填充父级, 请提出一些建议。
答案 0 :(得分:0)