2019-02-18 16:02:49 +03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?><!--
|
|
|
|
~ Nextcloud Talk application
|
|
|
|
~
|
|
|
|
~ @author Mario Danic
|
2021-04-22 00:08:04 +03:00
|
|
|
~ @author Andy Scherzinger
|
|
|
|
~ Copyright (C) 2021 Andy Scherzinger <info@andy-scherzinger.de>
|
2019-02-18 16:02:49 +03:00
|
|
|
~ Copyright (C) 2017-2018 Mario Danic <mario@lovelyhq.com>
|
|
|
|
~
|
|
|
|
~ This program is free software: you can redistribute it and/or modify
|
|
|
|
~ it under the terms of the GNU General Public License as published by
|
|
|
|
~ the Free Software Foundation, either version 3 of the License, or
|
|
|
|
~ at your option) any later version.
|
|
|
|
~
|
|
|
|
~ This program is distributed in the hope that it will be useful,
|
|
|
|
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
~ GNU General Public License for more details.
|
|
|
|
~
|
|
|
|
~ You should have received a copy of the GNU General Public License
|
|
|
|
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
-->
|
|
|
|
|
2021-04-21 22:46:30 +03:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:id="@+id/unlockContainer"
|
2019-02-18 16:02:49 +03:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2021-04-21 22:46:30 +03:00
|
|
|
android:layout_centerInParent="true"
|
|
|
|
android:background="@color/colorPrimary"
|
|
|
|
android:gravity="center"
|
2019-02-18 16:02:49 +03:00
|
|
|
android:orientation="vertical">
|
|
|
|
|
2021-04-21 22:46:30 +03:00
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/appLogoContainer"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_horizontal">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/appLogo"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2021-06-30 17:13:55 +03:00
|
|
|
android:contentDescription="@string/nc_app_product_name"
|
2021-04-21 22:46:30 +03:00
|
|
|
android:src="@drawable/ic_logo" />
|
2019-02-18 16:02:49 +03:00
|
|
|
|
2021-04-21 22:46:30 +03:00
|
|
|
<ImageView
|
|
|
|
android:layout_width="32dp"
|
|
|
|
android:layout_height="32dp"
|
|
|
|
android:layout_gravity="center"
|
2021-05-04 10:34:40 +03:00
|
|
|
android:contentDescription="@string/nc_locked"
|
2021-04-21 22:46:30 +03:00
|
|
|
android:src="@drawable/ic_lock_white_24px" />
|
|
|
|
|
|
|
|
</FrameLayout>
|
2019-02-18 16:02:49 +03:00
|
|
|
|
|
|
|
<TextView
|
2019-08-30 13:12:40 +03:00
|
|
|
android:id="@+id/unlockTextView"
|
2021-04-21 22:46:30 +03:00
|
|
|
android:layout_width="match_parent"
|
2019-02-18 16:02:49 +03:00
|
|
|
android:layout_height="wrap_content"
|
2021-04-21 22:46:30 +03:00
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
android:paddingTop="16dp"
|
|
|
|
android:paddingBottom="56dp"
|
2021-05-04 10:34:40 +03:00
|
|
|
android:text="@string/nc_locked_tap_to_unlock"
|
2019-02-18 16:02:49 +03:00
|
|
|
android:textAlignment="center"
|
2021-04-27 09:27:08 +03:00
|
|
|
android:textColor="@color/textColorOnPrimaryBackground"
|
2021-04-21 22:46:30 +03:00
|
|
|
android:textSize="22sp" />
|
|
|
|
|
|
|
|
</LinearLayout>
|