]> git.ipfire.org Git - thirdparty/strongswan.git/blob - src/frontends/android/app/src/main/res/layout/profile_list_item.xml
android: Provide a fallback for sigwaitinfo()
[thirdparty/strongswan.git] / src / frontends / android / app / src / main / res / layout / profile_list_item.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <!--
3 Copyright (C) 2012 Tobias Brunner
4 Copyright (C) 2012 Giuliano Grassi
5 Copyright (C) 2012 Ralf Sager
6 Hochschule fuer Technik Rapperswil
7
8 This program is free software; you can redistribute it and/or modify it
9 under the terms of the GNU General Public License as published by the
10 Free Software Foundation; either version 2 of the License, or (at your
11 option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
12
13 This program is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
17 -->
18 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
19 android:layout_width="match_parent"
20 android:layout_height="wrap_content"
21 android:orientation="vertical"
22 android:paddingBottom="6dip"
23 android:paddingTop="4dip"
24 android:background="?android:attr/activatedBackgroundIndicator" >
25
26 <TextView
27 android:id="@+id/profile_item_name"
28 android:layout_width="wrap_content"
29 android:layout_height="wrap_content"
30 android:layout_marginLeft="15dp"
31 android:textAppearance="?android:attr/textAppearanceMedium" />
32
33 <TextView
34 android:id="@+id/profile_item_gateway"
35 android:layout_width="wrap_content"
36 android:layout_height="wrap_content"
37 android:textColor="?android:textColorSecondary"
38 android:textAppearance="?android:attr/textAppearanceSmall"
39 android:layout_marginLeft="15dp" />
40
41 <TextView
42 android:id="@+id/profile_item_username"
43 android:layout_width="wrap_content"
44 android:layout_height="wrap_content"
45 android:textColor="?android:textColorSecondary"
46 android:textAppearance="?android:attr/textAppearanceSmall"
47 android:layout_marginLeft="15dp" />
48
49 <TextView
50 android:id="@+id/profile_item_certificate"
51 android:layout_width="wrap_content"
52 android:layout_height="wrap_content"
53 android:textColor="?android:textColorSecondary"
54 android:textAppearance="?android:attr/textAppearanceSmall"
55 android:singleLine="true"
56 android:ellipsize="end"
57 android:layout_marginLeft="15dp" />
58
59 </LinearLayout>