Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
@Override
protected Dialog onCreateDialog(int id) {
    // TODO Auto-generated method stub
    if(id == 0){
    AlertDialog.Builder dialog = new AlertDialog.Builder(this);

    dialog.setTitle("page");
    dialog.setIcon(R.drawable.icon);

        return dialog.create();
    }else{
     return super.onCreateDialog(id);
    }
}

create Dialog using onCreateDialog

 @Override
protected void onPrepareDialog(int id, Dialog dialog) {
    // TODO Auto-generated method stub
    super.onPrepareDialog(id, dialog);

      LayoutInflater vi = (LayoutInflater)getSystemService(LAYOUT_INFLATER_SERVICE);
    if(id==0){

        View lo = (LinearLayout)vi.inflate(R.layout.detail_dialog, null);

                   ~~inflate View~~

        ((AlertDialog) dialog).setView(lo);
    }
}

but Dialog did no set View. and do not change the dialog.

How can i draw a changing content view in dialog ?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.