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-10 21:57:35 +02:00
|
|
|
android:layout_marginLeft="2dp"
|
|
|
|
android:layout_marginStart="0dp"
|
|
|
|
android:paddingBottom="2dp"
|
|
|
|
android:paddingLeft="2dp"
|
|
|
|
android:paddingStart="3dp"
|
|
|
|
android:paddingTop="2dp"
|
|
|
|
android:textColor="@color/background_title_color"
|
|
|
|
android:textSize="24sp"
|
|
|
|
android:layout_toStartOf="@id/buttonDown"
|
|
|
|
android:layout_toLeftOf="@id/buttonDown"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_alignParentStart="true" />
|
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"
|
|
|
|
android:background="@color/black_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"
|
|
|
|
android:background="@color/black_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"
|
|
|
|
android:background="@color/black_background_color" />
|
2018-06-09 11:33:03 +02:00
|
|
|
|
|
|
|
</RelativeLayout>
|