mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-12-12 03:02:49 +00:00
223 lines
11 KiB
XML
223 lines
11 KiB
XML
<?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>
|
|
|
|
<import type="com.topjohnwu.magisk.R" />
|
|
|
|
<variable
|
|
name="item"
|
|
type="com.topjohnwu.magisk.ui.module.LocalModuleRvItem" />
|
|
|
|
<variable
|
|
name="viewModel"
|
|
type="com.topjohnwu.magisk.ui.module.ModuleViewModel" />
|
|
|
|
</data>
|
|
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<com.google.android.material.card.MaterialCardView
|
|
android:id="@+id/module"
|
|
style="@style/WidgetFoundation.Card"
|
|
isEnabled="@{!item.removed && item.enabled && !item.showNotice}"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:focusable="@{!item.removed && item.enabled && !item.showNotice}"
|
|
android:nextFocusRight="@id/module_indicator"
|
|
app:cardBackgroundColor="@color/color_card_background_color_selector"
|
|
tools:isEnabled="false"
|
|
tools:layout_gravity="center"
|
|
tools:layout_margin="@dimen/l1">
|
|
|
|
<ImageView
|
|
android:id="@+id/module_state_icon"
|
|
gone="@{!item.removed && !item.updated}"
|
|
srcCompat="@{item.removed ? R.drawable.ic_delete_md2 : (item.updated ? R.drawable.ic_update_md2 : 0)}"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="center"
|
|
android:adjustViewBounds="true"
|
|
android:alpha=".05"
|
|
android:background="@null"
|
|
android:duplicateParentState="true"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:tint="?colorOnSurface"
|
|
tools:srcCompat="@drawable/ic_update_md2" />
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:animateLayoutChanges="true"
|
|
android:duplicateParentState="true">
|
|
|
|
<TextView
|
|
android:id="@+id/module_title"
|
|
strikeThrough="@{item.removed}"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="@dimen/l1"
|
|
android:layout_marginTop="@dimen/l1"
|
|
android:layout_marginEnd="@dimen/l_50"
|
|
android:duplicateParentState="true"
|
|
android:text="@{item.item.name}"
|
|
android:textAppearance="@style/AppearanceFoundation.Body"
|
|
android:textColor="?android:textColorPrimary"
|
|
android:textStyle="bold"
|
|
app:layout_constraintEnd_toStartOf="@+id/module_indicator"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
tools:text="@tools:sample/lorem" />
|
|
|
|
<TextView
|
|
android:id="@+id/module_version_author"
|
|
strikeThrough="@{item.removed}"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:duplicateParentState="true"
|
|
android:text="@{@string/module_version_author(item.item.version, item.item.author)}"
|
|
android:textAppearance="@style/AppearanceFoundation.Caption.Variant"
|
|
android:textColor="?android:textColorSecondary"
|
|
app:layout_constraintEnd_toEndOf="@+id/module_title"
|
|
app:layout_constraintStart_toStartOf="@+id/module_title"
|
|
app:layout_constraintTop_toBottomOf="@+id/module_title"
|
|
tools:text="@tools:sample/lorem" />
|
|
|
|
<com.google.android.material.switchmaterial.SwitchMaterial
|
|
android:id="@+id/module_indicator"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginEnd="@dimen/l_50"
|
|
android:checked="@={item.enabled}"
|
|
android:nextFocusLeft="@id/module"
|
|
app:layout_constraintBottom_toBottomOf="@+id/module_version_author"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintHorizontal_bias="1"
|
|
app:layout_constraintStart_toEndOf="@+id/module_update"
|
|
app:layout_constraintTop_toTopOf="@+id/module_title" />
|
|
|
|
<TextView
|
|
android:id="@+id/module_description"
|
|
gone="@{item.item.description.empty}"
|
|
strikeThrough="@{item.removed}"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="@dimen/l1"
|
|
android:layout_marginTop="@dimen/l1"
|
|
android:layout_marginEnd="@dimen/l1"
|
|
android:duplicateParentState="true"
|
|
android:maxLines="5"
|
|
android:text="@{item.item.description}"
|
|
android:textAppearance="@style/AppearanceFoundation.Caption.Variant"
|
|
android:textColor="?android:textColorSecondary"
|
|
app:layout_constraintTop_toBottomOf="@+id/module_version_author"
|
|
tools:lines="4"
|
|
tools:text="@tools:sample/lorem/random" />
|
|
|
|
<View
|
|
android:id="@+id/module_divider"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:layout_marginTop="@dimen/l1"
|
|
android:background="?colorSurfaceSurfaceVariant"
|
|
app:layout_constraintTop_toBottomOf="@+id/module_description" />
|
|
|
|
<Button
|
|
android:id="@+id/module_update"
|
|
style="@style/WidgetFoundation.Button.Text"
|
|
goneUnless="@{item.showUpdate}"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:clickable="true"
|
|
android:enabled="@{item.updateReady}"
|
|
android:focusable="true"
|
|
android:onClick="@{() -> viewModel.downloadPressed(item.item.updateInfo)}"
|
|
android:text="@string/update"
|
|
android:textAllCaps="false"
|
|
app:icon="@drawable/ic_update_md2"
|
|
app:iconGravity="textEnd"
|
|
app:layout_constraintBottom_toBottomOf="@+id/module_remove"
|
|
app:layout_constraintEnd_toStartOf="@+id/module_remove"
|
|
app:layout_constraintTop_toTopOf="@+id/module_remove"
|
|
app:srcCompat="@drawable/ic_download_md2" />
|
|
|
|
<Button
|
|
android:id="@+id/module_remove"
|
|
style="@style/WidgetFoundation.Button.Text"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:clickable="true"
|
|
android:enabled="@{!item.updated}"
|
|
android:focusable="true"
|
|
android:onClick="@{() -> item.delete()}"
|
|
android:text="@{item.removed ? @string/module_state_restore : @string/module_state_remove}"
|
|
android:textAllCaps="false"
|
|
android:theme="@style/ThemeOverlay.Button.Text.Secondary"
|
|
app:icon="@{item.removed ? @drawable/ic_restart : @drawable/ic_delete_md2}"
|
|
app:iconGravity="textEnd"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintTop_toBottomOf="@+id/module_divider"
|
|
tools:icon="@drawable/ic_delete_md2"
|
|
tools:text="Remove" />
|
|
|
|
<androidx.constraintlayout.widget.Barrier
|
|
android:id="@+id/bottom_bar_barrier"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
app:barrierDirection="start"
|
|
app:referencedIds="@{viewModel.bottomBarBarrierIds}"
|
|
tools:constraint_referenced_ids="module_update,module_remove" />
|
|
|
|
<TextView
|
|
android:id="@+id/module_notice_text"
|
|
goneUnless="@{item.showNotice}"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="@dimen/l1"
|
|
android:layout_marginEnd="@dimen/l_50"
|
|
android:fontFamily="sans-serif-medium"
|
|
android:text="@{item.noticeText}"
|
|
android:textAppearance="@style/AppearanceFoundation.Caption.Primary"
|
|
android:textColor="?colorError"
|
|
app:layout_constraintBottom_toBottomOf="@+id/module_remove"
|
|
app:layout_constraintEnd_toStartOf="@+id/bottom_bar_barrier"
|
|
app:layout_constraintStart_toEndOf="@id/module_config"
|
|
app:layout_constraintTop_toTopOf="@+id/module_remove"
|
|
tools:lines="2"
|
|
tools:text="@tools:sample/lorem/random"
|
|
tools:visibility="visible" />
|
|
|
|
<Button
|
|
android:id="@+id/module_config"
|
|
style="@style/WidgetFoundation.Button.Text"
|
|
goneUnless="@{item.showAction}"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:clickable="true"
|
|
android:enabled="@{item.enabled}"
|
|
android:focusable="true"
|
|
android:onClick="@{() -> viewModel.runAction(item.item.id, item.item.name)}"
|
|
android:text="@string/module_action"
|
|
android:textAllCaps="false"
|
|
android:visibility="gone"
|
|
app:icon="@drawable/ic_action_md2"
|
|
app:iconGravity="textStart"
|
|
app:layout_constraintBottom_toBottomOf="@+id/module_remove"
|
|
app:layout_constraintTop_toTopOf="@+id/module_remove"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:srcCompat="@drawable/ic_download_md2" />
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
</com.google.android.material.card.MaterialCardView>
|
|
|
|
</FrameLayout>
|
|
|
|
</layout>
|