2019-10-03 15:31:45 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<layout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
|
|
|
|
<data>
|
|
|
|
|
2019-10-07 18:09:12 +00:00
|
|
|
<import type="com.topjohnwu.magisk.Info" />
|
|
|
|
|
|
|
|
<import type="com.topjohnwu.magisk.BuildConfig" />
|
|
|
|
|
2019-10-04 17:36:26 +00:00
|
|
|
<import type="com.topjohnwu.magisk.ui.home.MagiskState" />
|
|
|
|
|
2019-10-03 15:31:45 +00:00
|
|
|
<variable
|
|
|
|
name="viewModel"
|
|
|
|
type="com.topjohnwu.magisk.redesign.home.HomeViewModel" />
|
|
|
|
|
|
|
|
</data>
|
|
|
|
|
|
|
|
<androidx.core.widget.NestedScrollView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:clipToPadding="false"
|
2019-10-05 10:53:40 +00:00
|
|
|
android:paddingStart="@dimen/l1"
|
2019-10-05 20:51:21 +00:00
|
|
|
android:paddingTop="@{viewModel.insets.top + (int) @dimen/internal_action_bar_size + (int) @dimen/l1}"
|
2019-10-05 10:53:40 +00:00
|
|
|
android:paddingEnd="@dimen/l1"
|
2019-10-07 18:09:12 +00:00
|
|
|
android:paddingBottom="@{viewModel.insets.bottom + (int) @dimen/margin_fab + (int) @dimen/l1}"
|
2019-10-03 15:31:45 +00:00
|
|
|
tools:layout_marginTop="24dp">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingTop="@dimen/l1">
|
|
|
|
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
|
android:id="@+id/home_magisk_wrapper"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
2019-10-04 17:36:26 +00:00
|
|
|
android:animateLayoutChanges="true"
|
2019-10-04 17:57:27 +00:00
|
|
|
android:paddingStart="@dimen/l1"
|
|
|
|
android:paddingEnd="@dimen/l1"
|
2019-10-03 15:31:45 +00:00
|
|
|
app:layout_constraintEnd_toStartOf="@+id/home_manager_wrapper"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent">
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
2019-10-04 16:03:06 +00:00
|
|
|
android:id="@+id/home_magisk_icon"
|
2019-10-03 17:08:35 +00:00
|
|
|
style="?styleIconPrimary"
|
2019-10-04 17:36:26 +00:00
|
|
|
isEnabled="@{viewModel.stateMagisk != MagiskState.LOADING}"
|
2019-10-04 15:12:28 +00:00
|
|
|
onSelectClick="@{() -> viewModel.onDeletePressed()}"
|
2019-10-04 17:57:27 +00:00
|
|
|
onSelectReset="@{7000L}"
|
2019-10-04 15:56:30 +00:00
|
|
|
android:padding="@dimen/l_25"
|
2019-10-04 17:57:27 +00:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
2019-10-03 15:31:45 +00:00
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
2019-10-04 15:12:28 +00:00
|
|
|
app:srcCompat="@drawable/ic_magisk_delete"
|
|
|
|
app:tint="@color/color_primary_delete_transient" />
|
2019-10-03 15:31:45 +00:00
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
2019-10-04 16:03:06 +00:00
|
|
|
android:id="@+id/home_magisk_title"
|
2019-10-03 15:31:45 +00:00
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
2019-10-04 17:57:27 +00:00
|
|
|
android:layout_marginTop="@dimen/l1"
|
|
|
|
android:gravity="center"
|
2019-10-05 09:13:57 +00:00
|
|
|
android:text="@string/magisk"
|
2019-10-03 15:31:45 +00:00
|
|
|
android:textAppearance="?appearanceTextTitleNormal"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
2019-10-04 17:57:27 +00:00
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/home_magisk_icon" />
|
2019-10-03 15:31:45 +00:00
|
|
|
|
2019-10-04 15:56:30 +00:00
|
|
|
<TextSwitcher
|
2019-10-04 16:03:06 +00:00
|
|
|
android:id="@+id/home_magisk_status"
|
2019-10-04 15:56:30 +00:00
|
|
|
textCaptionVariant="@{viewModel.stateTextMagisk}"
|
2019-10-03 15:31:45 +00:00
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
2019-10-04 16:03:06 +00:00
|
|
|
app:layout_constraintEnd_toEndOf="@+id/home_magisk_title"
|
|
|
|
app:layout_constraintStart_toStartOf="@+id/home_magisk_title"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/home_magisk_title" />
|
2019-10-03 15:31:45 +00:00
|
|
|
|
2019-10-07 18:09:12 +00:00
|
|
|
<TextSwitcher
|
|
|
|
android:id="@+id/home_magisk_version"
|
|
|
|
textCaptionVariant="@{viewModel.stateVersionUpdateMagisk}"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
app:layout_constraintEnd_toEndOf="@+id/home_magisk_title"
|
|
|
|
app:layout_constraintStart_toStartOf="@+id/home_magisk_title"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/home_magisk_status" />
|
|
|
|
|
2019-10-03 15:31:45 +00:00
|
|
|
<FrameLayout
|
2019-10-06 10:06:09 +00:00
|
|
|
gone="@{viewModel.stateMagisk == MagiskState.LOADING || !viewModel.isConnected}"
|
2019-10-03 15:31:45 +00:00
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="@dimen/l1"
|
2019-10-04 17:36:26 +00:00
|
|
|
android:animateLayoutChanges="true"
|
2019-10-03 15:31:45 +00:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2019-10-07 18:09:12 +00:00
|
|
|
app:layout_constraintTop_toBottomOf="@+id/home_magisk_version">
|
2019-10-03 15:31:45 +00:00
|
|
|
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
style="?styleButtonDefault"
|
2019-10-04 17:36:26 +00:00
|
|
|
gone="@{viewModel.stateMagisk != MagiskState.OBSOLETE}"
|
2019-10-04 17:57:27 +00:00
|
|
|
android:layout_width="wrap_content"
|
2019-10-03 15:31:45 +00:00
|
|
|
android:layout_height="wrap_content"
|
2019-10-04 17:57:27 +00:00
|
|
|
android:layout_gravity="center"
|
2019-10-03 15:31:45 +00:00
|
|
|
android:text="@string/update"
|
|
|
|
app:icon="@drawable/ic_update_md2"
|
|
|
|
app:iconGravity="textEnd"
|
|
|
|
app:iconPadding="@dimen/l_50"
|
|
|
|
app:iconSize="18dp"
|
|
|
|
tools:visibility="gone" />
|
|
|
|
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
style="?styleButtonText"
|
2019-10-04 17:36:26 +00:00
|
|
|
gone="@{viewModel.stateMagisk == MagiskState.OBSOLETE}"
|
2019-10-04 17:57:27 +00:00
|
|
|
android:layout_width="wrap_content"
|
2019-10-03 15:31:45 +00:00
|
|
|
android:layout_height="wrap_content"
|
2019-10-04 17:57:27 +00:00
|
|
|
android:layout_gravity="center"
|
2019-10-03 15:31:45 +00:00
|
|
|
android:text="@string/install"
|
|
|
|
app:icon="@drawable/ic_install"
|
|
|
|
app:iconGravity="textEnd"
|
|
|
|
app:iconPadding="@dimen/l_50"
|
|
|
|
app:iconSize="18dp" />
|
|
|
|
|
|
|
|
</FrameLayout>
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
|
2019-10-04 17:57:27 +00:00
|
|
|
<View
|
|
|
|
android:layout_width="1dp"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_marginTop="@dimen/l2"
|
|
|
|
android:layout_marginBottom="@dimen/l2"
|
|
|
|
android:background="?colorSurfaceVariant"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toStartOf="@+id/home_manager_wrapper"
|
|
|
|
app:layout_constraintStart_toEndOf="@+id/home_magisk_wrapper"
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
2019-10-03 15:31:45 +00:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
|
android:id="@+id/home_manager_wrapper"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="@dimen/l1"
|
2019-10-04 17:57:27 +00:00
|
|
|
android:paddingStart="@dimen/l1"
|
|
|
|
android:paddingEnd="@dimen/l1"
|
2019-10-03 15:31:45 +00:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toEndOf="@+id/home_magisk_wrapper"
|
|
|
|
app:layout_constraintTop_toTopOf="parent">
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
2019-10-04 16:03:06 +00:00
|
|
|
android:id="@+id/home_manager_icon"
|
2019-10-03 17:08:35 +00:00
|
|
|
style="?styleIconPrimary"
|
|
|
|
android:padding="@dimen/l_50"
|
2019-10-04 17:57:27 +00:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
2019-10-03 15:31:45 +00:00
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
2019-10-03 17:08:35 +00:00
|
|
|
app:srcCompat="@drawable/ic_manager" />
|
2019-10-03 15:31:45 +00:00
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
2019-10-04 16:03:06 +00:00
|
|
|
android:id="@+id/home_manager_title"
|
2019-10-03 15:31:45 +00:00
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
2019-10-04 17:57:27 +00:00
|
|
|
android:layout_marginTop="@dimen/l1"
|
|
|
|
android:gravity="center"
|
2019-10-06 10:06:09 +00:00
|
|
|
android:text="@{viewModel.stateHideManagerName}"
|
2019-10-03 15:31:45 +00:00
|
|
|
android:textAppearance="?appearanceTextTitleNormal"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
2019-10-04 17:57:27 +00:00
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2019-10-06 10:06:09 +00:00
|
|
|
app:layout_constraintTop_toBottomOf="@+id/home_manager_icon"
|
|
|
|
tools:text="@string/manager" />
|
2019-10-03 15:31:45 +00:00
|
|
|
|
2019-10-04 15:56:30 +00:00
|
|
|
<TextSwitcher
|
2019-10-04 16:03:06 +00:00
|
|
|
android:id="@+id/home_manager_status"
|
2019-10-04 15:56:30 +00:00
|
|
|
textCaptionVariant="@{viewModel.stateTextManager}"
|
2019-10-03 15:31:45 +00:00
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
2019-10-04 16:03:06 +00:00
|
|
|
app:layout_constraintEnd_toEndOf="@+id/home_manager_title"
|
|
|
|
app:layout_constraintStart_toStartOf="@+id/home_manager_title"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/home_manager_title" />
|
2019-10-03 15:31:45 +00:00
|
|
|
|
2019-10-07 18:09:12 +00:00
|
|
|
<TextSwitcher
|
|
|
|
android:id="@+id/home_manager_version"
|
|
|
|
textCaptionVariant="@{viewModel.stateVersionUpdateManager}"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
app:layout_constraintEnd_toEndOf="@+id/home_manager_title"
|
|
|
|
app:layout_constraintStart_toStartOf="@+id/home_manager_title"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/home_manager_status" />
|
|
|
|
|
2019-10-03 15:31:45 +00:00
|
|
|
<FrameLayout
|
2019-10-06 10:06:09 +00:00
|
|
|
gone="@{viewModel.stateManager == MagiskState.LOADING || !viewModel.isConnected}"
|
2019-10-03 15:31:45 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="@dimen/l1"
|
2019-10-07 18:09:12 +00:00
|
|
|
app:layout_constraintTop_toBottomOf="@+id/home_manager_version">
|
2019-10-03 15:31:45 +00:00
|
|
|
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
style="?styleButtonDefault"
|
2019-10-04 17:57:27 +00:00
|
|
|
gone="@{viewModel.stateManager != MagiskState.OBSOLETE}"
|
|
|
|
android:layout_width="wrap_content"
|
2019-10-03 15:31:45 +00:00
|
|
|
android:layout_height="wrap_content"
|
2019-10-04 17:57:27 +00:00
|
|
|
android:layout_gravity="center"
|
2019-10-03 15:31:45 +00:00
|
|
|
android:text="@string/update"
|
|
|
|
app:icon="@drawable/ic_update_md2"
|
|
|
|
app:iconGravity="textEnd"
|
|
|
|
app:iconPadding="@dimen/l_50"
|
|
|
|
app:iconSize="18dp" />
|
|
|
|
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
style="?styleButtonText"
|
2019-10-04 17:57:27 +00:00
|
|
|
gone="@{viewModel.stateManager == MagiskState.OBSOLETE}"
|
|
|
|
android:layout_width="wrap_content"
|
2019-10-03 15:31:45 +00:00
|
|
|
android:layout_height="wrap_content"
|
2019-10-04 17:57:27 +00:00
|
|
|
android:layout_gravity="center"
|
2019-10-03 15:31:45 +00:00
|
|
|
android:text="@string/install"
|
|
|
|
app:icon="@drawable/ic_install"
|
|
|
|
app:iconGravity="textEnd"
|
|
|
|
app:iconPadding="@dimen/l_50"
|
|
|
|
app:iconSize="18dp"
|
|
|
|
tools:visibility="gone" />
|
|
|
|
|
|
|
|
</FrameLayout>
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dp"
|
2019-10-05 09:13:57 +00:00
|
|
|
android:layout_marginStart="@dimen/l1"
|
2019-10-03 15:31:45 +00:00
|
|
|
android:layout_marginTop="@dimen/l2"
|
2019-10-05 10:42:27 +00:00
|
|
|
android:layout_marginEnd="@dimen/l1"
|
2019-10-03 15:31:45 +00:00
|
|
|
android:layout_marginBottom="@dimen/l2"
|
|
|
|
android:background="?colorSurfaceVariant" />
|
|
|
|
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
2019-10-05 20:20:57 +00:00
|
|
|
android:id="@+id/support_icon_mainline"
|
2019-10-03 15:31:45 +00:00
|
|
|
style="?styleIconNormal"
|
2019-10-05 20:20:57 +00:00
|
|
|
android:padding="@dimen/l_50"
|
2019-10-03 15:31:45 +00:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
2019-10-05 20:20:57 +00:00
|
|
|
app:srcCompat="@drawable/ic_mainline_dev" />
|
2019-10-03 15:31:45 +00:00
|
|
|
|
|
|
|
<com.google.android.material.card.MaterialCardView
|
|
|
|
style="?styleCardNormal"
|
2019-10-05 10:42:27 +00:00
|
|
|
android:layout_width="wrap_content"
|
2019-10-03 15:31:45 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="@dimen/l1"
|
2019-10-05 10:42:27 +00:00
|
|
|
app:layout_constrainedWidth="true"
|
2019-10-03 15:31:45 +00:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
2019-10-05 10:42:27 +00:00
|
|
|
app:layout_constraintHorizontal_bias="0"
|
2019-10-05 20:20:57 +00:00
|
|
|
app:layout_constraintStart_toEndOf="@+id/support_icon_mainline"
|
2019-10-03 15:31:45 +00:00
|
|
|
app:layout_constraintTop_toTopOf="parent">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:padding="@dimen/l1">
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2019-10-05 10:42:27 +00:00
|
|
|
android:text="\@topjohnwu"
|
2019-10-03 15:31:45 +00:00
|
|
|
android:textAppearance="?appearanceTextCaptionNormal"
|
|
|
|
android:textStyle="bold"
|
2019-10-05 10:42:27 +00:00
|
|
|
tools:ignore="HardcodedText" />
|
2019-10-03 15:31:45 +00:00
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2019-10-05 10:42:27 +00:00
|
|
|
itemBinding="@{viewModel.itemBinding}"
|
2019-10-05 10:53:40 +00:00
|
|
|
items="@{viewModel.itemsMainline}"
|
|
|
|
nestedScrollingEnabled="@{false}"
|
|
|
|
android:layout_width="wrap_content"
|
2019-10-03 15:31:45 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:clipToPadding="false"
|
|
|
|
android:fadingEdgeLength="@dimen/l1"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:paddingTop="@dimen/l1"
|
|
|
|
android:requiresFadingEdge="horizontal"
|
|
|
|
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
|
|
|
|
tools:listitem="@layout/item_developer" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</com.google.android.material.card.MaterialCardView>
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-10-05 10:42:27 +00:00
|
|
|
android:layout_marginTop="@dimen/l1">
|
2019-10-03 15:31:45 +00:00
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
2019-10-05 20:20:57 +00:00
|
|
|
android:id="@+id/support_icon_app"
|
2019-10-03 15:31:45 +00:00
|
|
|
style="?styleIconNormal"
|
2019-10-05 20:20:57 +00:00
|
|
|
android:padding="@dimen/l_50"
|
2019-10-03 15:31:45 +00:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
2019-10-05 20:20:57 +00:00
|
|
|
app:srcCompat="@drawable/ic_app_dev" />
|
2019-10-03 15:31:45 +00:00
|
|
|
|
|
|
|
<com.google.android.material.card.MaterialCardView
|
|
|
|
style="?styleCardNormal"
|
2019-10-05 10:42:27 +00:00
|
|
|
android:layout_width="wrap_content"
|
2019-10-03 15:31:45 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginEnd="@dimen/l1"
|
2019-10-05 10:53:40 +00:00
|
|
|
app:layout_constrainedWidth="true"
|
2019-10-03 15:31:45 +00:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
2019-10-05 20:20:57 +00:00
|
|
|
app:layout_constraintEnd_toStartOf="@+id/support_icon_app"
|
2019-10-05 10:53:40 +00:00
|
|
|
app:layout_constraintHorizontal_bias="1"
|
2019-10-03 15:31:45 +00:00
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:padding="@dimen/l1">
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="end"
|
2019-10-05 10:53:40 +00:00
|
|
|
android:text="\@diareuse"
|
2019-10-03 15:31:45 +00:00
|
|
|
android:textAppearance="?appearanceTextCaptionNormal"
|
|
|
|
android:textStyle="bold"
|
2019-10-05 10:42:27 +00:00
|
|
|
tools:ignore="HardcodedText" />
|
2019-10-03 15:31:45 +00:00
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2019-10-05 10:42:27 +00:00
|
|
|
itemBinding="@{viewModel.itemBinding}"
|
|
|
|
items="@{viewModel.itemsApp}"
|
2019-10-05 10:53:40 +00:00
|
|
|
nestedScrollingEnabled="@{false}"
|
2019-10-05 10:42:27 +00:00
|
|
|
android:layout_width="wrap_content"
|
2019-10-05 10:53:40 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:clipToPadding="false"
|
2019-10-03 15:31:45 +00:00
|
|
|
android:fadingEdgeLength="@dimen/l1"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:paddingTop="@dimen/l1"
|
|
|
|
android:requiresFadingEdge="horizontal"
|
|
|
|
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
|
|
|
|
app:reverseLayout="true"
|
|
|
|
tools:listitem="@layout/item_developer" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</com.google.android.material.card.MaterialCardView>
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
|
android:layout_width="match_parent"
|
2019-10-07 18:09:12 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="@dimen/l1">
|
2019-10-03 15:31:45 +00:00
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
|
|
android:id="@+id/support_icon_common"
|
|
|
|
style="?styleIconNormal"
|
2019-10-05 20:20:57 +00:00
|
|
|
android:padding="@dimen/l_50"
|
2019-10-03 15:31:45 +00:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
2019-10-05 20:20:57 +00:00
|
|
|
app:srcCompat="@drawable/ic_project" />
|
2019-10-03 15:31:45 +00:00
|
|
|
|
|
|
|
<com.google.android.material.card.MaterialCardView
|
|
|
|
style="?styleCardNormal"
|
2019-10-05 10:42:27 +00:00
|
|
|
android:layout_width="wrap_content"
|
2019-10-03 15:31:45 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="@dimen/l1"
|
2019-10-05 10:42:27 +00:00
|
|
|
app:layout_constrainedWidth="true"
|
2019-10-03 15:31:45 +00:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
2019-10-05 10:53:40 +00:00
|
|
|
app:layout_constraintHorizontal_bias="0"
|
2019-10-03 15:31:45 +00:00
|
|
|
app:layout_constraintStart_toEndOf="@+id/support_icon_common"
|
|
|
|
app:layout_constraintTop_toTopOf="parent">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:padding="@dimen/l1">
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2019-10-05 10:53:40 +00:00
|
|
|
android:text="@string/home_links_project"
|
2019-10-03 15:31:45 +00:00
|
|
|
android:textAppearance="?appearanceTextCaptionNormal"
|
2019-10-05 10:53:40 +00:00
|
|
|
android:textStyle="bold" />
|
2019-10-03 15:31:45 +00:00
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2019-10-05 10:42:27 +00:00
|
|
|
itemBinding="@{viewModel.itemBinding}"
|
2019-10-05 10:53:40 +00:00
|
|
|
items="@{viewModel.itemsProject}"
|
|
|
|
nestedScrollingEnabled="@{false}"
|
|
|
|
android:layout_width="wrap_content"
|
2019-10-03 15:31:45 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:clipToPadding="false"
|
|
|
|
android:fadingEdgeLength="@dimen/l1"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:paddingTop="@dimen/l1"
|
|
|
|
android:requiresFadingEdge="horizontal"
|
|
|
|
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
|
|
|
|
tools:listitem="@layout/item_developer" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</com.google.android.material.card.MaterialCardView>
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
|
2019-10-07 18:09:12 +00:00
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="@dimen/l2"
|
|
|
|
android:gravity="center"
|
|
|
|
android:text="@{String.format(`%s (%s)`, BuildConfig.VERSION_NAME, BuildConfig.VERSION_CODE)}"
|
|
|
|
android:textAppearance="?appearanceTextCaptionVariant"
|
|
|
|
tools:text="7.3.4 (12345)" />
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center"
|
|
|
|
android:text="@{String.format(`%s (%s)`, Info.magiskVersionString, Info.magiskVersionCode)}"
|
|
|
|
android:textAppearance="?appearanceTextCaptionVariant"
|
|
|
|
tools:text="19.5 (12345)" />
|
|
|
|
|
2019-10-03 15:31:45 +00:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</androidx.core.widget.NestedScrollView>
|
|
|
|
|
|
|
|
</layout>
|