| 252 | import me.everything.android.ui.overscroll.adapters.RecyclerViewOverScrollDecorAdapter; |
| 253 | |
| 254 | public class FragmentMessages extends FragmentBase |
| 255 | implements SharedPreferences.OnSharedPreferenceChangeListener, FragmentManager.OnBackStackChangedListener { |
| 256 | private ViewGroup view; |
| 257 | private SwipeRefreshLayoutEx swipeRefresh; |
| 258 | private TextView tvAirplane; |
| 259 | private TextView tvNotifications; |
| 260 | private TextView tvBatteryOptimizations; |
| 261 | private TextView tvDataSaver; |
| 262 | private TextView tvVpnActive; |
| 263 | private TextView tvSupport; |
| 264 | private ImageButton ibHintSupport; |
| 265 | private ImageButton ibHintSwipe; |
| 266 | private ImageButton ibHintOutbox; |
| 267 | private ImageButton ibHintSelect; |
| 268 | private ImageButton ibHintJunk; |
| 269 | private TextView tvMod; |
| 270 | private ImageButton ibMotd; |
| 271 | private TextView tvNoEmail; |
| 272 | private TextView tvNoEmailHint; |
| 273 | private FixedRecyclerView rvMessage; |
| 274 | private View vwAnchor; |
| 275 | private SeekBar sbThread; |
| 276 | private ImageButton ibDown; |
| 277 | private ImageButton ibUp; |
| 278 | private ImageButton ibOutbox; |
| 279 | private TextView tvOutboxCount; |
| 280 | private ImageButton ibSeen; |
| 281 | private ImageButton ibUnflagged; |
| 282 | private ImageButton ibSnoozed; |
| 283 | private TextView tvDebug; |
| 284 | private TextViewAutoCompleteAction etSearch; |
| 285 | private BottomNavigationView bottom_navigation; |
| 286 | private ContentLoadingProgressBar pbWait; |
| 287 | private Group grpAirplane; |
| 288 | private Group grpNotifications; |
| 289 | private Group grpBatteryOptimizations; |
| 290 | private Group grpDataSaver; |
| 291 | private Group grpVpnActive; |
| 292 | private Group grpSupport; |
| 293 | private Group grpHintSupport; |
| 294 | private Group grpHintSwipe; |
| 295 | private Group grpHintOutbox; |
| 296 | private Group grpHintSelect; |
| 297 | private Group grpHintJunk; |
| 298 | private Group grpMotd; |
| 299 | private Group grpReady; |
| 300 | private Group grpOutbox; |
| 301 | private FloatingActionButton fabReply; |
| 302 | private FloatingActionButton fabCompose; |
| 303 | private FloatingActionButton fabMore; |
| 304 | private TextView tvSelectedCount; |
| 305 | private CardView cardMore; |
| 306 | private ImageButton ibAnswer; |
| 307 | private ImageButton ibSummarize; |
| 308 | private ImageButton ibBatchSeen; |
| 309 | private ImageButton ibBatchUnseen; |
| 310 | private ImageButton ibBatchSnooze; |
| 311 | private ImageButton ibBatchHide; |
nothing calls this directly
no test coverage detected