NewPipe/app/src/main/res/layout/dialog_contentsettings.xml

53 lines
1.9 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
2018-06-10 19:57:35 +00:00
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
2018-06-15 03:18:54 +00:00
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
2018-06-10 19:57:35 +00:00
<LinearLayout
android:layout_width="match_parent"
2018-06-15 03:18:54 +00:00
android:layout_height="match_parent"
2018-06-10 19:57:35 +00:00
android:layout_alignParentTop="true"
2018-06-15 03:18:54 +00:00
android:layout_margin="2dp"
2018-06-10 19:57:35 +00:00
android:orientation="vertical">
2018-06-15 03:18:54 +00:00
<RelativeLayout
android:id="@+id/topBar"
2018-06-10 19:57:35 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
2018-06-15 03:18:54 +00: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"
android:layout_width="25dp"
android:layout_height="25dp"
2018-06-15 03:18:54 +00: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 19:57:35 +00:00
<android.support.v7.widget.RecyclerView
android:id="@+id/usedTabs"
android:layout_width="match_parent"
2018-06-15 03:18:54 +00:00
android:layout_height="match_parent"
android:layout_margin="0dp" />
2018-06-10 19:57:35 +00:00
</LinearLayout>
2018-06-10 19:57:35 +00:00
</RelativeLayout>