aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/main/res/layout/linked_id_view_fragment.xml
diff options
context:
space:
mode:
authorVincent Breitmoser <valodim@mugenguild.com>2015-03-06 14:20:58 +0100
committerVincent Breitmoser <valodim@mugenguild.com>2015-03-06 14:21:13 +0100
commit6e17d5244dcbfaad5c4de902e1f4c2cd913fd596 (patch)
tree52058bdfbad4395bf5fcae519791fa8f3c8a07fc /OpenKeychain/src/main/res/layout/linked_id_view_fragment.xml
parenta2419aa688afb61c02a1fcd4a8d1df46fdd97b5e (diff)
downloadopen-keychain-6e17d5244dcbfaad5c4de902e1f4c2cd913fd596.tar.gz
open-keychain-6e17d5244dcbfaad5c4de902e1f4c2cd913fd596.tar.bz2
open-keychain-6e17d5244dcbfaad5c4de902e1f4c2cd913fd596.zip
first steps in ui towards confirmation of linked ids
Diffstat (limited to 'OpenKeychain/src/main/res/layout/linked_id_view_fragment.xml')
-rw-r--r--OpenKeychain/src/main/res/layout/linked_id_view_fragment.xml40
1 files changed, 34 insertions, 6 deletions
diff --git a/OpenKeychain/src/main/res/layout/linked_id_view_fragment.xml b/OpenKeychain/src/main/res/layout/linked_id_view_fragment.xml
index abd71416f..b1a6490c7 100644
--- a/OpenKeychain/src/main/res/layout/linked_id_view_fragment.xml
+++ b/OpenKeychain/src/main/res/layout/linked_id_view_fragment.xml
@@ -32,6 +32,14 @@
<include layout="@layout/linked_id_item" />
<LinearLayout
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:orientation="vertical"
+ android:animateLayoutChanges="true"
+ android:id="@+id/linked_id_certs">
+ </LinearLayout>
+
+ <LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
@@ -57,14 +65,34 @@
style="?android:attr/borderlessButtonStyle"
/>
- <Button
- android:id="@+id/verify_button"
+ <ViewAnimator
+ android:id="@+id/button_animator"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:text="Verify"
- android:textColor="@color/link_text_material_light"
- style="?android:attr/borderlessButtonStyle"
- />
+ android:inAnimation="@anim/fade_in"
+ android:outAnimation="@anim/fade_out">
+ <Button
+ android:id="@+id/button_verify"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="Verify"
+ android:textColor="@color/link_text_material_light"
+ style="?android:attr/borderlessButtonStyle" />
+ <Button
+ android:id="@+id/button_retry"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="Retry"
+ android:textColor="@color/link_text_material_light"
+ style="?android:attr/borderlessButtonStyle" />
+ <Button
+ android:id="@+id/button_confirm"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="Confirm"
+ android:textColor="@color/link_text_material_light"
+ style="?android:attr/borderlessButtonStyle" />
+ </ViewAnimator>
</LinearLayout>