이 문제는 2 일 동안 발생하며 해결책을 찾을 수 없습니다. listview 및 slidingdrawer가 오류를 발생시킵니다.
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/RelativeLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<ListView
android:id="@+id/presentation_list"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</ListView>
<SlidingDrawer
android:id="@+id/slidingDrawer1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/presentation_list"
android:content="@+id/content"
android:handle="@+id/handle"
android:orientation="horizontal" >
<Button
android:id="@+id/handle"
android:layout_width="40dp"
android:layout_height="fill_parent"
android:background="@android:color/darker_gray" />
<LinearLayout
android:id="@+id/content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<ImageView
android:id="@+id/content_imageview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/black" />
</LinearLayout>
</SlidingDrawer>
은 내가
listview
와 나는
listview
을 와서하고 싶은
slidingdrawer
이 매우 간단한 레이아웃을 가지고있다. 내
activity
정보없이 열면 모든 종류의 예외없이 완벽하게 나타납니다.
그러나 내 listview
에 항목이있는 경우 내 slidingdrawer
은 예외입니다.
AndroidRuntime(4722): java.lang.RuntimeException: SlidingDrawer cannot have UNSPECIFIED dimensions
나는 여러 번이 솔루션을 찾고 있지만 NONE은 나를 찾는다.
나를 위해 훌륭한 돌파구를 가진 사람이 있습니까? 대단히 감사합니다!
내 레이아웃이 작동하며 레이아웃과 일치하도록 내 질문이 업데이트되었습니다. – Robin