How can I customise this dialog? I'd like to set a Title, centre the text etc
I'd also like to know how to open an activity on item selection.
public void show (){
ListView listView = new ListView(this);
listView.setAdapter(new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, new String[] {"Themes", "Advanced Launcher", "Help"}));
Dialog dialog = new Dialog(this);
dialog.setContentView(listView);
dialog.show();
}