]> git.ipfire.org Git - thirdparty/strongswan.git/blob - src/frontends/android/res/layout/log_fragment.xml
android: Provide a fallback for sigwaitinfo()
[thirdparty/strongswan.git] / src / frontends / android / res / layout / log_fragment.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="match_parent"
21 android:orientation="vertical" >
22
23 <org.strongswan.android.ui.LogScrollView
24 android:id="@+id/scroll_view"
25 android:layout_width="match_parent"
26 android:layout_height="match_parent"
27 android:layout_margin="10dp"
28 android:scrollbarFadeDuration="0"
29 android:scrollbarAlwaysDrawVerticalTrack="true" >
30
31 <TextView
32 android:id="@+id/log_view"
33 android:layout_width="wrap_content"
34 android:layout_height="wrap_content"
35 android:textSize="9sp"
36 android:typeface="monospace" >
37 </TextView>
38
39 </org.strongswan.android.ui.LogScrollView>
40
41 </LinearLayout>