Advertisement
Guest User

activity_settings.xml

a guest
Jun 15th, 2016
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.35 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.    xmlns:app="http://schemas.android.com/apk/res-auto"
  4.    xmlns:tools="http://schemas.android.com/tools"
  5.    android:layout_width="match_parent"
  6.    android:layout_height="match_parent"
  7.    android:fitsSystemWindows="true"
  8.    tools:context=".SettingsActivity"
  9.    >
  10.  
  11.     <android.support.design.widget.AppBarLayout
  12.        android:layout_width="match_parent"
  13.        android:layout_height="wrap_content"
  14.        android:theme="@style/AppTheme.AppBarOverlay"
  15.        >
  16.  
  17.         <android.support.v7.widget.Toolbar
  18.            android:id="@+id/toolbar"
  19.            android:layout_width="match_parent"
  20.            android:layout_height="wrap_content"
  21.            />
  22.  
  23.     </android.support.design.widget.AppBarLayout>
  24.  
  25.     <LinearLayout
  26.        android:layout_width="wrap_content"
  27.        android:layout_height="wrap_content"
  28.        android:orientation="vertical"
  29.        app:layout_behavior="@string/appbar_scrolling_view_behavior"
  30.        >
  31.         <FrameLayout
  32.            android:id="@+id/settings_container"
  33.            android:layout_width="wrap_content"
  34.            android:layout_height="wrap_content"
  35.            />
  36.     </LinearLayout>
  37.  
  38. </android.support.design.widget.CoordinatorLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement