2021-06-11 19:07:06 +02:00
|
|
|
<?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"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2021-06-12 16:21:13 +02:00
|
|
|
android:id="@+id/line1"
|
2021-06-11 19:07:06 +02:00
|
|
|
android:layout_width="match_parent"
|
2021-06-12 16:21:13 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal">
|
2021-06-11 19:07:06 +02:00
|
|
|
|
|
|
|
|
|
|
|
<Button
|
2021-06-14 22:24:51 +02:00
|
|
|
android:id="@+id/doubleButton_bLeft"
|
2021-06-28 19:41:35 +02:00
|
|
|
android:layout_width="0dp"
|
2021-06-11 19:07:06 +02:00
|
|
|
android:layout_height="40dp"
|
|
|
|
android:layout_margin="5dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:background="@drawable/button_left"
|
|
|
|
android:text="Button1"
|
|
|
|
app:backgroundTint="@null" />
|
|
|
|
|
|
|
|
<Button
|
2021-06-14 22:24:51 +02:00
|
|
|
android:id="@+id/doubleButton_text"
|
2021-06-28 19:41:35 +02:00
|
|
|
android:layout_width="0dp"
|
2021-06-11 19:07:06 +02:00
|
|
|
android:layout_height="40dp"
|
|
|
|
android:layout_margin="5dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:background="@drawable/button_middle"
|
2021-06-14 22:24:51 +02:00
|
|
|
android:text="Button1"
|
2021-06-11 19:07:06 +02:00
|
|
|
app:backgroundTint="@null" />
|
|
|
|
|
|
|
|
<Button
|
2021-06-14 22:24:51 +02:00
|
|
|
android:id="@+id/doubleButton_bRight"
|
2021-06-28 19:41:35 +02:00
|
|
|
android:layout_width="0dp"
|
2021-06-11 19:07:06 +02:00
|
|
|
android:layout_height="40dp"
|
|
|
|
android:layout_margin="5dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:background="@drawable/button_right"
|
|
|
|
android:text="Button2"
|
|
|
|
app:backgroundTint="@null" />
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/image_remove"
|
|
|
|
android:layout_width="40dp"
|
|
|
|
android:layout_height="40dp"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_margin="5dp"
|
|
|
|
app:srcCompat="@drawable/clear_black_24dp"
|
|
|
|
app:tint="?attr/colorOnPrimary"
|
|
|
|
tools:ignore="VectorDrawableCompat">
|
|
|
|
|
|
|
|
</ImageView>
|
|
|
|
|
|
|
|
</LinearLayout>
|