aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/main/res/layout
diff options
context:
space:
mode:
authorDominik Schürmann <dominik@dominikschuermann.de>2015-11-23 23:25:56 +0100
committerDominik Schürmann <dominik@dominikschuermann.de>2015-11-23 23:25:56 +0100
commit01b89d1d9ca3627772866b0bea0472f658bb4e81 (patch)
treecdfcf6861144e8f8b974ca0db97b3e9e48b6161b /OpenKeychain/src/main/res/layout
parentaf8fd8db695e538de5250af8c9d0f6c19d260a01 (diff)
downloadopen-keychain-01b89d1d9ca3627772866b0bea0472f658bb4e81.tar.gz
open-keychain-01b89d1d9ca3627772866b0bea0472f658bb4e81.tar.bz2
open-keychain-01b89d1d9ca3627772866b0bea0472f658bb4e81.zip
Revert "Add first time wizard for sync settings"
This reverts commit cd601988db41f7651f376ef419be3dd50aaa4e10.
Diffstat (limited to 'OpenKeychain/src/main/res/layout')
-rw-r--r--OpenKeychain/src/main/res/layout/first_time_activity.xml85
1 files changed, 0 insertions, 85 deletions
diff --git a/OpenKeychain/src/main/res/layout/first_time_activity.xml b/OpenKeychain/src/main/res/layout/first_time_activity.xml
deleted file mode 100644
index 36d32e22d..000000000
--- a/OpenKeychain/src/main/res/layout/first_time_activity.xml
+++ /dev/null
@@ -1,85 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
-
- <include
- android:id="@+id/toolbar_include"
- layout="@layout/toolbar_standalone" />
-
- <!--
- fitsSystemWindows and layout_marginTop from
- https://medium.com/@ngdelamo/using-drawerlayout-the-material-way-i-716bba2b5705
- -->
- <FrameLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_below="@id/toolbar_include"
- android:layout_marginTop="@dimen/minus_statusbar_height"
- android:fitsSystemWindows="true">
-
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent">
-
- <ScrollView
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_above="@+id/first_time_buttons"
- android:layout_alignParentTop="true"
- android:fillViewport="true">
-
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical">
-
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:paddingLeft="16dp"
- android:paddingRight="16dp"
- android:paddingTop="16dp"
- android:text="@string/first_time_start"
- android:textAppearance="?android:attr/textAppearanceMedium" />
-
- <FrameLayout
- android:id="@+id/first_time_fragment_container"
- android:layout_width="match_parent"
- android:layout_height="match_parent" />
-
- </LinearLayout>
- </ScrollView>
-
- <LinearLayout
- android:id="@+id/first_time_buttons"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_alignParentBottom="true"
- android:layout_alignParentLeft="true"
- android:layout_alignParentStart="true"
- android:background="?attr/colorButtonRow"
- android:orientation="horizontal">
-
- <TextView
- android:id="@+id/first_time_next_button"
- style="?android:attr/borderlessButtonStyle"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_gravity="center_vertical"
- android:layout_weight="1"
- android:clickable="true"
- android:drawablePadding="8dp"
- android:drawableRight="@drawable/ic_chevron_right_grey_24dp"
- android:gravity="right|center_vertical"
- android:minHeight="?android:attr/listPreferredItemHeight"
- android:paddingLeft="16dp"
- android:paddingRight="16dp"
- android:text="@string/btn_next"
- android:textAllCaps="true"
- android:textAppearance="?android:attr/textAppearanceMedium" />
- </LinearLayout>
- </RelativeLayout>
-
- </FrameLayout>
-</RelativeLayout> \ No newline at end of file