How to use onActivityResult method from other than Activity class

前端 未结 7 1188
鱼传尺愫
鱼传尺愫 2020-12-05 23:53

I am creating an app where i need to find current location of user .

So here I would like to do a task like when user returns from that System intent, my task shou

相关标签:
7条回答
  • 2020-12-06 00:52

    Finally i got what i need and also the solution for this question.

     Activity con;
    Intent intent_= new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS);
                con.startActivityForResult(intent_, 0);
    

    Now i can create a method here,

    public void startActivityForResult(Intent i, int code)
    {
        Log.e("", "insede method startActivityForResult()");
    }
    

    By using this System is not creating a sub-activity for my intent so,this method gets called only after user return from intent.

    0 讨论(0)
提交回复
热议问题