blob: f441bdac825604d34e86065aff0827b8a8978c31 [file] [log] [blame]
Robin Leebaefdcf2015-08-26 10:57:44 +01001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2015 The Android Open Source Project
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
Robin Leee68d9572016-07-19 16:10:39 +010016<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
17 android:layout_width="wrap_content"
Robin Leebaefdcf2015-08-26 10:57:44 +010018 android:layout_height="wrap_content"
Robin Leee68d9572016-07-19 16:10:39 +010019 android:orientation="vertical">
Robin Leebaefdcf2015-08-26 10:57:44 +010020
21 <TextView
22 android:id="@+id/alias"
Robin Leee68d9572016-07-19 16:10:39 +010023 android:layout_width="wrap_content"
Robin Leebaefdcf2015-08-26 10:57:44 +010024 android:layout_height="wrap_content"
25 android:layout_weight="1"
26 android:textAppearance="?android:attr/textAppearanceMedium" />
27
Robin Leee68d9572016-07-19 16:10:39 +010028 <TextView
29 android:id="@+id/purpose"
30 android:layout_width="wrap_content"
Robin Leebaefdcf2015-08-26 10:57:44 +010031 android:layout_height="wrap_content"
Robin Leee68d9572016-07-19 16:10:39 +010032 android:textAppearance="?android:attr/textAppearanceSmall"
33 android:textColor="?android:attr/textColorSecondary" />
34
35 <LinearLayout
36 android:id="@+id/contents"
37 android:layout_width="wrap_content"
38 android:layout_height="wrap_content"
39 android:orientation="vertical"
40 android:paddingTop="10dp">
41
42 <TextView
43 android:id="@+id/contents_title"
44 android:text="@string/credential_contains"
45 android:layout_width="wrap_content"
46 android:layout_height="wrap_content"
47 android:textAppearance="?android:attr/textAppearanceSmall"
48 android:textColor="?android:attr/textColorSecondary"/>
Robin Leebaefdcf2015-08-26 10:57:44 +010049
50 <TextView
51 android:id="@+id/contents_userkey"
52 android:text="@string/one_userkey"
Robin Leee68d9572016-07-19 16:10:39 +010053 android:layout_width="wrap_content"
Robin Leebaefdcf2015-08-26 10:57:44 +010054 android:layout_height="wrap_content"
55 android:textAppearance="?android:attr/textAppearanceSmall"
Robin Leee68d9572016-07-19 16:10:39 +010056 android:textColor="?android:attr/textColorTertiary"
57 android:paddingStart="?android:attr/listPreferredItemPaddingStart"/>
Robin Leebaefdcf2015-08-26 10:57:44 +010058
59 <TextView
60 android:id="@+id/contents_usercrt"
61 android:text="@string/one_usercrt"
Robin Leee68d9572016-07-19 16:10:39 +010062 android:layout_width="wrap_content"
Robin Leebaefdcf2015-08-26 10:57:44 +010063 android:layout_height="wrap_content"
64 android:textAppearance="?android:attr/textAppearanceSmall"
Robin Leee68d9572016-07-19 16:10:39 +010065 android:textColor="?android:attr/textColorTertiary"
66 android:paddingStart="?android:attr/listPreferredItemPaddingStart"/>
Robin Leebaefdcf2015-08-26 10:57:44 +010067
68 <TextView
69 android:id="@+id/contents_cacrt"
70 android:text="@string/one_cacrt"
Robin Leee68d9572016-07-19 16:10:39 +010071 android:layout_width="wrap_content"
Robin Leebaefdcf2015-08-26 10:57:44 +010072 android:layout_height="wrap_content"
73 android:textAppearance="?android:attr/textAppearanceSmall"
Robin Leee68d9572016-07-19 16:10:39 +010074 android:textColor="?android:attr/textColorTertiary"
75 android:paddingStart="?android:attr/listPreferredItemPaddingStart"/>
Robin Leebaefdcf2015-08-26 10:57:44 +010076 </LinearLayout>
77</LinearLayout>