diff options
author | Andreas Straub <andy@strb.org> | 2015-08-15 18:52:47 +0200 |
---|---|---|
committer | Andreas Straub <andy@strb.org> | 2015-08-15 18:52:47 +0200 |
commit | 45d68c200e8573abf43a6584d045baf4fcafd196 (patch) | |
tree | b94197c0ffbde3f8398ec6175beceb76b5434239 /src/main/res/layout/activity_trust_keys.xml | |
parent | 32826ec29d28668b7f345ffcd45cd876dc980153 (diff) |
Display error message if all contact keys purged
Diffstat (limited to 'src/main/res/layout/activity_trust_keys.xml')
-rw-r--r-- | src/main/res/layout/activity_trust_keys.xml | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/main/res/layout/activity_trust_keys.xml b/src/main/res/layout/activity_trust_keys.xml index c535d51d..6f8a1bc9 100644 --- a/src/main/res/layout/activity_trust_keys.xml +++ b/src/main/res/layout/activity_trust_keys.xml @@ -16,6 +16,38 @@ android:orientation="vertical"> <LinearLayout + android:id="@+id/key_error_message_card" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:layout_marginLeft="@dimen/activity_horizontal_margin" + android:layout_marginRight="@dimen/activity_horizontal_margin" + android:layout_marginTop="@dimen/activity_vertical_margin" + android:layout_marginBottom="@dimen/activity_vertical_margin" + android:background="@drawable/infocard_border" + android:orientation="vertical" + android:padding="@dimen/infocard_padding" + android:visibility="gone"> + + <TextView + android:id="@+id/key_error_message_title" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:textColor="@color/black87" + android:textSize="?attr/TextSizeHeadline" + android:textStyle="bold" + android:text="@string/error_trustkeys_title"/> + + <TextView + android:id="@+id/key_error_message" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:textColor="@color/black87" + android:textSize="?attr/TextSizeBody" + android:padding="8dp"/> + + </LinearLayout> + + <LinearLayout android:id="@+id/own_keys_card" android:layout_width="fill_parent" android:layout_height="wrap_content" |