Please tell me how can I implement a return from the activity to the fragment that called it in Android Studio. This is a part of the code of my fragment.
Intent intent = new Intent(getContext(), HelpActivity.class);
startActivity(intent);
Code of my activity:
public class HelpActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_1);
}
}