mirror of
https://github.com/Kunzisoft/KeePassDX.git
synced 2025-12-04 15:49:33 +01:00
103 lines
4.2 KiB
XML
103 lines
4.2 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
Copyright 2018 Jeremy Jamet / Kunzisoft.
|
|
|
|
This file is part of KeePassDX.
|
|
|
|
KeePassDX 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.
|
|
|
|
KeePassDX 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 KeePassDX. If not, see <http://www.gnu.org/licenses/>.
|
|
-->
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:fitsSystemWindows="true"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_alignParentBottom="true"
|
|
android:paddingTop="4dp"
|
|
android:paddingBottom="8dp"
|
|
android:background="@color/grey_blue_deep"
|
|
android:orientation="vertical">
|
|
<LinearLayout
|
|
android:id="@+id/magikeyboard_entry_container"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:paddingStart="24dp"
|
|
android:paddingEnd="24dp"
|
|
android:paddingLeft="24dp"
|
|
android:paddingRight="24dp"
|
|
android:paddingTop="4dp"
|
|
android:paddingBottom="4dp"
|
|
android:layout_marginTop="4dp"
|
|
android:background="@drawable/key_border"
|
|
android:orientation="vertical">
|
|
<TextView
|
|
android:id="@+id/magikeyboard_entry_text"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
android:layout_gravity="center"
|
|
android:textSize="16sp"
|
|
tools:text="Git account signup"
|
|
android:maxLines="1"
|
|
android:ellipsize="end"
|
|
android:textColor="@color/white"/>
|
|
<LinearLayout
|
|
android:id="@+id/magikeyboard_database_container"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:orientation="horizontal"
|
|
tools:ignore="UseCompoundDrawables">
|
|
<ImageView
|
|
android:id="@+id/magikeyboard_database_color"
|
|
android:layout_width="6dp"
|
|
android:layout_height="6dp"
|
|
android:layout_marginStart="4dp"
|
|
android:layout_marginLeft="4dp"
|
|
android:layout_gravity="center"
|
|
android:contentDescription="@string/content_description_database_color"
|
|
android:src="@drawable/background_icon" />
|
|
<TextView
|
|
android:id="@+id/magikeyboard_database_text"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="4dp"
|
|
android:layout_marginLeft="4dp"
|
|
android:layout_marginEnd="4dp"
|
|
android:layout_marginRight="4dp"
|
|
android:textSize="11sp"
|
|
tools:text="Database A"
|
|
android:maxLines="1"
|
|
android:ellipsize="end"
|
|
android:textColor="@color/grey_blue_slighter"/>
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
<TextView
|
|
android:id="@+id/magikeyboard_package_text"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@color/grey_blue_deep"
|
|
android:gravity="center"
|
|
android:textSize="12sp"
|
|
tools:text="com.kunzisoft.keepass"
|
|
android:maxLines="1"
|
|
android:ellipsize="end"
|
|
android:textColor="@color/grey_blue_slighter"/>
|
|
<com.kunzisoft.keepass.magikeyboard.KeyboardView
|
|
android:id="@+id/magikeyboard_view"
|
|
style="@style/KeepassDXStyle.Keyboard"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content" />
|
|
</LinearLayout> |