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.

I want to show a dialog inside another dialog box it's working fine but When I click ADD or EDIT button there is no response. I have posted the code below

    private Dialog myTextDialog(final String title) {
    final AlertDialog.Builder builder=new AlertDialog.Builder(this);

    builder.setView(getCurrentFocus());
    builder.setPositiveButton("ADD", new OnClickListener() {

        public void onClick(DialogInterface dialog, int which) {
            myAddCategory(title);
        }
    });
    builder.setNegativeButton("EDIT", new OnClickListener() {

        public void onClick(DialogInterface dialog, int which) {
            mAdapter = new MyExpandableListAdapter(MyGraphicalActivity.this, listOptionGroup, listOptionChild);
        }
    });
    return builder.create();
 }  

private Dialog myAddCategory(final String title) {
    LayoutInflater inflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    final AlertDialog.Builder builder = new AlertDialog.Builder(this);

    final View viewMessEdit = inflater.inflate(R.layout.add_category,(ViewGroup) findViewById(R.id.alertlayout));

    builder.setView(viewMessEdit);                  
   //viewMessEdit.setBackgroundResource(R.color.grayy);

    builder.setPositiveButton("ADD", new Dialog.OnClickListener() {
        public void onClick(DialogInterface dialog, int which) {

            final EditText savedText = ((EditText) viewMessEdit.findViewById(R.id.inputbox));   
            newcategory=savedText.getText().toString();
            newcategory = checkCategory(newcategory);
            if(newcategory!="null" && newcategory.length()>0)
            {            
            Pattern pattern;                         
            pattern=Pattern.compile("[A-Z | a-z]*");
            Matcher matcher=pattern.matcher(newcategory);       
                if(!matcher.matches()) 
                {               
                    myTextDialog(title).show();
                    Toast.makeText(getBaseContext(),"Invalid Category name!",Toast.LENGTH_LONG).show();
                }
                else
                {               
                    Intent addcategorylist_intent=new Intent(MyGraphicalActivity.this,addcategorylist.class);
                    startActivity(addcategorylist_intent);
                    Toast.makeText(getBaseContext(), "ADDED", Toast.LENGTH_SHORT).show();
                }
            }
            else
            {
                myTextDialog(title).show();
                Toast.makeText(getBaseContext(),"You Can not give Blank & already specified Category!",Toast.LENGTH_LONG).show();            
            }
        }
    });
    builder.setNegativeButton("CANCEL",new Dialog.OnClickListener() {
        public void onClick(DialogInterface dialog, int which) {

        }             
    });

    return builder.create();
}
share|improve this question
Show logcat so that we can identify the problem – Bhavin May 17 '12 at 5:41

1 Answer

up vote 2 down vote accepted

Change the following code

builder.setPositiveButton("ADD", new OnClickListener() {

    public void onClick(DialogInterface dialog, int which) {
        myAddCategory(title);
    }
});

to

builder.setPositiveButton("ADD", new OnClickListener() {

    public void onClick(DialogInterface dialog, int which) {
        myAddCategory(title).show();
    }
});
share|improve this answer
builder.setNegativeButton("CANCEL",new Dialog.OnClickListener() { public void onClick(DialogInterface dialog, int which) { } }).show(); return builder.create(); } have to added the .show() method – sureshkumar May 17 '12 at 12:20

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.