67 lines
2.8 KiB
XML
67 lines
2.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?><!--
|
|
~ This file is part of LSPosed.
|
|
~
|
|
~ LSPosed is free software: you can redistribute it and/or modify
|
|
~ it under the terms of the GNU General Public License as published by
|
|
~ the Free Software Foundation, either version 3 of the License, or
|
|
~ (at your option) any later version.
|
|
~
|
|
~ LSPosed is distributed in the hope that it will be useful,
|
|
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
~ GNU General Public License for more details.
|
|
~
|
|
~ You should have received a copy of the GNU General Public License
|
|
~ along with LSPosed. If not, see <https://www.gnu.org/licenses/>.
|
|
~
|
|
~ Copyright (C) 2020 EdXposed Contributors
|
|
~ Copyright (C) 2021 LSPosed Contributors
|
|
-->
|
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:id="@+id/snackbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
app:consumeSystemWindowsInsets="start|end"
|
|
app:edgeToEdge="true"
|
|
app:fitSystemWindowsInsets="start|end">
|
|
|
|
<rikka.material.widget.AppBarLayout
|
|
android:id="@+id/app_bar"
|
|
style="?appBarStyle"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:fitsSystemWindows="true">
|
|
|
|
<androidx.appcompat.widget.Toolbar
|
|
android:id="@+id/toolbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="?attr/actionBarSize"
|
|
app:subtitleTextAppearance="@android:style/TextAppearance.Material.Widget.Toolbar.Subtitle"
|
|
app:titleTextAppearance="@android:style/TextAppearance.Material.Widget.Toolbar.Title"
|
|
app:popupTheme="?actionBarPopupTheme" />
|
|
|
|
</rikka.material.widget.AppBarLayout>
|
|
|
|
<com.google.android.material.progressindicator.LinearProgressIndicator
|
|
android:id="@+id/progress"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:indeterminate="true"
|
|
android:visibility="gone"
|
|
app:hideAnimationBehavior="outward"
|
|
android:layout_marginTop="?actionBarSize"
|
|
app:layout_fitSystemWindowsInsets="top" />
|
|
|
|
<rikka.widget.borderview.BorderRecyclerView
|
|
android:id="@+id/recyclerView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:clipToPadding="false"
|
|
android:paddingTop="?actionBarSize"
|
|
app:borderTopVisibility="whenTop"
|
|
app:borderTopDrawable="@null"
|
|
app:borderBottomVisibility="never"
|
|
app:fitSystemWindowsInsets="top|bottom" />
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout> |