Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(368)

Side by Side Diff: chrome/android/java_staging/res/layout/select_bookmark_folder.xml

Issue 1141283003: Upstream oodles of Chrome for Android code into Chromium. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: final patch? Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
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. -->
5
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698