1234567891011121314151617181920212223242526272829303132 |
- <?xml version="1.0" encoding="utf-8"?>
- <!--
- This file is part of Zandy.
-
- Zandy is free software: you can redistribute it and/or modify
- it under the terms of the GNU Affero General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
-
- Zandy is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Affero General Public License for more details.
-
- You should have received a copy of the GNU Affero General Public License
- along with Zandy. If not, see <http://www.gnu.org/licenses/>.
- -->
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical" android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:id="@+id/collections">
- <ListView android:id="@android:id/list" android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:layout_weight="1" android:drawSelectorOnTop="false" />
- <!-- What to do if there's no data to show in the list -->
- <TextView android:id="@android:id/empty" android:layout_width="fill_parent"
- android:layout_height="fill_parent" android:textAppearance="?android:attr/textAppearanceMedium"
- android:text="No collections to show. Try syncing." />
- </LinearLayout>
|