mirror of
https://github.com/bitwarden/mobile
synced 2025-12-05 23:53:33 +00:00
* PM-2320 Added new view for block autofill URIs on Android * PM-2320 Fix formatting * PM-2320 Improved validations on block autofill uris * PM-2320 Improved autofill block uris placeholder colors on different themes
28 lines
1.0 KiB
XML
28 lines
1.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingLeft="30dp"
|
|
android:paddingRight="30dp">
|
|
<TextView
|
|
android:id="@+id/lblHeader"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="@dimen/dialog_header_text_size"
|
|
android:layout_marginTop="5dp"
|
|
android:layout_marginBottom="-3dp"
|
|
android:labelFor="@+id/txtValue"/>
|
|
<EditText
|
|
android:id="@id/txtValue"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="@dimen/dialog_input_text_size"/>
|
|
<TextView
|
|
android:id="@+id/lblValueSubinfo"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="@dimen/dialog_sub_value_info_text_size"/>
|
|
</LinearLayout>
|
|
|