Durable Storage: Refactor browser test and test the basic "deny" flow.
[chromium-blink-merge.git] / chrome / android / java / res / layout / select_bookmark_folder.xml
blob69d353ef5756951156f4790235c1de1ff516c166
1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright 2015 The Chromium Authors. All rights reserved.
3      Use of this source code is governed by a BSD-style license that can be
4      found in the LICENSE file. -->
6 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
7     android:layout_width="match_parent"
8     android:layout_height="match_parent"
9     android:orientation="vertical" >
10     <LinearLayout
11         android:id="@+id/title_holder"
12         style="@style/ButtonBar" >
13         <TextView
14             android:id="@+id/choose_folder_title"
15             style="@style/AlertDialogTitle"
16             android:layout_width="0dp"
17             android:layout_weight="1"
18             android:text="@string/choose_folder"
19             android:paddingTop="10dp"
20             android:paddingBottom="10dp" />
21         <Button
22             android:id="@+id/new_folder_btn"
23             style="@style/ButtonBarButton"
24             android:layout_width="wrap_content"
25             android:layout_weight="0"
26             android:text="@string/new_folder"
27             android:paddingStart="15dp"
28             android:paddingEnd="15dp"
29             android:background="?android:attr/selectableItemBackground" />
30     </LinearLayout>
31     <View
32         android:id="@+id/title_divider"
33         style="@style/AlertDialogTitleDivider" />
34     <ListView
35         android:id="@+id/bookmark_folder_list"
36         android:layout_width="match_parent"
37         android:layout_height="match_parent" />
38     <TextView
39         android:id="@+id/empty_folders"
40         android:layout_width="wrap_content"
41         android:layout_height="wrap_content"
42         android:gravity="center"
43         android:paddingBottom="25dp"
44         android:paddingStart="5dp"
45         android:paddingEnd="5dp"
46         android:paddingTop="25dp"
47         android:textAppearance="?android:attr/textAppearanceMedium"
48         android:visibility="gone" />
49 </LinearLayout>