how to set radio button check from intent in android studio
I want to set the radio button checked by taking the value from the previous activity through intent. But it's not working. Here's the intent I send from the MyProfileActivity to EditProfileActivity. Intent intent = new Intent(getContext(), EditProfileActivity.class); intent.putExtra("nameResult", nameResult);…