I need help with my android studio
- By Samson0590
- Android Development
- 6 Replies
Good evening, i just have a question with my android studio. When i press the run button, android studio cant detect my device. I need your help with these
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;
}
}
});