i have created a custom dialog class
public class NewPost extends Dialog { // functionality }
now my requirement is to create listview ins
The simplest possible way:
ListView listView = new ListView(this); listView.setAdapter(new ArrayAdapter(this, android.R.layout.simple_list_item_1, new String[] {"item 1", "item 2", "item 3"})); Dialog dialog = new Dialog(this); dialog.setContentView(listView); dialog.show();