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"
|
2018-06-15 05:18:54 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
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"
|
2018-06-15 05:18:54 +02:00
|
|
|
android:layout_height="match_parent"
|
2018-06-10 21:57:35 +02:00
|
|
|
android:layout_alignParentTop="true"
|
2018-06-15 05:18:54 +02:00
|
|
|
android:layout_margin="2dp"
|
2018-06-10 21:57:35 +02:00
|
|
|
android:orientation="vertical">
|
2018-06-09 11:33:03 +02:00
|
|
|
|
2018-06-15 05:18:54 +02:00
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/topBar"
|
2018-06-10 21:57:35 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2018-06-15 05:18:54 +02:00
|
|
|
android:layout_marginBottom="5dp"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:paddingBottom="3dp"
|
|
|
|
android:paddingTop="3dp">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/secondText"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingLeft="3dp"
|
|
|
|
android:text="@string/chosenTabs"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceLarge" />
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/buttonAdd"
|
2018-06-15 05:43:43 +02:00
|
|
|
android:layout_width="25dp"
|
|
|
|
android:layout_height="25dp"
|
2018-06-15 05:18:54 +02:00
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_marginRight="10dp"
|
|
|
|
android:background="@color/transparent_background_color"
|
|
|
|
android:paddingBottom="5dp"
|
|
|
|
android:paddingLeft="5dp"
|
|
|
|
android:paddingRight="15dp"
|
|
|
|
android:paddingTop="5dp" />
|
|
|
|
|
|
|
|
</RelativeLayout>
|
2018-06-10 21:57:35 +02:00
|
|
|
|
|
|
|
<android.support.v7.widget.RecyclerView
|
|
|
|
android:id="@+id/usedTabs"
|
|
|
|
android:layout_width="match_parent"
|
2018-06-15 05:18:54 +02:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_margin="0dp" />
|
2018-06-10 21:57:35 +02:00
|
|
|
</LinearLayout>
|
2018-06-09 11:33:03 +02:00
|
|
|
|
2018-06-10 21:57:35 +02:00
|
|
|
</RelativeLayout>
|