]> git.ipfire.org Git - thirdparty/strongswan.git/blame - src/frontends/android/app/src/main/res/layout/trusted_certificates_item.xml
Update copyright headers after acquisition by secunet
[thirdparty/strongswan.git] / src / frontends / android / app / src / main / res / layout / trusted_certificates_item.xml
CommitLineData
b21979f1
TB
1<?xml version="1.0" encoding="utf-8"?>
2<!--
3 Copyright (C) 2012 Tobias Brunner
19ef2aec
TB
4
5 Copyright (C) secunet Security Networks AG
b21979f1
TB
6
7 This program is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by the
9 Free Software Foundation; either version 2 of the License, or (at your
10 option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
11
12 This program is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
16-->
db8bea83 17<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
b21979f1 18 android:layout_width="match_parent"
db8bea83
TB
19 android:layout_height="wrap_content"
20 android:minHeight="?android:attr/listPreferredItemHeight"
21 android:background="?android:attr/selectableItemBackground"
22 android:padding="10dp" >
b21979f1 23
db8bea83 24 <TextView android:id="@+id/subject_primary"
b21979f1 25 android:layout_width="match_parent"
db8bea83
TB
26 android:layout_height="wrap_content"
27 android:textAppearance="?android:attr/textAppearanceMedium" />
b21979f1 28
db8bea83
TB
29 <TextView android:id="@+id/subject_secondary"
30 android:layout_width="match_parent"
31 android:layout_height="wrap_content"
32 android:layout_below="@id/subject_primary"
33 android:layout_alignLeft="@id/subject_primary"
34 android:textAppearance="?android:attr/textAppearanceSmall"
35 android:textColor="?android:attr/textColorSecondary" />
36
37</RelativeLayout>