blob: a30dbff64e3f007151447a70876cb6295de840a5 [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright 2015 The Chromium Authors
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:theme="@style/Theme.Chromium.Widget"
tools:ignore="MergeRootFrame">
<ListView
android:id="@+id/bookmarks_list"
style="@style/DarkModeCompatibleVerticalScrolling"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/bookmark_widget_background"
android:divider="@null"
android:drawSelectorOnTop="true"
android:listSelector="@drawable/bookmark_widget_list_selector"
android:clipToOutline="true" />
<TextView
android:id="@+id/empty_message"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="@dimen/bookmark_widget_min_height"
android:paddingBottom="@dimen/bookmark_widget_min_height"
android:gravity="center"
android:text="@string/bookmark_widget_empty_msg"
android:textAppearance="@style/TextAppearance.TextSmall.Secondary"
android:visibility="gone" />
</FrameLayout>