如何在Android活动对话框中显示列表视图(多级)

时间:2016-04-24 11:32:42

标签: android listview include

在对话框中包含活动...活动包括多列表视图 请帮忙

enter image description here

1 个答案:

答案 0 :(得分:0)

如我所见,这不是对话中的活动。 Dialog本身具有自定义视图,其中包含标题,编辑文本和列表视图。

不确定你在寻找什么....但你可以像这样创建一个CustomDialog:

custom_dialog.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

    <EditText
        android:id="@+id/edit_text"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginRight="5dp" />

    <ListView
        android:id="@+id/list"
        android:layout_width="match_parrent"
        android:layout_height="wrap_content"/>

</RelativeLayout>

在您的活动中创建它:

final Dialog dialog = new Dialog(context);
            dialog.setContentView(R.layout.custom);
            dialog.setTitle("Title...");