Google Play Music Stops
- Apps & Games
- 3 Replies
Galaxy S8+....Google play music stops after few seconds. noticed "Background restriction on" and went thru steps to remove it, but was unsuccessful. Does anyone have ANY ideas?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.


so need some Andriod Studio instructions 
) / instructions on how to create a homescreen icon for andriod?
final Boolean isFirstTimer = false;
final Boolean isInvestor = false;
RadioGroup radioGroup = (RadioGroup) findViewById(R.id.radioGroup);
radioGroup.setOnCheckedChangeListener(
new RadioGroup.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(RadioGroup group, int checkedId) {
RadioButton rb = (RadioButton) group.findViewById(checkedId);
switch(rb.getId()) {
case R.id.radioButton2:
isFirstTimer = true;
break;
case R.id.radioButton3:
isInvestor = true;
break;
}
}
});