mirror of
https://github.com/mihonapp/mihon.git
synced 2024-10-31 21:20:59 -04:00
78689e7443
* Migrate to AndroidX (automatic conversion by Android Studio) * AndroidX dependency code updates * Fix source preference reparenting * fixes the androidx prefererences icon spacing issue (cherry picked from commit b76a15d960ec2cdf771be16377db0348b66b3179) * Fix source preference screen heading size/list padding Co-authored-by: Carlos <cargo8005@gmail.com>
55 lines
2 KiB
XML
55 lines
2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
android:orientation="horizontal">
|
|
|
|
<androidx.appcompat.widget.AppCompatImageButton
|
|
android:id="@+id/btn_decrease_10"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:background="?selectable_list_drawable"
|
|
android:padding="8dp"
|
|
android:tint="?colorAccent"
|
|
app:srcCompat="@drawable/ic_chevron_left_double_black_24dp" />
|
|
|
|
<androidx.appcompat.widget.AppCompatImageButton
|
|
android:id="@+id/btn_decrease"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:background="?selectable_list_drawable"
|
|
android:tint="?colorAccent"
|
|
android:padding="8dp"
|
|
app:srcCompat="@drawable/ic_chevron_left_black_24dp" />
|
|
|
|
<EditText
|
|
android:id="@+id/myNumber"
|
|
android:digits="0123456789"
|
|
android:inputType="number"
|
|
android:layout_height="wrap_content"
|
|
android:textStyle="bold"
|
|
android:padding="8dp"
|
|
android:layout_width="wrap_content" />
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatImageButton
|
|
android:id="@+id/btn_increase"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:background="?selectable_list_drawable"
|
|
android:tint="?colorAccent"
|
|
android:padding="8dp"
|
|
app:srcCompat="@drawable/ic_chevron_right_black_24dp" />
|
|
|
|
<androidx.appcompat.widget.AppCompatImageButton
|
|
android:id="@+id/btn_increase_10"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:background="?selectable_list_drawable"
|
|
android:tint="?colorAccent"
|
|
android:padding="8dp"
|
|
app:srcCompat="@drawable/ic_chevron_right_double_black_24dp" />
|
|
|
|
</LinearLayout>
|