summaryrefslogtreecommitdiffstats
path: root/res/layout/history.xml
diff options
context:
space:
mode:
authorJeff Hamilton <jham@android.com>2010-08-18 16:31:59 -0500
committerJeff Hamilton <jham@android.com>2010-08-18 16:32:22 -0500
commit64144e49208df145c8362dfa037335c7b9210167 (patch)
treea3aeb5b1e57935e11c773dab5315b3dc499d3748 /res/layout/history.xml
parent059fae07650065571bd902b4b794050d73c5a1ee (diff)
downloadandroid_packages_apps_Gello-64144e49208df145c8362dfa037335c7b9210167.tar.gz
android_packages_apps_Gello-64144e49208df145c8362dfa037335c7b9210167.tar.bz2
android_packages_apps_Gello-64144e49208df145c8362dfa037335c7b9210167.zip
Switch the bookmarks and history over to fragments.
Change-Id: If4edc97d1115bfd261136d5b8cfc82afa21f8ced
Diffstat (limited to 'res/layout/history.xml')
-rw-r--r--res/layout/history.xml38
1 files changed, 38 insertions, 0 deletions
diff --git a/res/layout/history.xml b/res/layout/history.xml
new file mode 100644
index 00000000..f6e844a0
--- /dev/null
+++ b/res/layout/history.xml
@@ -0,0 +1,38 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2010 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+>
+
+ <ExpandableListView android:id="@android:id/list"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:drawSelectorOnTop="false"
+ />
+
+ <TextView android:id="@android:id/empty"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center"
+
+ android:textAppearance="?android:attr/textAppearanceLarge"
+ android:text="@string/empty_history"
+ android:visibility="gone"
+ />
+
+</FrameLayout> \ No newline at end of file