I have created a custom adapter to display different images in the each list items from the drawable resource. Now the custom adapter is working good in a listview. Now i need to display the list in a alertdialog or any other instead of displaying in another layout.

link|improve this question

69% accept rate
feedback

2 Answers

up vote 1 down vote accepted

Display it on a regular subactivity that looks like a dialog instead.

link|improve this answer
But when using subactivity the previous layout will not be visible in the background right? – arnp Oct 13 '11 at 7:54
@Arun prasath: The subactivity will be as big as you set it to be. Change its dimensions so that it doesn't take the full screen, and the parent activity will be seen in the background. – K-ballo Oct 13 '11 at 8:29
feedback

This code snippet shows a custom list inside a dialog box... :

        Dialog dialog2 = new Dialog(Activity.this);
        ListView modeList = new ListView(Activity.this);
        AlertDialog.Builder builder = new AlertDialog.Builder(Activity.this);


            builder.setTitle(" results[s] ");
            MySimpleAdapter adapter = new MySimpleAdapter(Activity.this, data , R.layout.list_main, 
                    new String[] { "name", "distance" ,"phone","web"}, 
                    new int[] { R.id.item_title, R.id.item_subtitle ,R.id.item_subtitle1 ,R.id.item_subtitle2});
            modeList.setAdapter(adapter);
        }





        builder.setView(modeList);
        dialog2 = builder.create();
        dialog2.show();
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.