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

27 lines
1019 B
XML
Raw Normal View History

2014-07-30 00:50:53 +02:00
<?xml version="1.0" encoding="utf-8"?>
2022-12-22 14:51:33 +01:00
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
2014-07-30 00:50:53 +02:00
android:layout_width="match_parent"
2022-12-22 14:51:33 +01:00
android:layout_height="match_parent"
android:orientation="vertical"
android:fitsSystemWindows="true">
2014-06-27 21:40:18 +02:00
2022-12-22 14:51:33 +01:00
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary"
android:elevation="4dp"
android:minHeight="?attr/actionBarSize"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
tools:ignore="UnusedAttribute" />
2014-07-30 15:19:33 +02:00
<FrameLayout
2022-12-22 14:51:33 +01:00
android:id="@+id/create_key_fragment_container"
2014-06-27 21:40:18 +02:00
android:layout_width="match_parent"
2022-12-22 14:51:33 +01:00
android:layout_height="match_parent" />
2015-01-13 23:15:13 +01:00
2022-12-22 14:51:33 +01:00
</LinearLayout>