~ubuntu-branches/ubuntu/utopic/strongswan/utopic

« back to all changes in this revision

Viewing changes to src/frontends/android/res/layout/profile_list_fragment.xml

  • Committer: Package Import Robot
  • Author(s): Jonathan Davies
  • Date: 2014-01-20 19:00:59 UTC
  • mfrom: (1.2.6)
  • Revision ID: package-import@ubuntu.com-20140120190059-z8e4dl3g8cd09yi5
Tags: 5.1.2~dr3+git20130120-0ubuntu1
* Upstream Git snapshot for build fixes with regards to entropy.
* debian/rules:
  - Enforcing DEB_BUILD_OPTIONS=nostrip for library integrity checking.
  - Set TESTS_REDUCED_KEYLENGTHS to one generate smallest key-lengths in
    tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="utf-8"?>
 
2
<!--
 
3
    Copyright (C) 2012 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
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
 
17
    android:layout_width="match_parent"
 
18
    android:layout_height="match_parent"
 
19
    android:paddingBottom="10dp"
 
20
    android:paddingTop="10dp"
 
21
    android:paddingLeft="5dp"
 
22
    android:paddingRight="5dp" >
 
23
 
 
24
    <ListView
 
25
        android:id="@+id/profile_list"
 
26
        android:layout_width="match_parent"
 
27
        android:layout_height="match_parent"
 
28
        android:dividerHeight="1dp"
 
29
        android:divider="?android:attr/listDivider"
 
30
        android:scrollbarAlwaysDrawVerticalTrack="true" />
 
31
 
 
32
     <TextView android:id="@+id/profile_list_empty"
 
33
        android:layout_width="match_parent"
 
34
        android:layout_height="match_parent"
 
35
        android:layout_marginLeft="15dp"
 
36
        android:text="@string/no_profiles"/>
 
37
 
 
38
</FrameLayout>