我在 LinearLayout 中包含的 DialogFragment 中使用列表视图
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="@dimen/dialog_main_margin" >
<com.modelmakertools.simplemind.DragSortListView
android:id="@+id/drag_list_view"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
其中 DragSortListView 基于第 3 方 ListView 后代,允许使用拖动句柄图像重新排列项目。
当此代码用于(全屏)活动时,一切正常,但在 android.support.v4.app.DialogFragment 中使用时,拖动项目会导致对话框 + 列表视图组合不断更新对话框大小。这导致拖动非常慢,我看到很多 LogCat 消息:
06-06 15:37:07.833: I/Choreographer(17281): Skipped 166 frames! The application may be doing too much work on its main thread.
为了定位问题的根源,我将listview的宽高改为固定的400dp(而不是match_parent / wrap_content)。固定大小完全消除了这个问题。因此我的问题是:有没有办法避免对话框片段在布局一次后调整其大小?