带有列表和imageview的android对话框

时间:2012-07-29 13:27:27

标签: android dialog android-imageview textview

我是android新手。我有一个包含imageview和textview的布局。我还有一个包含一些数据信息的列表。

我想在textview位置的对话框中添加列表。 Imageview设置为默认图像,我想像momenet一样保留它。稍后我将有一个带有imageview的新列表,我想从layout.view pos设置为我的imageview。

我想问一下如何将列表数据设置为textview,以及如何从对话框中获取单击的元素 我不知道如何在文本

的对话框中添加列表
builder = new AlertDialog.Builder(getApplicationContext());
LayoutInflater li = (LayoutInflater) getApplicationContext().getSystemService(LAYOUT_INFLATER_SERVICE);  
View promptsView = li.inflate(R.layout.contact_filster_list,(ViewGroup) findViewById(R.id.layout_root));
builder.setView(promptsView);
final ImageView userInput = (ImageView) promptsView.findViewById(R.id.dialog_icon);
final TextView userInput1 = (TextView) promptsView.findViewById(R.id.dialog_text);

0 个答案:

没有答案