Update: Migrate from viewBinding to dataBinding

This commit is contained in:
machiav3lli
2021-12-13 02:53:34 +01:00
parent 758649c8c2
commit 011cf6a41f
14 changed files with 747 additions and 662 deletions

View File

@ -1,9 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<com.google.android.material.switchmaterial.SwitchMaterial xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/update_state_switch"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clickable="false"
android:layout_marginHorizontal="@dimen/text_margin"
android:singleLine="true"
android:textSize="15sp" />
<layout xmlns:android="http://schemas.android.com/apk/res/android">
<data>
</data>
<com.google.android.material.switchmaterial.SwitchMaterial
android:id="@+id/update_state_switch"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginHorizontal="@dimen/text_margin"
android:clickable="false"
android:singleLine="true"
android:textSize="15sp" />
</layout>