Statistics
| Branch: | Tag: | Revision:

trustedintents / app / src / main / res / layout / activity_main.xml @ 9f5bcd3f

History | View | Annotate | Download (1.27 KB)

1
<?xml version="1.0" encoding="utf-8"?>
2
<android.support.design.widget.CoordinatorLayout
3
    xmlns:android="http://schemas.android.com/apk/res/android"
4
    xmlns:app="http://schemas.android.com/apk/res-auto"
5
    xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
6
    android:layout_height="match_parent" android:fitsSystemWindows="true"
7
    tools:context=".MainActivity">
8

    
9
    <android.support.design.widget.AppBarLayout android:layout_height="wrap_content"
10
        android:layout_width="match_parent" android:theme="@style/AppTheme.AppBarOverlay">
11

    
12
        <android.support.v7.widget.Toolbar android:id="@+id/toolbar"
13
            android:layout_width="match_parent" android:layout_height="?attr/actionBarSize"
14
            android:background="?attr/colorPrimary" app:popupTheme="@style/AppTheme.PopupOverlay" />
15

    
16
    </android.support.design.widget.AppBarLayout>
17

    
18
    <include layout="@layout/content_main" />
19

    
20
    <android.support.design.widget.FloatingActionButton android:id="@+id/fab"
21
        android:layout_width="wrap_content" android:layout_height="wrap_content"
22
        android:layout_gravity="bottom|end" android:layout_margin="@dimen/fab_margin"
23
        android:src="@android:drawable/ic_dialog_email" />
24

    
25
</android.support.design.widget.CoordinatorLayout>