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've been trying to call a the dialog() method from another class. I have 2 classes: the first one is my main and the second one has the dialog() method. I've been trying to call a method and printed log.d and it is workinkg! However, when I try to call the dialog() method dialog it gives me a force close.

ahh.. thank you for your answer.
I've been trying
>>>1. Second sd = new Second();
                    >>>         sd.dialog(); >>>>>> force close
                 2. >>>((class second) context).dialog(); >>>>>>>> force close too.

this code firstclass

>>>public void onSlideMenuItemClick(int itemId) {
>>>     switch(itemId) {        
>>>     case R.id.recomment_mode:
>>>         Header_text = (TextView)findViewById(R.id.txtHeading);
>>>         Header_text.setText(R.string.recomment_mode);
>>>         Toast.makeText(this,R.string.recomment_mode, >>>Toast.LENGTH_SHORT).show();
>>>         reg sd = new reg();
   >>>                     sd.dialog(); >>>>>>>>>>>> error
>>>         break;
>>>     case R.id.tracking_mode:
>>>         Header_text = (TextView)findViewById(R.id.txtHeading);
>>>         Header_text.setText(R.string.tracking_mode);
>>>         Toast.makeText(this,R.string.tracking_mode, >>>Toast.LENGTH_SHORT).show();
>>>         ShowDialog();
>>>         break;
>>>     case MYITEMID:
>>>         Toast.makeText(this, "Dynamically added item selected", >>>Toast.LENGTH_SHORT).show();
>>>         break;
>>>     }
>>>     
>>> }
>>>
>>>
and this code second class

>>> @Override
   >>> protected void onCreate(Bundle savedInstanceState) {
    >>> 
>>>        super.onCreate(savedInstanceState);
   >>>     setContentView(R.layout.reg);
>>>
   >>> }
    >>>protected void dialogInput(){
    >>> LayoutInflater li = LayoutInflater.from(context);
    >>> 
    >>> View promptsView = li.inflate(R.layout.dialog, null);
>>>
>>>     AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(context);
>>>     
>>>     alertDialogBuilder.setView(promptsView);
>>>     
>>>     final EditText userInput = (EditText) >>>promptsView.findViewById(R.id.editTextDialogUserInput);

>>>     alertDialogBuilder.setCancelable(false).setPositiveButton("OK",new >>>DialogInterface.OnClickListener() {

>>>         public void onClick(DialogInterface dialog, int which) {
>>>             Intent go = new >>>Intent(getApplicationContext(),maprec.class);
>>>             startActivity(go);

>>>             
>>>         }
>>>     })
>>>     .setNegativeButton("Cancel",new DialogInterface.OnClickListener() {
>>>
>>>         public void onClick(DialogInterface dialog, int which) {
>>>             // TODO Auto-generated method stub
>>>             dialog.cancel();
>>>         }
>>>     });
>>>     
>>>     AlertDialog alertDialog = alertDialogBuilder.create();
>>>     
>>>     alertDialog.show();
>>> }
}>>>
>>>
>>>
>>>
But!!! when change dialog() to
>>>public void dialog(){
>>>Log.D(TAG,"Hello world"); >>>>>>>>>>>> it's working 
>>>}


T-T I don't understand when new method
>>>public void test(){
>>>Log.d (Tag,"string");
>>>}

And use rd.test()
        rd.dialog()

in function onSlideMenuItemClick(int itemId).Of course,rd.test() it's working but not rd.dialog() 

am so sadddddd T-T
share|improve this question
how about put here crash log for start? – dor506 Sep 29 '12 at 19:19
put source code here. How are calling this "dialog()" method? – Piotr Sep 29 '12 at 19:22

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.