aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/main/res/layout/main_activity.xml
blob: a85c8047e21fe64584902d4e8bfdd4c9f7b261c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="match_parent">

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

    <fragment android:name="org.sufficientlysecure.keychain.ui.KeyListFragment"
        android:id="@+id/keys_fragment"
        android:layout_gravity="center"
        android:layout_height="match_parent"
        android:layout_width="match_parent"/>
</LinearLayout>