2018-06-09 11:33:03 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-06-10 21:57:35 +02:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:minWidth="550dp"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:padding="12dp">
|
2018-06-09 11:33:03 +02:00
|
|
|
|
2018-06-10 21:57:35 +02:00
|
|
|
<LinearLayout
|
2018-06-09 11:33:03 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2018-06-10 21:57:35 +02:00
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:layout_above="@id/buttonLayout"
|
|
|
|
android:orientation="vertical">
|
2018-06-09 11:33:03 +02:00
|
|
|
|
2018-06-10 21:57:35 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/firstText"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingBottom="2dp"
|
|
|
|
android:paddingTop="2dp"
|
|
|
|
android:text="@string/selection"
|
|
|
|
android:textStyle="bold" />
|
2018-06-09 11:33:03 +02:00
|
|
|
|
2018-06-10 21:57:35 +02:00
|
|
|
<android.support.v7.widget.RecyclerView
|
|
|
|
android:id="@+id/tabs"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_margin="0dp"
|
|
|
|
android:background="@color/black_background_color">
|
2018-06-09 11:33:03 +02:00
|
|
|
|
2018-06-10 21:57:35 +02:00
|
|
|
</android.support.v7.widget.RecyclerView>
|
2018-06-09 11:33:03 +02:00
|
|
|
|
2018-06-10 21:57:35 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/secondText"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingBottom="2dp"
|
|
|
|
android:paddingTop="2dp"
|
|
|
|
android:text="@string/chosenTabs"
|
|
|
|
android:textStyle="bold" />
|
|
|
|
|
|
|
|
<android.support.v7.widget.RecyclerView
|
|
|
|
android:id="@+id/usedTabs"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_margin="0dp"
|
|
|
|
android:background="@color/black_background_color" />
|
|
|
|
</LinearLayout>
|
2018-06-09 11:33:03 +02:00
|
|
|
|
|
|
|
<LinearLayout
|
2018-06-10 21:57:35 +02:00
|
|
|
android:id="@+id/buttonLayout"
|
2018-06-09 11:33:03 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2018-06-10 21:57:35 +02:00
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_marginBottom="10dp"
|
2018-06-09 11:33:03 +02:00
|
|
|
android:orientation="horizontal"
|
|
|
|
android:padding="4dp">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/cancelText"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="4dp"
|
|
|
|
android:paddingLeft="6dp"
|
|
|
|
android:paddingRight="6dp"
|
|
|
|
android:text="@string/cancel"
|
2018-06-10 21:57:35 +02:00
|
|
|
android:textColor="@color/black_settings_accent_color"
|
|
|
|
android:textStyle="bold" />
|
2018-06-09 11:33:03 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/confirmText"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="4dp"
|
|
|
|
android:text="@string/accept"
|
2018-06-10 21:57:35 +02:00
|
|
|
android:textColor="@color/black_settings_accent_color"
|
|
|
|
android:textStyle="bold" />
|
2018-06-09 11:33:03 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|
2018-06-10 21:57:35 +02:00
|
|
|
</RelativeLayout>
|