]> git.ipfire.org Git - thirdparty/strongswan.git/blame - src/frontends/android/app/src/main/res/layout/remediation_instruction.xml
android: Migrate to the Gradle build system
[thirdparty/strongswan.git] / src / frontends / android / app / src / main / res / layout / remediation_instruction.xml
CommitLineData
ea022bb1
TB
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<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
17 android:layout_width="match_parent"
18 android:layout_height="match_parent"
19 android:orientation="vertical"
20 android:padding="5dp" >
21
22 <TextView
23 android:id="@+id/title"
24 android:layout_width="wrap_content"
25 android:layout_height="wrap_content"
26 android:layout_marginLeft="10dp"
27 android:textIsSelectable="true"
28 android:textAppearance="?android:attr/textAppearanceLarge" />
29
30 <TextView
31 android:id="@+id/description"
32 android:layout_width="wrap_content"
33 android:layout_height="wrap_content"
34 android:layout_marginLeft="10dp"
35 android:textIsSelectable="true"
36 android:textColor="?android:textColorSecondary"
37 android:textAppearance="?android:attr/textAppearanceMedium" />
38
39 <TextView
40 android:id="@+id/list_header"
41 android:layout_width="wrap_content"
42 android:layout_height="wrap_content"
43 android:layout_marginLeft="10dp"
44 android:layout_marginTop="20dp"
45 android:textIsSelectable="true"
46 android:textAppearance="?android:attr/textAppearanceMedium" />
47
48 <include
49 layout="@android:layout/list_content"
50 android:layout_width="match_parent"
51 android:layout_height="0dp"
52 android:layout_weight="1"
53 android:layout_margin="5dp" />
54
55</LinearLayout>