我发现了一个让我很头疼的 Android 错误。
清单上的活动:
<activity
android:name=".ActivityTest"
android:configChanges="orientation"
android:label="@string/app_name" />
布局:
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="TEST" />
<SlidingDrawer
android:id="@+id/drawer"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:content="@+id/content"
android:handle="@+id/handle"
android:orientation="vertical" >
<ImageView
android:id="@id/handle"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:src="@drawable/ic_launcher" />
<LinearLayout
android:id="@id/content"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<Button
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="Big Big Button" />
</LinearLayout>
</SlidingDrawer>
现在..抓住抽屉的把手,将其移到中间并在旋转设备的同时保持手指...
抽屉尺寸都被拧紧了……直到它完全打开。
有人知道如何解决它吗?我正在尝试查看 SlidingDrawer 打开代码以检查为什么打开时它会正常……但还没有运气。
不自己处理轮换不是我现在愿意选择的选项...