]> git.ipfire.org Git - thirdparty/strongswan.git/blame - src/frontends/android/app/src/main/res/layout/profile_list_fragment.xml
Update copyright headers after acquisition by secunet
[thirdparty/strongswan.git] / src / frontends / android / app / src / main / res / layout / profile_list_fragment.xml
CommitLineData
7329618c
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
7329618c
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-->
17<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
18 android:layout_width="match_parent"
19 android:layout_height="match_parent"
20 android:paddingBottom="10dp"
21 android:paddingTop="10dp"
22 android:paddingLeft="5dp"
23 android:paddingRight="5dp" >
24
25 <ListView
26 android:id="@+id/profile_list"
27 android:layout_width="match_parent"
28 android:layout_height="match_parent"
29 android:dividerHeight="1dp"
30 android:divider="?android:attr/listDivider"
31 android:scrollbarAlwaysDrawVerticalTrack="true" />
32
33 <TextView android:id="@+id/profile_list_empty"
34 android:layout_width="match_parent"
35 android:layout_height="match_parent"
36 android:layout_marginLeft="15dp"
37 android:text="@string/no_profiles"/>
38
39</FrameLayout>