Files
open-keychain/OpenKeychain/src/main/res/layout/main_activity.xml

26 lines
1015 B
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2015-04-26 01:28:29 +02:00
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.Toolbar
2015-04-26 01:28:29 +02:00
android:id="@+id/toolbar"
android:layout_width="match_parent"
2015-04-26 01:28:29 +02:00
android:layout_height="wrap_content"
android:elevation="4dp"
2015-04-26 01:28:29 +02:00
android:background="?attr/colorPrimary"
android:minHeight="?attr/actionBarSize"
2015-08-18 11:19:50 +02:00
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
2015-04-26 01:28:29 +02:00
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
tools:ignore="UnusedAttribute" />
<FrameLayout
android:id="@+id/main_fragment_container"
android:layout_gravity="center"
android:layout_height="match_parent"
2015-04-26 01:28:29 +02:00
android:layout_width="match_parent" />
</LinearLayout>