We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f854f0 commit 2907eb5Copy full SHA for 2907eb5
1 file changed
app/src/main/java/io/github/yawnoc/strokeinput/MainActivity.java
@@ -37,13 +37,8 @@ protected void onCreate(final Bundle savedInstanceState) {
37
super.onCreate(savedInstanceState);
38
setContentView(R.layout.activity_main);
39
40
- final Button inputSettingsButton =
41
- findViewById(R.id.input_settings_button);
42
- inputSettingsButton.setOnClickListener(this);
43
-
44
- final Button switchKeyboardButton =
45
- findViewById(R.id.switch_keyboard_button);
46
- switchKeyboardButton.setOnClickListener(this);
+ findViewById(R.id.input_settings_button).setOnClickListener(this);
+ findViewById(R.id.switch_keyboard_button).setOnClickListener(this);
47
48
}
49
0 commit comments