19 lines
707 B
XML
19 lines
707 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
tools:context="org.schabi.newpipe.MainActivity">
|
|
|
|
<androidx.fragment.app.FragmentContainerView
|
|
android:id="@+id/settings_fragment_holder"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginTop="?attr/actionBarSize" />
|
|
|
|
<include
|
|
layout="@layout/toolbar_layout"
|
|
android:id="@+id/settings_toolbar_layout"/>
|
|
|
|
</RelativeLayout>
|