Get back to a fragment from an Activity

前端 未结 10 1973
野趣味
野趣味 2020-12-09 05:10

I have three fragment in an Activity C. they are behaving as tabs. I have to go from a fragment to a new Activity X. Now i want to come back to fragment from Activity X.

10条回答
  •  一个人的身影
    2020-12-09 05:47

    This code works in my case. I just make an Onclick method to the button . the code is below:I made onclick method clickForFriends in Button and Id is backFriendsList, And I use android.support.v4.app.Fragment class. This method should take back from new Activity to the fragment from the Activity was launched and this method should be in the Activity after the onCreate method

     public void clickedForFriends(View v){
        if (v.getId() == R.id.backFriendsList){
           onBackPressed();
        }
    }
    

提交回复
热议问题