aboutsummaryrefslogtreecommitdiffstats
path: root/app/src/main/res/layout/layout_setting.xml
blob: 51ef6f209d42a96ad8cadee72cd41a1592b6f9f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="?attr/colorPrimary"
        android:elevation="4dp" />

    <fragment
        android:id="@+id/fragment_setting"
        android:name="net.lacolaco.smileessence.view.SettingFragment"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />
</LinearLayout>