diff options
author | Daniel Gultsch <daniel@gultsch.de> | 2014-03-06 20:00:46 +0100 |
---|---|---|
committer | Daniel Gultsch <daniel@gultsch.de> | 2014-03-06 20:00:46 +0100 |
commit | c666b086d6be3d993b0b9c52a6aab916cd6942ab (patch) | |
tree | 99b6e7376bd9e5b0f5b26c88e3b1cc5d301fc712 /res/layout/contact_key.xml | |
parent | e319dd2cee7dc2597d4e9fcb8b52fe75b96c7b39 (diff) |
display keys in contact details
Diffstat (limited to '')
-rw-r--r-- | res/layout/contact_key.xml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/res/layout/contact_key.xml b/res/layout/contact_key.xml new file mode 100644 index 00000000..dcac42e9 --- /dev/null +++ b/res/layout/contact_key.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> + <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:orientation="vertical" + android:padding="8dp" > + + <TextView + android:id="@+id/key" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:textSize="18sp" + android:textColor="#5b5b5b" + android:typeface="monospace" + /> + <TextView + android:id="@+id/key_type" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:textColor="#5b5b5b" + /> + </LinearLayout>
\ No newline at end of file |