18 lines
766 B
XML
18 lines
766 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||
|
android:id="@+id/activity_view_thread"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
tools:context="com.keylesspalace.tusky.PreferencesActivity">
|
||
|
|
||
|
<include layout="@layout/toolbar_basic" />
|
||
|
|
||
|
<FrameLayout
|
||
|
android:id="@+id/fragment_container"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
|
||
|
|
||
|
</android.support.design.widget.CoordinatorLayout>
|