我在LinearLayout
中包含的DialogFragment中使用listview<?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基于第三方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)。修复尺寸完全消除了这个问题。 因此我的问题是:有没有办法避免对话框片段在布局一次后调整其大小?
答案 0 :(得分:1)
我找到了一种方法来阻止listview使用下面的代码更新对话框大小。 然而,事实证明,这只能解决问题的一部分:直到列表被修复&#34;装载仍然很慢。但这有另一个原因超出了这个问题/答案的范围
@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;
}
}
}
答案 1 :(得分:0)
尝试在使用对话框片段的活动的windowSoftInputMode
中将adjustNothing
属性设置为AndroidManifest.xml
。
<activity
...
android:windowSoftInputMode="adjustNothing">
...