@@ -17,6 +17,7 @@ import android.net.Uri
17
17
import android.os.Bundle
18
18
import android.os.Environment
19
19
import android.os.Handler
20
+ import android.os.Looper
20
21
import android.provider.MediaStore
21
22
import android.util.DisplayMetrics
22
23
import android.view.Gravity
@@ -26,6 +27,7 @@ import android.view.MotionEvent
26
27
import android.view.View
27
28
import android.widget.PopupMenu
28
29
import android.widget.ToggleButton
30
+ import androidx.activity.OnBackPressedCallback
29
31
import androidx.appcompat.app.AlertDialog
30
32
import androidx.appcompat.app.AppCompatActivity
31
33
import androidx.appcompat.content.res.AppCompatResources
@@ -372,11 +374,11 @@ open class MainActivity : AppCompatActivity(),
372
374
}
373
375
}
374
376
375
- Handler ().post(runnable)
376
- Handler ().postDelayed(runnable, 2000 )
377
- Handler ().postDelayed(runnable, 4000 )
378
- Handler ().postDelayed(runnable, 6000 )
379
- Handler ().postDelayed(runnable, 8000 )
377
+ Handler (Looper .getMainLooper() ).post(runnable)
378
+ Handler (Looper .getMainLooper() ).postDelayed(runnable, 2000 )
379
+ Handler (Looper .getMainLooper() ).postDelayed(runnable, 4000 )
380
+ Handler (Looper .getMainLooper() ).postDelayed(runnable, 6000 )
381
+ Handler (Looper .getMainLooper() ).postDelayed(runnable, 8000 )
380
382
381
383
aztec.visualEditor.refreshText()
382
384
}
@@ -385,6 +387,20 @@ open class MainActivity : AppCompatActivity(),
385
387
super .onCreate(savedInstanceState)
386
388
setContentView(R .layout.activity_main)
387
389
390
+ onBackPressedDispatcher.addCallback(this , object : OnBackPressedCallback (true ) {
391
+ override fun handleOnBackPressed () {
392
+ mIsKeyboardOpen = false
393
+ showActionBarIfNeeded()
394
+
395
+ // Disable the callback temporarily to allow the system to handle the back pressed event. This usage
396
+ // breaks predictive back gesture behavior and should be reviewed before enabling the predictive back
397
+ // gesture feature.
398
+ isEnabled = false
399
+ onBackPressedDispatcher.onBackPressed()
400
+ isEnabled = true
401
+ }
402
+ })
403
+
388
404
// Setup hiding the action bar when the soft keyboard is displayed for narrow viewports
389
405
if (resources.configuration.orientation == Configuration .ORIENTATION_LANDSCAPE
390
406
&& ! resources.getBoolean(R .bool.is_large_tablet_landscape)) {
@@ -477,7 +493,7 @@ open class MainActivity : AppCompatActivity(),
477
493
aztec.initSourceEditorHistory()
478
494
}
479
495
480
- invalidateOptionsHandler = Handler ()
496
+ invalidateOptionsHandler = Handler (Looper .getMainLooper() )
481
497
invalidateOptionsRunnable = Runnable { invalidateOptionsMenu() }
482
498
}
483
499
@@ -511,15 +527,13 @@ open class MainActivity : AppCompatActivity(),
511
527
}
512
528
}
513
529
514
- override fun onRestoreInstanceState (savedInstanceState : Bundle ? ) {
530
+ override fun onRestoreInstanceState (savedInstanceState : Bundle ) {
515
531
super .onRestoreInstanceState(savedInstanceState)
516
532
517
533
aztec.initSourceEditorHistory()
518
534
519
- savedInstanceState?.let {
520
- if (savedInstanceState.getBoolean(" isMediaUploadDialogVisible" )) {
521
- showMediaUploadDialog()
522
- }
535
+ if (savedInstanceState.getBoolean(" isMediaUploadDialogVisible" )) {
536
+ showMediaUploadDialog()
523
537
}
524
538
}
525
539
@@ -577,13 +591,6 @@ open class MainActivity : AppCompatActivity(),
577
591
return false
578
592
}
579
593
580
- override fun onBackPressed () {
581
- mIsKeyboardOpen = false
582
- showActionBarIfNeeded()
583
-
584
- return super .onBackPressed()
585
- }
586
-
587
594
/* *
588
595
* Intercept back button press while soft keyboard is visible.
589
596
*/
@@ -643,6 +650,7 @@ open class MainActivity : AppCompatActivity(),
643
650
val intent = Intent (MediaStore .ACTION_IMAGE_CAPTURE )
644
651
645
652
mediaFile = " wp-" + System .currentTimeMillis() + " .jpg"
653
+ @Suppress(" DEPRECATION" )
646
654
mediaPath = Environment .getExternalStoragePublicDirectory(Environment .DIRECTORY_DCIM ).toString() +
647
655
File .separator + " Camera" + File .separator + mediaFile
648
656
intent.putExtra(MediaStore .EXTRA_OUTPUT , FileProvider .getUriForFile(this ,
0 commit comments