I have a custom subclass of AlertDialog that should display a list of all the available Wifi networks in range.
I'm displaying this dialog by creating an instance of it, and calling show(), and I'm not using AlertDialog.Builder (Because I want my custom class to be used).
I have my own layout to display as the content view, but I want the regular AlertDialog look and feel, with the title header and the frame.
My custom layout is pretty simple:
<?xml version="1.0" encoding="utf-8"?>
<ListView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/list"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
</ListView>
And I'm adding it to the dialog at onCreate():
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setTitle(R.string.pick_wifi_network);
setContentView(R.layout.pick_wifi_dialog);
// Rest of implementation
}
But the result look nothing like AlertDialog. There is no title, and the ListView takes the whole screen:

So what am I doing wrong and how should I do it right?
Thanks!
Edit: Why I don't use AlertDialog.Builder: My custom Dialog class is responsible for listening for SCAN_RESULTS_AVALIABLE_ACTION of WifiManager, and updating the ListView as results refreshes. For this reason I cannot use AlertDialog.Builder. END EDIT
AlertDialogbut with a list, I don't understand why you don't just useAlertDialog.Builderand callsetItems(...). It will create a list for you. – Squonk May 19 '12 at 19:42setView()method inAlertDialog.Builderto pass a custom layout. – Chopin May 19 '12 at 19:45