2018-06-09 11:33:03 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/tabName"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2018-06-15 05:18:54 +02:00
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_alignParentStart="true"
|
|
|
|
android:layout_centerVertical="true"
|
2018-06-10 21:57:35 +02:00
|
|
|
android:layout_marginStart="0dp"
|
2018-06-15 05:18:54 +02:00
|
|
|
android:layout_toLeftOf="@id/buttonDown"
|
|
|
|
android:layout_toStartOf="@id/buttonDown"
|
2018-06-10 21:57:35 +02:00
|
|
|
android:paddingStart="3dp"
|
2018-06-11 21:41:49 +02:00
|
|
|
android:textAppearance="?android:attr/textAppearanceListItem"
|
2018-06-10 21:57:35 +02:00
|
|
|
android:textSize="24sp"
|
2018-06-15 05:18:54 +02:00
|
|
|
android:paddingLeft="3dp" />
|
2018-06-09 11:33:03 +02:00
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/buttonAddRemove"
|
2018-06-10 21:57:35 +02:00
|
|
|
android:layout_width="40dp"
|
|
|
|
android:layout_height="40dp"
|
2018-06-09 11:33:03 +02:00
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
android:layout_alignParentRight="true"
|
2018-06-10 21:57:35 +02:00
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_marginEnd="0dp"
|
|
|
|
android:layout_marginRight="0dp"
|
2018-06-11 21:41:49 +02:00
|
|
|
android:background="@color/transparent_background_color" />
|
2018-06-09 11:33:03 +02:00
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/buttonDown"
|
2018-06-10 21:57:35 +02:00
|
|
|
android:layout_width="30dp"
|
|
|
|
android:layout_height="30dp"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_toLeftOf="@+id/buttonUp"
|
|
|
|
android:layout_toStartOf="@+id/buttonUp"
|
2018-06-11 21:41:49 +02:00
|
|
|
android:background="@color/transparent_background_color" />
|
2018-06-09 11:33:03 +02:00
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/buttonUp"
|
2018-06-10 21:57:35 +02:00
|
|
|
android:layout_width="30dp"
|
|
|
|
android:layout_height="30dp"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_toLeftOf="@+id/buttonAddRemove"
|
|
|
|
android:layout_toStartOf="@+id/buttonAddRemove"
|
2018-06-11 21:41:49 +02:00
|
|
|
android:background="@color/transparent_background_color" />
|
2018-06-09 11:33:03 +02:00
|
|
|
|
|
|
|
</RelativeLayout>
|