]> git.ipfire.org Git - thirdparty/strongswan.git/blame - src/frontends/android/app/src/main/res/layout/remediation_instruction_item.xml
Update copyright headers after acquisition by secunet
[thirdparty/strongswan.git] / src / frontends / android / app / src / main / res / layout / remediation_instruction_item.xml
CommitLineData
b6e05f65
TB
1<?xml version="1.0" encoding="utf-8"?>
2<!--
3 Copyright (C) 2013 Tobias Brunner
19ef2aec
TB
4
5 Copyright (C) secunet Security Networks AG
b6e05f65
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-->
d4bf6bfb 17<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
b6e05f65
TB
18 android:layout_width="match_parent"
19 android:layout_height="wrap_content"
20 android:paddingBottom="8dip"
21 android:paddingTop="8dip"
22 android:background="?android:attr/activatedBackgroundIndicator"
23 android:minHeight="?android:attr/listPreferredItemHeight"
24 android:mode="twoLine" >
25
26 <TextView
27 android:id="@android:id/text1"
28 android:layout_width="match_parent"
29 android:layout_height="wrap_content"
30 android:layout_marginLeft="15dp"
31 android:layout_marginRight="15dp"
32 android:textAppearance="?android:attr/textAppearanceMedium"
33 android:textIsSelectable="false" />
34
35 <TextView
36 android:id="@android:id/text2"
37 android:layout_width="match_parent"
38 android:layout_height="wrap_content"
39 android:layout_below="@android:id/text1"
40 android:layout_alignLeft="@android:id/text1"
41 android:layout_alignRight="@android:id/text1"
42 android:textColor="?android:textColorSecondary"
43 android:textAppearance="?android:attr/textAppearanceSmall"
44 android:singleLine="true"
45 android:ellipsize="end"
46 android:textIsSelectable="false" />
47
d4bf6bfb 48</RelativeLayout>