fix close button behavior in ComposeActivity (#1056)
This commit is contained in:
parent
fd3226d244
commit
8201f2539d
@ -1490,11 +1490,6 @@ public final class ComposeActivity
|
||||
@Override
|
||||
public void onBackPressed() {
|
||||
// Acting like a teen: deliberately ignoring parent.
|
||||
handleCloseButton();
|
||||
}
|
||||
|
||||
private void handleCloseButton() {
|
||||
|
||||
if(composeOptionsBehavior.getState() == BottomSheetBehavior.STATE_EXPANDED ||
|
||||
addMediaBehavior.getState() == BottomSheetBehavior.STATE_EXPANDED ||
|
||||
emojiBehavior.getState() == BottomSheetBehavior.STATE_EXPANDED ) {
|
||||
@ -1504,6 +1499,11 @@ public final class ComposeActivity
|
||||
return;
|
||||
}
|
||||
|
||||
handleCloseButton();
|
||||
}
|
||||
|
||||
private void handleCloseButton() {
|
||||
|
||||
CharSequence contentText = textEditor.getText();
|
||||
CharSequence contentWarning = contentWarningEditor.getText();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user