答案 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...");