mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-12-05 07:55:26 +00:00
31 lines
992 B
XML
31 lines
992 B
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>
|
||
|
|
||
|
<variable
|
||
|
name="item"
|
||
|
type="com.topjohnwu.magisk.model.entity.recycler.InstallModule" />
|
||
|
|
||
|
<variable
|
||
|
name="viewModel"
|
||
|
type="com.topjohnwu.magisk.redesign.module.ModuleViewModel" />
|
||
|
|
||
|
</data>
|
||
|
|
||
|
<com.google.android.material.button.MaterialButton
|
||
|
style="?styleButtonText"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:onClick="@{() -> viewModel.installPressed()}"
|
||
|
android:text="@string/module_action_install_external"
|
||
|
android:textAllCaps="false"
|
||
|
android:textSize="12sp"
|
||
|
app:icon="@drawable/ic_module_storage_md2"
|
||
|
app:iconPadding="@dimen/l_50"
|
||
|
tools:layout_width="150dp" />
|
||
|
|
||
|
</layout>
|