I want create dialog box  as described below , **preciously the
checkbox in the footer**

Visit the link

http://i.stack.imgur.com/Dw6Uw.png



so far I reached to this part

Visit the link

 http://i.stack.imgur.com/BJSyJ.png


now there are only two issues


 1) Dialog Title Icon  , as i don't know which default android icon is
used over here
 2) Dialog Bottom Blue Color ( which is a default color of android )

and i don't know how to achieve above two task

Here is my code to create dialog


    contactDlg = new Dialog(this);
    contactDlg.requestWindowFeature( Window.FEATURE_LEFT_ICON );

    contactDlg.setTitle(contactStore.getContactName());

    contactDlg.setContentView(R.layout.contact_dialog);
    contactDlg.setFeatureDrawableResource(Window.FEATURE_LEFT_ICON,
android.R.drawable.bottom_bar);
    contactAdapter = new
ContactAdapter(this,contactStore.getContactNumber());

    modeList = (ListView)
contactDlg.findViewById(R.id.contactDlgList);
    modeList.setBackgroundResource(android.R.color.white);
    modeList.setCacheColorHint(Color.WHITE);
    modeList.setAdapter(contactAdapter);

    contactDlg.show();

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to