Skip to content

Commit de704dd

Browse files
committed
禁用 TV Activity 的预测性返回手势
因为会导致返回键事件方面出现冲突,并且该特性在 Android TV 上也毫无疑义
1 parent 12cdae5 commit de704dd

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

app/src/main/AndroidManifest.xml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,121 +33,145 @@
3333
tools:ignore="UnusedAttribute">
3434
<activity
3535
android:name=".activities.user.UserLockSettingsActivity"
36+
android:enableOnBackInvokedCallback="false"
3637
android:exported="true"
3738
android:label="@string/title_activity_user_lock_settings"
3839
android:theme="@style/Theme.BV" />
3940
<activity
4041
android:name=".activities.video.RemoteControllerPanelDemoActivity"
42+
android:enableOnBackInvokedCallback="false"
4143
android:exported="false"
4244
android:label="@string/title_activity_remote_controller_panel_demo"
4345
android:theme="@style/Theme.BV" />
4446
<activity
4547
android:name=".activities.settings.LogsActivity"
48+
android:enableOnBackInvokedCallback="false"
4649
android:exported="false"
4750
android:label="@string/title_activity_logs"
4851
android:theme="@style/Theme.BV" />
4952
<activity
5053
android:name=".activities.user.UserSwitchActivity"
54+
android:enableOnBackInvokedCallback="false"
5155
android:exported="true"
5256
android:label="@string/title_activity_user_switch"
5357
android:theme="@style/Theme.BV" />
5458
<activity
5559
android:name=".activities.settings.MediaCodecActivity"
60+
android:enableOnBackInvokedCallback="false"
5661
android:exported="true"
5762
android:label="@string/title_activity_media_codec"
5863
android:theme="@style/Theme.BV" />
5964
<activity
6065
android:name=".activities.video.VideoPlayerV3Activity"
66+
android:enableOnBackInvokedCallback="false"
6167
android:exported="true"
6268
android:label="@string/title_activity_video_player_v3"
6369
android:theme="@style/Theme.BV" />
6470
<activity
6571
android:name=".activities.video.TagActivity"
72+
android:enableOnBackInvokedCallback="false"
6673
android:exported="false"
6774
android:label="@string/title_activity_tag"
6875
android:theme="@style/Theme.BV" />
6976
<activity
7077
android:name=".activities.pgc.PgcIndexActivity"
78+
android:enableOnBackInvokedCallback="false"
7179
android:exported="false"
7280
android:label="@string/title_activity_pgc_index"
7381
android:theme="@style/Theme.BV" />
7482
<activity
7583
android:name=".activities.user.FollowingSeasonActivity"
84+
android:enableOnBackInvokedCallback="false"
7685
android:exported="false"
7786
android:label="@string/title_activity_following_season"
7887
android:theme="@style/Theme.BV" />
7988
<activity
8089
android:name=".activities.pgc.anime.AnimeTimelineActivity"
90+
android:enableOnBackInvokedCallback="false"
8191
android:exported="false"
8292
android:label="@string/title_activity_anime_timeline"
8393
android:theme="@style/Theme.BV" />
8494
<activity
8595
android:name=".activities.search.SearchResultActivity"
96+
android:enableOnBackInvokedCallback="false"
8697
android:exported="false"
8798
android:label="@string/title_activity_search_result"
8899
android:theme="@style/Theme.BV" />
89100
<activity
90101
android:name=".activities.search.SearchInputActivity"
102+
android:enableOnBackInvokedCallback="false"
91103
android:exported="false"
92104
android:label="@string/title_activity_search_input"
93105
android:theme="@style/Theme.BV" />
94106
<activity
95107
android:name=".activities.user.FollowActivity"
108+
android:enableOnBackInvokedCallback="false"
96109
android:exported="false"
97110
android:label="@string/title_activity_follow"
98111
android:theme="@style/Theme.BV" />
99112
<activity
100113
android:name=".activities.video.SeasonInfoActivity"
114+
android:enableOnBackInvokedCallback="false"
101115
android:exported="false"
102116
android:label="@string/title_activity_season_info"
103117
android:theme="@style/Theme.BV" />
104118
<activity
105119
android:name=".activities.settings.SpeedTestActivity"
120+
android:enableOnBackInvokedCallback="false"
106121
android:exported="false"
107122
android:label="@string/title_activity_speed_test"
108123
android:theme="@style/Theme.BV" />
109124
<activity
110125
android:name=".activities.user.FavoriteActivity"
126+
android:enableOnBackInvokedCallback="false"
111127
android:exported="false"
112128
android:label="@string/title_activity_favorite"
113129
android:theme="@style/Theme.BV" />
114130
<activity
115131
android:name=".activities.video.VideoPlayerActivity"
132+
android:enableOnBackInvokedCallback="false"
116133
android:exported="false"
117134
android:label="@string/title_activity_video_player"
118135
android:theme="@style/Theme.BV" />
119136
<activity
120137
android:name=".activities.video.UpInfoActivity"
138+
android:enableOnBackInvokedCallback="false"
121139
android:exported="false"
122140
android:label="@string/title_activity_up_info"
123141
android:theme="@style/Theme.BV" />
124142
<activity
125143
android:name=".activities.settings.SettingsActivity"
144+
android:enableOnBackInvokedCallback="false"
126145
android:exported="false"
127146
android:label="@string/title_activity_settings"
128147
android:theme="@style/Theme.BV" />
129148
<activity
130149
android:name=".activities.user.HistoryActivity"
150+
android:enableOnBackInvokedCallback="false"
131151
android:exported="false"
132152
android:label="@string/title_activity_history"
133153
android:theme="@style/Theme.BV" />
134154
<activity
135155
android:name=".activities.user.ToViewActivity"
156+
android:enableOnBackInvokedCallback="false"
136157
android:exported="false"
137158
android:label="@string/title_activity_toview"
138159
android:theme="@style/Theme.BV" />
139160
<activity
140161
android:name=".activities.user.UserInfoActivity"
162+
android:enableOnBackInvokedCallback="false"
141163
android:exported="false"
142164
android:label="@string/title_activity_user_info"
143165
android:theme="@style/Theme.BV" />
144166
<activity
145167
android:name=".activities.user.LoginActivity"
168+
android:enableOnBackInvokedCallback="false"
146169
android:exported="false"
147170
android:label="@string/title_activity_login"
148171
android:theme="@style/Theme.BV" />
149172
<activity
150173
android:name=".activities.video.VideoInfoActivity"
174+
android:enableOnBackInvokedCallback="false"
151175
android:exported="false"
152176
android:label="@string/title_activity_video_info"
153177
android:theme="@style/Theme.BV" />

0 commit comments

Comments
 (0)