/WebVox/res/layout/act_scriptlist.xml
XML | 37 lines | 17 code | 4 blank | 16 comment | 0 complexity | 505cdf608b27da8ede2fd640c030dfee MD5 | raw file
1<!-- 2 Copyright (C) 2008 Jeffrey Sharkey, http://jsharkey.org/ 3 4 This program is free software: you can redistribute it and/or modify 5 it under the terms of the GNU General Public License as published by 6 the Free Software Foundation, either version 3 of the License, or 7 (at your option) any later version. 8 9 This program is distributed in the hope that it will be useful, 10 but WITHOUT ANY WARRANTY; without even the implied warranty of 11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 GNU General Public License for more details. 13 14 You should have received a copy of the GNU General Public License 15 along with this program. If not, see <http://www.gnu.org/licenses/>. 16--> 17 18<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 19 android:layout_width="fill_parent" 20 android:layout_height="fill_parent" 21 > 22 23 <ListView android:id="@android:id/list" 24 android:layout_width="fill_parent" 25 android:layout_height="fill_parent" 26 /> 27 28 <TextView 29 android:id="@android:id/empty" 30 android:layout_width="fill_parent" 31 android:layout_height="fill_parent" 32 android:gravity="center" 33 android:text="@string/manage_empty" 34 android:textAppearance="?android:attr/textAppearanceMedium" 35 /> 36 37</RelativeLayout>