0

我在 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)。固定大小完全消除了这个问题。因此我的问题是:有没有办法避免对话框片段在布局一次后调整其大小?

4

2 回答 2

1

我找到了一种方法来停止列表视图使用下面的代码更新对话框大小。然而,事实证明,这只解决了部分问题:在列表“固定”之前,加载仍然非常缓慢。但这有另一个原因超出了这个问题/答案的范围

@Override
public void onResume() {
    super.onResume();
    // Fixate the listview height once the listview has been measured rather than keeping it at "wrap_content"
    // This drastically improves rearrange performance.
    if (_listView != null) {
        _listView.postDelayed(new Runnable() {
            @Override
            public void run() {
                fixateListViewHeight();
            }
        }, 500);
    }
}

private void fixateListViewHeight() {
    if (_listView != null) {
        int h = _listView.getMeasuredHeight();
        if (h != 0) {
            LayoutParams params = (LayoutParams) _listView.getLayoutParams();
            if (params != null)
                params.height = h;
        }
    }
}
于 2013-06-10T06:43:22.047 回答
0

尝试在使用对话框片段的活动中将该属性设置windowSoftInputMode为。adjustNothingAndroidManifest.xml

<activity
    ...
    android:windowSoftInputMode="adjustNothing">
...
于 2013-06-25T23:25:47.843 回答