diff options
author | Vincent Breitmoser <valodim@mugenguild.com> | 2015-03-09 21:03:27 +0100 |
---|---|---|
committer | Vincent Breitmoser <valodim@mugenguild.com> | 2015-03-09 21:03:27 +0100 |
commit | 159b197930457fc58b251d6a18d2db44a6e30d24 (patch) | |
tree | 2c28b081fefbf8e73247baeea3fa29055048630c /OpenKeychain/src/main/res/layout | |
parent | 138773798ae9325ba92021c8779f71e6fc0c23c6 (diff) | |
download | open-keychain-159b197930457fc58b251d6a18d2db44a6e30d24.tar.gz open-keychain-159b197930457fc58b251d6a18d2db44a6e30d24.tar.bz2 open-keychain-159b197930457fc58b251d6a18d2db44a6e30d24.zip |
add linked id certs uri to KeychainProvider
Diffstat (limited to 'OpenKeychain/src/main/res/layout')
-rw-r--r-- | OpenKeychain/src/main/res/layout/linked_id_cert.xml | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/OpenKeychain/src/main/res/layout/linked_id_cert.xml b/OpenKeychain/src/main/res/layout/linked_id_cert.xml deleted file mode 100644 index b2b841ffc..000000000 --- a/OpenKeychain/src/main/res/layout/linked_id_cert.xml +++ /dev/null @@ -1,52 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:minHeight="?android:attr/listPreferredItemHeight" - android:orientation="horizontal" - android:singleLine="true"> - - <LinearLayout - android:orientation="vertical" - android:layout_gravity="center_vertical" - android:layout_width="0dip" - android:layout_marginLeft="16dp" - android:layout_marginTop="4dp" - android:layout_marginBottom="4dp" - android:layout_height="wrap_content" - android:layout_weight="1"> - - <TextView - android:id="@+id/linked_cert_text" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:text="Verifying…" - android:textAppearance="?android:attr/textAppearanceMedium" /> - - </LinearLayout> - - <ViewAnimator - android:layout_width="22dp" - android:layout_height="22dp" - android:layout_marginLeft="16dp" - android:layout_marginRight="16dp" - android:layout_gravity="center" - android:id="@+id/linked_cert_progress" - android:inAnimation="@anim/fade_in" - android:outAnimation="@anim/fade_out"> - - <ProgressBar - android:layout_width="22dp" - android:layout_height="22dp" - android:indeterminate="true" - /> - - <ImageView - android:layout_width="22dp" - android:layout_height="wrap_content" - android:src="@drawable/status_signature_unknown_cutout_24dp" - android:id="@+id/linked_cert_icon" - /> - </ViewAnimator> - -</LinearLayout> |