We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22bc4f9 commit b037d02Copy full SHA for b037d02
1 file changed
app/src/main/java/io/github/yawnoc/strokeinput/MainActivity.java
@@ -47,8 +47,9 @@ public void onClick(final View view) {
47
final int viewId = view.getId();
48
49
if (viewId == R.id.input_settings_button) {
50
- final Intent intent = new Intent(Settings.ACTION_INPUT_METHOD_SETTINGS);
51
- startActivity(intent);
+ final Intent inputSettingsIntent =
+ new Intent(Settings.ACTION_INPUT_METHOD_SETTINGS);
52
+ startActivity(inputSettingsIntent);
53
}
54
else if (viewId == R.id.switch_keyboard_button) {
55
final InputMethodManager inputMethodManager =
0 commit comments