diff options
author | Arne Schwabe <arne@rfc2549.org> | 2013-06-06 23:38:45 +0200 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2013-06-06 23:38:45 +0200 |
commit | e3cfe6d24e7b0a05780ef8a8351d2f53df7f6f87 (patch) | |
tree | 69741e320ef20c0070d89cd30191edab0fe0cf27 /res/layout | |
parent | 4c01d6e43ab355c39ed4c66b54d85115bbeaaa2e (diff) |
Fix printing of certificate DN Namesv0.5.37
Diffstat (limited to 'res/layout')
-rw-r--r-- | res/layout/file_select.xml | 75 |
1 files changed, 37 insertions, 38 deletions
diff --git a/res/layout/file_select.xml b/res/layout/file_select.xml index 8c9e4da6..5e40b3a8 100644 --- a/res/layout/file_select.xml +++ b/res/layout/file_select.xml @@ -17,51 +17,50 @@ <!-- A layout to select a certificate, akin to a file selector on web pages. --> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:layout_margin="8dip" - android:gravity="center_vertical" > + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_margin="8dip" + android:gravity="center_vertical" > <Button - android:id="@+id/file_select_button" - style="@style/accountSetupButton" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_alignParentRight="true" - android:text="@string/file_select" /> + android:id="@+id/file_select_button" + style="@style/accountSetupButton" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_alignParentRight="true" + android:text="@string/file_select" /> <TextView - android:id="@+id/file_title" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_alignParentLeft="true" - android:layout_alignParentTop="true" - android:layout_toLeftOf="@+id/file_select_button" - android:text="@string/client_certificate_title" - android:textStyle="bold" /> + android:id="@+id/file_title" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_alignParentLeft="true" + android:layout_alignParentTop="true" + android:layout_toLeftOf="@+id/file_select_button" + android:text="@string/client_certificate_title" + android:textStyle="bold" /> <TextView - android:id="@+id/file_selected_item" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_alignParentLeft="true" - android:layout_below="@+id/file_title" - android:layout_marginLeft="16dip" - android:layout_toLeftOf="@+id/file_select_button" - android:ellipsize="end" - android:singleLine="true" - android:text="@string/file_nothing_selected" /> + android:id="@+id/file_selected_item" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_alignParentLeft="true" + android:layout_below="@+id/file_title" + android:layout_marginLeft="16dip" + android:layout_toLeftOf="@+id/file_select_button" + android:ellipsize="end" + android:singleLine="true" + android:text="@string/file_nothing_selected" /> <TextView - android:id="@+id/file_selected_description" - android:layout_width="wrap_content" - android:textIsSelectable="true" - android:layout_height="wrap_content" - android:layout_alignParentLeft="true" - android:layout_below="@+id/file_selected_item" - android:layout_marginLeft="16dip" - android:layout_toLeftOf="@+id/file_select_button" - android:ellipsize="end" - android:singleLine="true" /> + android:id="@+id/file_selected_description" + android:layout_width="wrap_content" + android:textIsSelectable="true" + android:layout_height="wrap_content" + android:layout_alignParentLeft="true" + android:layout_below="@+id/file_selected_item" + android:layout_marginLeft="16dip" + android:layout_toLeftOf="@+id/file_select_button" + android:ellipsize="end" /> </RelativeLayout>
\ No newline at end of file |