我有一个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:paddingTop="20dp">
<View
android:id="@+id/first_divider"
style="@style/Divider"/>
<ListView
android:id="@+id/listview"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
style="@style/ListView"/>
<View
android:id="@+id/second_divider"
style="@style/Divider" />
<TextView
android:id="@+id/textview_error"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:visibility="gone"
android:textColor="@color/red"
android:layout_marginTop="10dp"
android:layout_marginLeft="24dp"
android:layout_marginRight="24dp"
android:text="@string/ui_alertdialog_checkable_list_dialog_no_item_selected_error"/>
</LinearLayout>
我在onCreateDialog方法中以这种方式扩充我的布局:
View contentView = getActivity().getLayoutInflater().inflate(R.layout.ui_alertdialog_checkable_list, null);
它正常工作,但是我的列表视图的适配器调用了getView太多次并且调用notifyDatasetChanged非常慢。这是由于我对布局进行充气的方式造成的:我没有将其附加到父视图,因此Android似乎无法计算列表视图的高度,因此创建了很多使用getView的视图。
如果我设定一个固定的高度,一切正常,但我无法做到。将高度设置为MATCH_PARENT也不起作用。
任何人都知道如何使用自定义布局和正常工作的列表视图进行对话?
答案 0 :(得分:1)
花了一段时间但我找到了一个解决方案:使用RelativeLayout修复了问题!示例XML:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:paddingTop="20dp">
<View
android:id="@+id/first_divider"
style="@style/Divider"/>
<ListView
android:id="@+id/listview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/first_divider"
android:layout_above="@+id/bottom_elements"
style="@style/ListView"/>
<LinearLayout
android:id="@+id/bottom_elements"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_alignParentBottom="true" >
<View style="@style/Divider"/>
<TextView
android:id="@+id/textview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/my_textview_text" />
</LinearLayout>
</RelativeLayout>