DialogFragment.smali
27.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
.class public Landroidx/fragment/app/DialogFragment;
.super Landroidx/fragment/app/Fragment;
.source "DialogFragment.java"
# interfaces
.implements Landroid/content/DialogInterface$OnCancelListener;
.implements Landroid/content/DialogInterface$OnDismissListener;
# static fields
.field private static final SAVED_BACK_STACK_ID:Ljava/lang/String; = "android:backStackId"
.field private static final SAVED_CANCELABLE:Ljava/lang/String; = "android:cancelable"
.field private static final SAVED_DIALOG_STATE_TAG:Ljava/lang/String; = "android:savedDialogState"
.field private static final SAVED_SHOWS_DIALOG:Ljava/lang/String; = "android:showsDialog"
.field private static final SAVED_STYLE:Ljava/lang/String; = "android:style"
.field private static final SAVED_THEME:Ljava/lang/String; = "android:theme"
.field public static final STYLE_NORMAL:I = 0x0
.field public static final STYLE_NO_FRAME:I = 0x2
.field public static final STYLE_NO_INPUT:I = 0x3
.field public static final STYLE_NO_TITLE:I = 0x1
# instance fields
.field mBackStackId:I
.field mCancelable:Z
.field mDialog:Landroid/app/Dialog;
.annotation build Landroidx/annotation/Nullable;
.end annotation
.end field
.field private mDismissRunnable:Ljava/lang/Runnable;
.field mDismissed:Z
.field private mHandler:Landroid/os/Handler;
.field mShownByMe:Z
.field mShowsDialog:Z
.field mStyle:I
.field mTheme:I
.field mViewDestroyed:Z
# direct methods
.method public constructor <init>()V
.locals 1
.line 112
invoke-direct {p0}, Landroidx/fragment/app/Fragment;-><init>()V
.line 93
new-instance v0, Landroidx/fragment/app/DialogFragment$1;
invoke-direct {v0, p0}, Landroidx/fragment/app/DialogFragment$1;-><init>(Landroidx/fragment/app/DialogFragment;)V
iput-object v0, p0, Landroidx/fragment/app/DialogFragment;->mDismissRunnable:Ljava/lang/Runnable;
const/4 v0, 0x0
.line 101
iput v0, p0, Landroidx/fragment/app/DialogFragment;->mStyle:I
.line 102
iput v0, p0, Landroidx/fragment/app/DialogFragment;->mTheme:I
const/4 v0, 0x1
.line 103
iput-boolean v0, p0, Landroidx/fragment/app/DialogFragment;->mCancelable:Z
.line 104
iput-boolean v0, p0, Landroidx/fragment/app/DialogFragment;->mShowsDialog:Z
const/4 v0, -0x1
.line 105
iput v0, p0, Landroidx/fragment/app/DialogFragment;->mBackStackId:I
return-void
.end method
# virtual methods
.method public dismiss()V
.locals 1
const/4 v0, 0x0
.line 202
invoke-virtual {p0, v0, v0}, Landroidx/fragment/app/DialogFragment;->dismissInternal(ZZ)V
return-void
.end method
.method public dismissAllowingStateLoss()V
.locals 2
const/4 v0, 0x1
const/4 v1, 0x0
.line 212
invoke-virtual {p0, v0, v1}, Landroidx/fragment/app/DialogFragment;->dismissInternal(ZZ)V
return-void
.end method
.method dismissInternal(ZZ)V
.locals 3
.line 216
iget-boolean v0, p0, Landroidx/fragment/app/DialogFragment;->mDismissed:Z
if-eqz v0, :cond_0
return-void
:cond_0
const/4 v0, 0x1
.line 219
iput-boolean v0, p0, Landroidx/fragment/app/DialogFragment;->mDismissed:Z
const/4 v1, 0x0
.line 220
iput-boolean v1, p0, Landroidx/fragment/app/DialogFragment;->mShownByMe:Z
.line 221
iget-object v1, p0, Landroidx/fragment/app/DialogFragment;->mDialog:Landroid/app/Dialog;
if-eqz v1, :cond_2
const/4 v2, 0x0
.line 225
invoke-virtual {v1, v2}, Landroid/app/Dialog;->setOnDismissListener(Landroid/content/DialogInterface$OnDismissListener;)V
.line 226
iget-object v1, p0, Landroidx/fragment/app/DialogFragment;->mDialog:Landroid/app/Dialog;
invoke-virtual {v1}, Landroid/app/Dialog;->dismiss()V
if-nez p2, :cond_2
.line 232
invoke-static {}, Landroid/os/Looper;->myLooper()Landroid/os/Looper;
move-result-object p2
iget-object v1, p0, Landroidx/fragment/app/DialogFragment;->mHandler:Landroid/os/Handler;
invoke-virtual {v1}, Landroid/os/Handler;->getLooper()Landroid/os/Looper;
move-result-object v1
if-ne p2, v1, :cond_1
.line 233
iget-object p2, p0, Landroidx/fragment/app/DialogFragment;->mDialog:Landroid/app/Dialog;
invoke-virtual {p0, p2}, Landroidx/fragment/app/DialogFragment;->onDismiss(Landroid/content/DialogInterface;)V
goto :goto_0
.line 235
:cond_1
iget-object p2, p0, Landroidx/fragment/app/DialogFragment;->mHandler:Landroid/os/Handler;
iget-object v1, p0, Landroidx/fragment/app/DialogFragment;->mDismissRunnable:Ljava/lang/Runnable;
invoke-virtual {p2, v1}, Landroid/os/Handler;->post(Ljava/lang/Runnable;)Z
.line 239
:cond_2
:goto_0
iput-boolean v0, p0, Landroidx/fragment/app/DialogFragment;->mViewDestroyed:Z
.line 240
iget p2, p0, Landroidx/fragment/app/DialogFragment;->mBackStackId:I
if-ltz p2, :cond_3
.line 241
invoke-virtual {p0}, Landroidx/fragment/app/DialogFragment;->requireFragmentManager()Landroidx/fragment/app/FragmentManager;
move-result-object p1
iget p2, p0, Landroidx/fragment/app/DialogFragment;->mBackStackId:I
invoke-virtual {p1, p2, v0}, Landroidx/fragment/app/FragmentManager;->popBackStack(II)V
const/4 p1, -0x1
.line 243
iput p1, p0, Landroidx/fragment/app/DialogFragment;->mBackStackId:I
goto :goto_1
.line 245
:cond_3
invoke-virtual {p0}, Landroidx/fragment/app/DialogFragment;->requireFragmentManager()Landroidx/fragment/app/FragmentManager;
move-result-object p2
invoke-virtual {p2}, Landroidx/fragment/app/FragmentManager;->beginTransaction()Landroidx/fragment/app/FragmentTransaction;
move-result-object p2
.line 246
invoke-virtual {p2, p0}, Landroidx/fragment/app/FragmentTransaction;->remove(Landroidx/fragment/app/Fragment;)Landroidx/fragment/app/FragmentTransaction;
if-eqz p1, :cond_4
.line 248
invoke-virtual {p2}, Landroidx/fragment/app/FragmentTransaction;->commitAllowingStateLoss()I
goto :goto_1
.line 250
:cond_4
invoke-virtual {p2}, Landroidx/fragment/app/FragmentTransaction;->commit()I
:goto_1
return-void
.end method
.method public getDialog()Landroid/app/Dialog;
.locals 1
.annotation build Landroidx/annotation/Nullable;
.end annotation
.line 262
iget-object v0, p0, Landroidx/fragment/app/DialogFragment;->mDialog:Landroid/app/Dialog;
return-object v0
.end method
.method public getShowsDialog()Z
.locals 1
.line 332
iget-boolean v0, p0, Landroidx/fragment/app/DialogFragment;->mShowsDialog:Z
return v0
.end method
.method public getTheme()I
.locals 1
.annotation build Landroidx/annotation/StyleRes;
.end annotation
.line 283
iget v0, p0, Landroidx/fragment/app/DialogFragment;->mTheme:I
return v0
.end method
.method public isCancelable()Z
.locals 1
.line 304
iget-boolean v0, p0, Landroidx/fragment/app/DialogFragment;->mCancelable:Z
return v0
.end method
.method public onActivityCreated(Landroid/os/Bundle;)V
.locals 2
.param p1 # Landroid/os/Bundle;
.annotation build Landroidx/annotation/Nullable;
.end annotation
.end param
.line 451
invoke-super {p0, p1}, Landroidx/fragment/app/Fragment;->onActivityCreated(Landroid/os/Bundle;)V
.line 453
iget-boolean v0, p0, Landroidx/fragment/app/DialogFragment;->mShowsDialog:Z
if-nez v0, :cond_0
return-void
.line 457
:cond_0
invoke-virtual {p0}, Landroidx/fragment/app/DialogFragment;->getView()Landroid/view/View;
move-result-object v0
if-eqz v0, :cond_2
.line 459
invoke-virtual {v0}, Landroid/view/View;->getParent()Landroid/view/ViewParent;
move-result-object v1
if-nez v1, :cond_1
.line 463
iget-object v1, p0, Landroidx/fragment/app/DialogFragment;->mDialog:Landroid/app/Dialog;
invoke-virtual {v1, v0}, Landroid/app/Dialog;->setContentView(Landroid/view/View;)V
goto :goto_0
.line 460
:cond_1
new-instance p1, Ljava/lang/IllegalStateException;
const-string v0, "DialogFragment can not be attached to a container view"
invoke-direct {p1, v0}, Ljava/lang/IllegalStateException;-><init>(Ljava/lang/String;)V
throw p1
.line 465
:cond_2
:goto_0
invoke-virtual {p0}, Landroidx/fragment/app/DialogFragment;->getActivity()Landroidx/fragment/app/FragmentActivity;
move-result-object v0
if-eqz v0, :cond_3
.line 467
iget-object v1, p0, Landroidx/fragment/app/DialogFragment;->mDialog:Landroid/app/Dialog;
invoke-virtual {v1, v0}, Landroid/app/Dialog;->setOwnerActivity(Landroid/app/Activity;)V
.line 469
:cond_3
iget-object v0, p0, Landroidx/fragment/app/DialogFragment;->mDialog:Landroid/app/Dialog;
iget-boolean v1, p0, Landroidx/fragment/app/DialogFragment;->mCancelable:Z
invoke-virtual {v0, v1}, Landroid/app/Dialog;->setCancelable(Z)V
.line 470
iget-object v0, p0, Landroidx/fragment/app/DialogFragment;->mDialog:Landroid/app/Dialog;
invoke-virtual {v0, p0}, Landroid/app/Dialog;->setOnCancelListener(Landroid/content/DialogInterface$OnCancelListener;)V
.line 471
iget-object v0, p0, Landroidx/fragment/app/DialogFragment;->mDialog:Landroid/app/Dialog;
invoke-virtual {v0, p0}, Landroid/app/Dialog;->setOnDismissListener(Landroid/content/DialogInterface$OnDismissListener;)V
if-eqz p1, :cond_4
const-string v0, "android:savedDialogState"
.line 473
invoke-virtual {p1, v0}, Landroid/os/Bundle;->getBundle(Ljava/lang/String;)Landroid/os/Bundle;
move-result-object p1
if-eqz p1, :cond_4
.line 475
iget-object v0, p0, Landroidx/fragment/app/DialogFragment;->mDialog:Landroid/app/Dialog;
invoke-virtual {v0, p1}, Landroid/app/Dialog;->onRestoreInstanceState(Landroid/os/Bundle;)V
:cond_4
return-void
.end method
.method public onAttach(Landroid/content/Context;)V
.locals 0
.param p1 # Landroid/content/Context;
.annotation build Landroidx/annotation/NonNull;
.end annotation
.end param
.line 337
invoke-super {p0, p1}, Landroidx/fragment/app/Fragment;->onAttach(Landroid/content/Context;)V
.line 338
iget-boolean p1, p0, Landroidx/fragment/app/DialogFragment;->mShownByMe:Z
if-nez p1, :cond_0
const/4 p1, 0x0
.line 341
iput-boolean p1, p0, Landroidx/fragment/app/DialogFragment;->mDismissed:Z
:cond_0
return-void
.end method
.method public onCancel(Landroid/content/DialogInterface;)V
.locals 0
.param p1 # Landroid/content/DialogInterface;
.annotation build Landroidx/annotation/NonNull;
.end annotation
.end param
return-void
.end method
.method public onCreate(Landroid/os/Bundle;)V
.locals 3
.param p1 # Landroid/os/Bundle;
.annotation build Landroidx/annotation/Nullable;
.end annotation
.end param
.line 358
invoke-super {p0, p1}, Landroidx/fragment/app/Fragment;->onCreate(Landroid/os/Bundle;)V
.line 360
new-instance v0, Landroid/os/Handler;
invoke-direct {v0}, Landroid/os/Handler;-><init>()V
iput-object v0, p0, Landroidx/fragment/app/DialogFragment;->mHandler:Landroid/os/Handler;
.line 362
iget v0, p0, Landroidx/fragment/app/DialogFragment;->mContainerId:I
const/4 v1, 0x1
const/4 v2, 0x0
if-nez v0, :cond_0
move v0, v1
goto :goto_0
:cond_0
move v0, v2
:goto_0
iput-boolean v0, p0, Landroidx/fragment/app/DialogFragment;->mShowsDialog:Z
if-eqz p1, :cond_1
const-string v0, "android:style"
.line 365
invoke-virtual {p1, v0, v2}, Landroid/os/Bundle;->getInt(Ljava/lang/String;I)I
move-result v0
iput v0, p0, Landroidx/fragment/app/DialogFragment;->mStyle:I
const-string v0, "android:theme"
.line 366
invoke-virtual {p1, v0, v2}, Landroid/os/Bundle;->getInt(Ljava/lang/String;I)I
move-result v0
iput v0, p0, Landroidx/fragment/app/DialogFragment;->mTheme:I
const-string v0, "android:cancelable"
.line 367
invoke-virtual {p1, v0, v1}, Landroid/os/Bundle;->getBoolean(Ljava/lang/String;Z)Z
move-result v0
iput-boolean v0, p0, Landroidx/fragment/app/DialogFragment;->mCancelable:Z
.line 368
iget-boolean v0, p0, Landroidx/fragment/app/DialogFragment;->mShowsDialog:Z
const-string v1, "android:showsDialog"
invoke-virtual {p1, v1, v0}, Landroid/os/Bundle;->getBoolean(Ljava/lang/String;Z)Z
move-result v0
iput-boolean v0, p0, Landroidx/fragment/app/DialogFragment;->mShowsDialog:Z
const/4 v0, -0x1
const-string v1, "android:backStackId"
.line 369
invoke-virtual {p1, v1, v0}, Landroid/os/Bundle;->getInt(Ljava/lang/String;I)I
move-result p1
iput p1, p0, Landroidx/fragment/app/DialogFragment;->mBackStackId:I
:cond_1
return-void
.end method
.method public onCreateDialog(Landroid/os/Bundle;)Landroid/app/Dialog;
.locals 2
.param p1 # Landroid/os/Bundle;
.annotation build Landroidx/annotation/Nullable;
.end annotation
.end param
.annotation build Landroidx/annotation/NonNull;
.end annotation
.line 431
new-instance p1, Landroid/app/Dialog;
invoke-virtual {p0}, Landroidx/fragment/app/DialogFragment;->requireContext()Landroid/content/Context;
move-result-object v0
invoke-virtual {p0}, Landroidx/fragment/app/DialogFragment;->getTheme()I
move-result v1
invoke-direct {p1, v0, v1}, Landroid/app/Dialog;-><init>(Landroid/content/Context;I)V
return-object p1
.end method
.method public onDestroyView()V
.locals 2
.line 529
invoke-super {p0}, Landroidx/fragment/app/Fragment;->onDestroyView()V
.line 530
iget-object v0, p0, Landroidx/fragment/app/DialogFragment;->mDialog:Landroid/app/Dialog;
if-eqz v0, :cond_1
const/4 v1, 0x1
.line 534
iput-boolean v1, p0, Landroidx/fragment/app/DialogFragment;->mViewDestroyed:Z
const/4 v1, 0x0
.line 538
invoke-virtual {v0, v1}, Landroid/app/Dialog;->setOnDismissListener(Landroid/content/DialogInterface$OnDismissListener;)V
.line 539
iget-object v0, p0, Landroidx/fragment/app/DialogFragment;->mDialog:Landroid/app/Dialog;
invoke-virtual {v0}, Landroid/app/Dialog;->dismiss()V
.line 540
iget-boolean v0, p0, Landroidx/fragment/app/DialogFragment;->mDismissed:Z
if-nez v0, :cond_0
.line 543
iget-object v0, p0, Landroidx/fragment/app/DialogFragment;->mDialog:Landroid/app/Dialog;
invoke-virtual {p0, v0}, Landroidx/fragment/app/DialogFragment;->onDismiss(Landroid/content/DialogInterface;)V
.line 545
:cond_0
iput-object v1, p0, Landroidx/fragment/app/DialogFragment;->mDialog:Landroid/app/Dialog;
:cond_1
return-void
.end method
.method public onDetach()V
.locals 1
.line 347
invoke-super {p0}, Landroidx/fragment/app/Fragment;->onDetach()V
.line 348
iget-boolean v0, p0, Landroidx/fragment/app/DialogFragment;->mShownByMe:Z
if-nez v0, :cond_0
iget-boolean v0, p0, Landroidx/fragment/app/DialogFragment;->mDismissed:Z
if-nez v0, :cond_0
const/4 v0, 0x1
.line 352
iput-boolean v0, p0, Landroidx/fragment/app/DialogFragment;->mDismissed:Z
:cond_0
return-void
.end method
.method public onDismiss(Landroid/content/DialogInterface;)V
.locals 0
.param p1 # Landroid/content/DialogInterface;
.annotation build Landroidx/annotation/NonNull;
.end annotation
.end param
.line 440
iget-boolean p1, p0, Landroidx/fragment/app/DialogFragment;->mViewDestroyed:Z
if-nez p1, :cond_0
const/4 p1, 0x1
.line 445
invoke-virtual {p0, p1, p1}, Landroidx/fragment/app/DialogFragment;->dismissInternal(ZZ)V
:cond_0
return-void
.end method
.method public onGetLayoutInflater(Landroid/os/Bundle;)Landroid/view/LayoutInflater;
.locals 2
.param p1 # Landroid/os/Bundle;
.annotation build Landroidx/annotation/Nullable;
.end annotation
.end param
.annotation build Landroidx/annotation/NonNull;
.end annotation
.line 376
iget-boolean v0, p0, Landroidx/fragment/app/DialogFragment;->mShowsDialog:Z
if-nez v0, :cond_0
.line 377
invoke-super {p0, p1}, Landroidx/fragment/app/Fragment;->onGetLayoutInflater(Landroid/os/Bundle;)Landroid/view/LayoutInflater;
move-result-object p1
return-object p1
.line 380
:cond_0
invoke-virtual {p0, p1}, Landroidx/fragment/app/DialogFragment;->onCreateDialog(Landroid/os/Bundle;)Landroid/app/Dialog;
move-result-object p1
iput-object p1, p0, Landroidx/fragment/app/DialogFragment;->mDialog:Landroid/app/Dialog;
.line 382
iget-object p1, p0, Landroidx/fragment/app/DialogFragment;->mDialog:Landroid/app/Dialog;
const-string v0, "layout_inflater"
if-eqz p1, :cond_1
.line 383
iget v1, p0, Landroidx/fragment/app/DialogFragment;->mStyle:I
invoke-virtual {p0, p1, v1}, Landroidx/fragment/app/DialogFragment;->setupDialog(Landroid/app/Dialog;I)V
.line 385
iget-object p1, p0, Landroidx/fragment/app/DialogFragment;->mDialog:Landroid/app/Dialog;
invoke-virtual {p1}, Landroid/app/Dialog;->getContext()Landroid/content/Context;
move-result-object p1
invoke-virtual {p1, v0}, Landroid/content/Context;->getSystemService(Ljava/lang/String;)Ljava/lang/Object;
move-result-object p1
check-cast p1, Landroid/view/LayoutInflater;
return-object p1
.line 388
:cond_1
iget-object p1, p0, Landroidx/fragment/app/DialogFragment;->mHost:Landroidx/fragment/app/FragmentHostCallback;
invoke-virtual {p1}, Landroidx/fragment/app/FragmentHostCallback;->getContext()Landroid/content/Context;
move-result-object p1
invoke-virtual {p1, v0}, Landroid/content/Context;->getSystemService(Ljava/lang/String;)Ljava/lang/Object;
move-result-object p1
check-cast p1, Landroid/view/LayoutInflater;
return-object p1
.end method
.method public onSaveInstanceState(Landroid/os/Bundle;)V
.locals 2
.param p1 # Landroid/os/Bundle;
.annotation build Landroidx/annotation/NonNull;
.end annotation
.end param
.line 492
invoke-super {p0, p1}, Landroidx/fragment/app/Fragment;->onSaveInstanceState(Landroid/os/Bundle;)V
.line 493
iget-object v0, p0, Landroidx/fragment/app/DialogFragment;->mDialog:Landroid/app/Dialog;
if-eqz v0, :cond_0
.line 494
invoke-virtual {v0}, Landroid/app/Dialog;->onSaveInstanceState()Landroid/os/Bundle;
move-result-object v0
if-eqz v0, :cond_0
const-string v1, "android:savedDialogState"
.line 496
invoke-virtual {p1, v1, v0}, Landroid/os/Bundle;->putBundle(Ljava/lang/String;Landroid/os/Bundle;)V
.line 499
:cond_0
iget v0, p0, Landroidx/fragment/app/DialogFragment;->mStyle:I
if-eqz v0, :cond_1
const-string v1, "android:style"
.line 500
invoke-virtual {p1, v1, v0}, Landroid/os/Bundle;->putInt(Ljava/lang/String;I)V
.line 502
:cond_1
iget v0, p0, Landroidx/fragment/app/DialogFragment;->mTheme:I
if-eqz v0, :cond_2
const-string v1, "android:theme"
.line 503
invoke-virtual {p1, v1, v0}, Landroid/os/Bundle;->putInt(Ljava/lang/String;I)V
.line 505
:cond_2
iget-boolean v0, p0, Landroidx/fragment/app/DialogFragment;->mCancelable:Z
if-nez v0, :cond_3
const-string v1, "android:cancelable"
.line 506
invoke-virtual {p1, v1, v0}, Landroid/os/Bundle;->putBoolean(Ljava/lang/String;Z)V
.line 508
:cond_3
iget-boolean v0, p0, Landroidx/fragment/app/DialogFragment;->mShowsDialog:Z
if-nez v0, :cond_4
const-string v1, "android:showsDialog"
.line 509
invoke-virtual {p1, v1, v0}, Landroid/os/Bundle;->putBoolean(Ljava/lang/String;Z)V
.line 511
:cond_4
iget v0, p0, Landroidx/fragment/app/DialogFragment;->mBackStackId:I
const/4 v1, -0x1
if-eq v0, v1, :cond_5
const-string v1, "android:backStackId"
.line 512
invoke-virtual {p1, v1, v0}, Landroid/os/Bundle;->putInt(Ljava/lang/String;I)V
:cond_5
return-void
.end method
.method public onStart()V
.locals 2
.line 482
invoke-super {p0}, Landroidx/fragment/app/Fragment;->onStart()V
.line 484
iget-object v0, p0, Landroidx/fragment/app/DialogFragment;->mDialog:Landroid/app/Dialog;
if-eqz v0, :cond_0
const/4 v1, 0x0
.line 485
iput-boolean v1, p0, Landroidx/fragment/app/DialogFragment;->mViewDestroyed:Z
.line 486
invoke-virtual {v0}, Landroid/app/Dialog;->show()V
:cond_0
return-void
.end method
.method public onStop()V
.locals 1
.line 518
invoke-super {p0}, Landroidx/fragment/app/Fragment;->onStop()V
.line 519
iget-object v0, p0, Landroidx/fragment/app/DialogFragment;->mDialog:Landroid/app/Dialog;
if-eqz v0, :cond_0
.line 520
invoke-virtual {v0}, Landroid/app/Dialog;->hide()V
:cond_0
return-void
.end method
.method public final requireDialog()Landroid/app/Dialog;
.locals 3
.annotation build Landroidx/annotation/NonNull;
.end annotation
.line 274
invoke-virtual {p0}, Landroidx/fragment/app/DialogFragment;->getDialog()Landroid/app/Dialog;
move-result-object v0
if-eqz v0, :cond_0
return-object v0
.line 276
:cond_0
new-instance v0, Ljava/lang/IllegalStateException;
new-instance v1, Ljava/lang/StringBuilder;
invoke-direct {v1}, Ljava/lang/StringBuilder;-><init>()V
const-string v2, "DialogFragment "
invoke-virtual {v1, v2}, Ljava/lang/StringBuilder;->append(Ljava/lang/String;)Ljava/lang/StringBuilder;
invoke-virtual {v1, p0}, Ljava/lang/StringBuilder;->append(Ljava/lang/Object;)Ljava/lang/StringBuilder;
const-string v2, " does not have a Dialog."
invoke-virtual {v1, v2}, Ljava/lang/StringBuilder;->append(Ljava/lang/String;)Ljava/lang/StringBuilder;
invoke-virtual {v1}, Ljava/lang/StringBuilder;->toString()Ljava/lang/String;
move-result-object v1
invoke-direct {v0, v1}, Ljava/lang/IllegalStateException;-><init>(Ljava/lang/String;)V
throw v0
.end method
.method public setCancelable(Z)V
.locals 1
.line 296
iput-boolean p1, p0, Landroidx/fragment/app/DialogFragment;->mCancelable:Z
.line 297
iget-object v0, p0, Landroidx/fragment/app/DialogFragment;->mDialog:Landroid/app/Dialog;
if-eqz v0, :cond_0
invoke-virtual {v0, p1}, Landroid/app/Dialog;->setCancelable(Z)V
:cond_0
return-void
.end method
.method public setShowsDialog(Z)V
.locals 0
.line 325
iput-boolean p1, p0, Landroidx/fragment/app/DialogFragment;->mShowsDialog:Z
return-void
.end method
.method public setStyle(II)V
.locals 1
.param p2 # I
.annotation build Landroidx/annotation/StyleRes;
.end annotation
.end param
.line 130
iput p1, p0, Landroidx/fragment/app/DialogFragment;->mStyle:I
.line 131
iget p1, p0, Landroidx/fragment/app/DialogFragment;->mStyle:I
const/4 v0, 0x2
if-eq p1, v0, :cond_0
const/4 v0, 0x3
if-ne p1, v0, :cond_1
:cond_0
const p1, 0x1030059
.line 132
iput p1, p0, Landroidx/fragment/app/DialogFragment;->mTheme:I
:cond_1
if-eqz p2, :cond_2
.line 135
iput p2, p0, Landroidx/fragment/app/DialogFragment;->mTheme:I
:cond_2
return-void
.end method
.method public setupDialog(Landroid/app/Dialog;I)V
.locals 2
.param p1 # Landroid/app/Dialog;
.annotation build Landroidx/annotation/NonNull;
.end annotation
.end param
.annotation build Landroidx/annotation/RestrictTo;
value = {
.enum Landroidx/annotation/RestrictTo$Scope;->LIBRARY_GROUP_PREFIX:Landroidx/annotation/RestrictTo$Scope;
}
.end annotation
const/4 v0, 0x1
if-eq p2, v0, :cond_1
const/4 v1, 0x2
if-eq p2, v1, :cond_1
const/4 v1, 0x3
if-eq p2, v1, :cond_0
goto :goto_0
.line 397
:cond_0
invoke-virtual {p1}, Landroid/app/Dialog;->getWindow()Landroid/view/Window;
move-result-object p2
const/16 v1, 0x18
invoke-virtual {p2, v1}, Landroid/view/Window;->addFlags(I)V
.line 403
:cond_1
invoke-virtual {p1, v0}, Landroid/app/Dialog;->requestWindowFeature(I)Z
:goto_0
return-void
.end method
.method public show(Landroidx/fragment/app/FragmentTransaction;Ljava/lang/String;)I
.locals 2
.param p1 # Landroidx/fragment/app/FragmentTransaction;
.annotation build Landroidx/annotation/NonNull;
.end annotation
.end param
.param p2 # Ljava/lang/String;
.annotation build Landroidx/annotation/Nullable;
.end annotation
.end param
const/4 v0, 0x0
.line 168
iput-boolean v0, p0, Landroidx/fragment/app/DialogFragment;->mDismissed:Z
const/4 v1, 0x1
.line 169
iput-boolean v1, p0, Landroidx/fragment/app/DialogFragment;->mShownByMe:Z
.line 170
invoke-virtual {p1, p0, p2}, Landroidx/fragment/app/FragmentTransaction;->add(Landroidx/fragment/app/Fragment;Ljava/lang/String;)Landroidx/fragment/app/FragmentTransaction;
.line 171
iput-boolean v0, p0, Landroidx/fragment/app/DialogFragment;->mViewDestroyed:Z
.line 172
invoke-virtual {p1}, Landroidx/fragment/app/FragmentTransaction;->commit()I
move-result p1
iput p1, p0, Landroidx/fragment/app/DialogFragment;->mBackStackId:I
.line 173
iget p1, p0, Landroidx/fragment/app/DialogFragment;->mBackStackId:I
return p1
.end method
.method public show(Landroidx/fragment/app/FragmentManager;Ljava/lang/String;)V
.locals 1
.param p1 # Landroidx/fragment/app/FragmentManager;
.annotation build Landroidx/annotation/NonNull;
.end annotation
.end param
.param p2 # Ljava/lang/String;
.annotation build Landroidx/annotation/Nullable;
.end annotation
.end param
const/4 v0, 0x0
.line 151
iput-boolean v0, p0, Landroidx/fragment/app/DialogFragment;->mDismissed:Z
const/4 v0, 0x1
.line 152
iput-boolean v0, p0, Landroidx/fragment/app/DialogFragment;->mShownByMe:Z
.line 153
invoke-virtual {p1}, Landroidx/fragment/app/FragmentManager;->beginTransaction()Landroidx/fragment/app/FragmentTransaction;
move-result-object p1
.line 154
invoke-virtual {p1, p0, p2}, Landroidx/fragment/app/FragmentTransaction;->add(Landroidx/fragment/app/Fragment;Ljava/lang/String;)Landroidx/fragment/app/FragmentTransaction;
.line 155
invoke-virtual {p1}, Landroidx/fragment/app/FragmentTransaction;->commit()I
return-void
.end method
.method public showNow(Landroidx/fragment/app/FragmentManager;Ljava/lang/String;)V
.locals 1
.param p1 # Landroidx/fragment/app/FragmentManager;
.annotation build Landroidx/annotation/NonNull;
.end annotation
.end param
.param p2 # Ljava/lang/String;
.annotation build Landroidx/annotation/Nullable;
.end annotation
.end param
const/4 v0, 0x0
.line 188
iput-boolean v0, p0, Landroidx/fragment/app/DialogFragment;->mDismissed:Z
const/4 v0, 0x1
.line 189
iput-boolean v0, p0, Landroidx/fragment/app/DialogFragment;->mShownByMe:Z
.line 190
invoke-virtual {p1}, Landroidx/fragment/app/FragmentManager;->beginTransaction()Landroidx/fragment/app/FragmentTransaction;
move-result-object p1
.line 191
invoke-virtual {p1, p0, p2}, Landroidx/fragment/app/FragmentTransaction;->add(Landroidx/fragment/app/Fragment;Ljava/lang/String;)Landroidx/fragment/app/FragmentTransaction;
.line 192
invoke-virtual {p1}, Landroidx/fragment/app/FragmentTransaction;->commitNow()V
return-void
.end method