feature(ComposeActivity): add shortcut for send new toot (CTRL + ENTER) [#505]
This commit is contained in:
parent
8cbf8b59bd
commit
d31aa7fc43
|
@ -47,6 +47,7 @@ import android.text.TextWatcher;
|
||||||
import android.text.style.URLSpan;
|
import android.text.style.URLSpan;
|
||||||
import android.util.DisplayMetrics;
|
import android.util.DisplayMetrics;
|
||||||
import android.util.Log;
|
import android.util.Log;
|
||||||
|
import android.view.KeyEvent;
|
||||||
import android.view.MenuItem;
|
import android.view.MenuItem;
|
||||||
import android.view.View;
|
import android.view.View;
|
||||||
import android.view.ViewGroup;
|
import android.view.ViewGroup;
|
||||||
|
@ -539,6 +540,8 @@ public final class ComposeActivity
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
textEditor.setOnKeyListener((view, keyCode, event) -> this.onKeyShortcut(keyCode, event));
|
||||||
|
|
||||||
textEditor.setAdapter(
|
textEditor.setAdapter(
|
||||||
new ComposeAutoCompleteAdapter(this));
|
new ComposeAutoCompleteAdapter(this));
|
||||||
textEditor.setTokenizer(new ComposeTokenizer());
|
textEditor.setTokenizer(new ComposeTokenizer());
|
||||||
|
@ -1624,6 +1627,7 @@ public final class ComposeActivity
|
||||||
return super.onOptionsItemSelected(item);
|
return super.onOptionsItemSelected(item);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onBackPressed() {
|
public void onBackPressed() {
|
||||||
// Acting like a teen: deliberately ignoring parent.
|
// Acting like a teen: deliberately ignoring parent.
|
||||||
|
@ -1639,6 +1643,21 @@ public final class ComposeActivity
|
||||||
handleCloseButton();
|
handleCloseButton();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean onKeyShortcut(int keyCode, KeyEvent event) {
|
||||||
|
Log.d(TAG, event.toString());
|
||||||
|
if (event.isCtrlPressed()) {
|
||||||
|
if (keyCode == KeyEvent.KEYCODE_ENTER) {
|
||||||
|
// send toot by pressing CTRL + ENTER
|
||||||
|
this.onSendClicked();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return super.onKeyDown(keyCode, event);
|
||||||
|
}
|
||||||
|
|
||||||
private void handleCloseButton() {
|
private void handleCloseButton() {
|
||||||
|
|
||||||
CharSequence contentText = textEditor.getText();
|
CharSequence contentText = textEditor.getText();
|
||||||
|
|
Loading…
Reference in New Issue