Help Mic disappears from keyboard
- By Oldmaven
- Ask a question
- 4 Replies
My keyboard used to have a microphone icon I'd touch to get voice input. Now, it doesn't. How can I get that function back?
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;
}
}
});