mirror of
https://github.com/accelforce/Yuito
synced 2025-01-10 22:54:42 +01:00
feature(MainActivity): add shortcut for compose new toot (SHIFT + N or CTRL + N) [#505]
This commit is contained in:
parent
db989ce4ff
commit
8cbf8b59bd
@ -280,9 +280,26 @@ public final class MainActivity extends BottomSheetActivity implements ActionBut
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
return super.onKeyDown(keyCode, event);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean onKeyShortcut(int keyCode, KeyEvent event) {
|
||||
if (event.isCtrlPressed() || event.isShiftPressed()) {
|
||||
// FIXME: blackberry keyONE raises SHIFT key event even CTRL IS PRESSED
|
||||
switch (keyCode) {
|
||||
case KeyEvent.KEYCODE_N: {
|
||||
// open compose activity by pressing SHIFT + N (or CTRL + N)
|
||||
Intent composeIntent = new Intent(getApplicationContext(), ComposeActivity.class);
|
||||
startActivity(composeIntent);
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
return super.onKeyShortcut(keyCode, event);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onPostCreate(Bundle savedInstanceState) {
|
||||
super.onPostCreate(savedInstanceState);
|
||||
|
Loading…
Reference in New Issue
Block a user