mirror of
https://github.com/MaintainTeam/LastPipeBender.git
synced 2025-03-04 15:28:21 +03:00
60 lines
2 KiB
XML
60 lines
2 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:orientation="vertical" android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent">
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/firstText"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="@string/selection"
|
||
|
android:textStyle="bold" />
|
||
|
|
||
|
<android.support.v7.widget.RecyclerView
|
||
|
android:id="@+id/tabs"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content">
|
||
|
|
||
|
</android.support.v7.widget.RecyclerView>
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/secondText"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
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" />
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="end"
|
||
|
android:orientation="horizontal"
|
||
|
android:padding="4dp">
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/cancelText"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_weight="1"
|
||
|
android:padding="4dp"
|
||
|
android:paddingLeft="6dp"
|
||
|
android:paddingRight="6dp"
|
||
|
android:text="@string/cancel"
|
||
|
android:textColor="@color/black_settings_accent_color" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/confirmText"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_weight="1"
|
||
|
android:padding="4dp"
|
||
|
android:text="@string/accept"
|
||
|
android:textColor="@color/black_settings_accent_color" />
|
||
|
|
||
|
</LinearLayout>
|
||
|
</LinearLayout>
|