You've already forked Magisk
mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-09-06 06:36:58 +00:00
38 lines
1.1 KiB
XML
38 lines
1.1 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>
|
|
|
|
<variable
|
|
name="item"
|
|
type="com.topjohnwu.magisk.model.entity.IconLink" />
|
|
|
|
<variable
|
|
name="viewModel"
|
|
type="com.topjohnwu.magisk.ui.home.HomeViewModel" />
|
|
|
|
</data>
|
|
|
|
<FrameLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:background="?selectableItemBackgroundBorderless"
|
|
android:minWidth="60dp"
|
|
android:onClick="@{() -> viewModel.onLinkPressed(item.link)}"
|
|
android:padding="@dimen/l_50"
|
|
tools:layout_gravity="center">
|
|
|
|
<ImageView
|
|
android:id="@+id/developer_link"
|
|
style="@style/WidgetFoundation.Image.Small"
|
|
android:layout_gravity="center"
|
|
app:srcCompat="@{item.icon}"
|
|
app:tint="?colorOnSurface"
|
|
tools:srcCompat="@drawable/ic_paypal" />
|
|
|
|
</FrameLayout>
|
|
|
|
</layout>
|