59 lines
1.8 KiB
XML
59 lines
1.8 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"
|
||
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
android:orientation="horizontal"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content">
|
||
|
|
||
|
|
||
|
<Button
|
||
|
android:id="@+id/button1"
|
||
|
android:layout_width="100dp"
|
||
|
android:layout_height="40dp"
|
||
|
android:layout_margin="5dp"
|
||
|
android:layout_weight="1"
|
||
|
android:background="@drawable/button_left"
|
||
|
android:insetLeft="25dp"
|
||
|
android:insetRight="25dp"
|
||
|
android:text="Button1"
|
||
|
app:backgroundTint="@null" />
|
||
|
|
||
|
<Button
|
||
|
android:id="@+id/TEXT"
|
||
|
android:layout_width="100dp"
|
||
|
android:layout_height="40dp"
|
||
|
android:layout_margin="5dp"
|
||
|
android:layout_marginTop="5dp"
|
||
|
android:layout_weight="1"
|
||
|
android:background="@drawable/button_middle"
|
||
|
android:insetLeft="25dp"
|
||
|
android:insetRight="25dp"
|
||
|
android:text="Button2"
|
||
|
app:backgroundTint="@null" />
|
||
|
|
||
|
<Button
|
||
|
android:id="@+id/button"
|
||
|
android:layout_width="100dp"
|
||
|
android:layout_height="40dp"
|
||
|
android:layout_margin="5dp"
|
||
|
android:layout_weight="1"
|
||
|
android:background="@drawable/button_right"
|
||
|
android:insetLeft="25dp"
|
||
|
android:insetRight="25dp"
|
||
|
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>
|