diff options
Diffstat (limited to 'res/layout/browser_downloads_page.xml')
-rw-r--r-- | res/layout/browser_downloads_page.xml | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/res/layout/browser_downloads_page.xml b/res/layout/browser_downloads_page.xml index c83a727..1d4d4e6 100644 --- a/res/layout/browser_downloads_page.xml +++ b/res/layout/browser_downloads_page.xml @@ -18,8 +18,14 @@ ** limitations under the License. */ --> - -<ListView xmlns:android="http://schemas.android.com/apk/res/android" - android:id="@+id/list" - android:layout_width="fill_parent" - android:layout_height="fill_parent"/> +<merge xmlns:android="http://schemas.android.com/apk/res/android"> + <ListView + android:id="@+id/list" + android:layout_width="fill_parent" + android:layout_height="fill_parent"/> + <ViewStub + android:id="@+id/empty" + android:layout="@layout/no_downloads" + android:layout_width="fill_parent" + android:layout_height="fill_parent"/> +</merge> |