2019-11-16 18:13:40 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<layout xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-11-18 16:49:03 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
2019-11-16 18:13:40 +00:00
|
|
|
|
|
|
|
<data>
|
|
|
|
|
|
|
|
<variable
|
|
|
|
name="item"
|
|
|
|
type="com.topjohnwu.magisk.model.entity.recycler.InstallModule" />
|
|
|
|
|
|
|
|
<variable
|
|
|
|
name="viewModel"
|
2020-01-12 16:43:09 +00:00
|
|
|
type="com.topjohnwu.magisk.ui.module.ModuleViewModel" />
|
2019-11-16 18:13:40 +00:00
|
|
|
|
|
|
|
</data>
|
|
|
|
|
|
|
|
<com.google.android.material.button.MaterialButton
|
2019-11-22 18:29:53 +00:00
|
|
|
style="@style/WidgetFoundation.Button.Outlined"
|
2019-11-16 18:13:40 +00:00
|
|
|
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"
|
2019-11-18 16:49:03 +00:00
|
|
|
app:cornerRadius="@dimen/r1"
|
2019-11-19 16:16:07 +00:00
|
|
|
app:icon="@drawable/ic_module_storage_md2" />
|
2019-11-16 18:13:40 +00:00
|
|
|
|
|
|
|
</layout>
|