]> git.ipfire.org Git - thirdparty/strongswan.git/blob - src/frontends/android/app/src/main/res/layout/remediation_instruction_item.xml
android: Migrate to the Gradle build system
[thirdparty/strongswan.git] / src / frontends / android / app / src / main / res / layout / remediation_instruction_item.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <!--
3 Copyright (C) 2013 Tobias Brunner
4 Hochschule fuer Technik Rapperswil
5
6 This program is free software; you can redistribute it and/or modify it
7 under the terms of the GNU General Public License as published by the
8 Free Software Foundation; either version 2 of the License, or (at your
9 option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
10
11 This program is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
15 -->
16 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
17 android:layout_width="match_parent"
18 android:layout_height="wrap_content"
19 android:paddingBottom="8dip"
20 android:paddingTop="8dip"
21 android:background="?android:attr/activatedBackgroundIndicator"
22 android:minHeight="?android:attr/listPreferredItemHeight"
23 android:mode="twoLine" >
24
25 <TextView
26 android:id="@android:id/text1"
27 android:layout_width="match_parent"
28 android:layout_height="wrap_content"
29 android:layout_marginLeft="15dp"
30 android:layout_marginRight="15dp"
31 android:textAppearance="?android:attr/textAppearanceMedium"
32 android:textIsSelectable="false" />
33
34 <TextView
35 android:id="@android:id/text2"
36 android:layout_width="match_parent"
37 android:layout_height="wrap_content"
38 android:layout_below="@android:id/text1"
39 android:layout_alignLeft="@android:id/text1"
40 android:layout_alignRight="@android:id/text1"
41 android:textColor="?android:textColorSecondary"
42 android:textAppearance="?android:attr/textAppearanceSmall"
43 android:singleLine="true"
44 android:ellipsize="end"
45 android:textIsSelectable="false" />
46
47 </RelativeLayout>