Database name can be set through DB prefs QuickUnlock screen shows database name instead of file name (if a name exists) EntryEditActivity: removed bugs related to activity state (occured when using file picker/password generator after making changes in the entry) Added KeeValueTest as test project for UI problems
49 lines
1.9 KiB
XML
49 lines
1.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent">
|
|
<LinearLayout
|
|
android:id="@+id/top"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:orientation="horizontal" />
|
|
<LinearLayout
|
|
android:id="@+id/bottom_bar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:layout_alignParentBottom="true">
|
|
<FrameLayout
|
|
android:id="@+id/entry_edit"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1">
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:paddingRight="20dp"
|
|
android:drawablePadding="8dp"
|
|
android:gravity="center_vertical"
|
|
android:text="uia" />
|
|
</FrameLayout>
|
|
</LinearLayout>
|
|
<ImageView
|
|
android:id="@+id/entry_divider2"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_above="@id/bottom_bar"
|
|
android:scaleType="fitXY" />
|
|
<ScrollView
|
|
android:id="@+id/entry_scroll"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:layout_above="@id/entry_divider2"
|
|
android:fillViewport="true"
|
|
android:scrollbarStyle="insideOverlay">
|
|
<keepass2android.view.EntryContentsView
|
|
android:id="@+id/entry_contents"
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="fill_parent" />
|
|
</ScrollView>
|
|
</RelativeLayout> |