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

Side by Side Diff: chrome/android/java_staging/res/layout/eb_folder_select_activity.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:minHeight="@dimen/enhanced_bookmark_minimum_dialog_size_tablet"
10 android:orientation="vertical" >
11
12 <LinearLayout
13 android:id="@+id/title_holder"
14 android:layout_width="match_parent"
15 android:layout_height="@dimen/toolbar_height_no_shadow"
16 android:orientation="horizontal" >
17
18 <ImageButton
19 android:id="@+id/back"
20 style="@style/EnhancedBookmarkTitleBarButton"
21 android:contentDescription="@string/accessibility_toolbar_btn_back"
22 android:src="@drawable/eb_back_normal" />
23
24 <TextView
25 android:layout_width="wrap_content"
26 android:layout_height="match_parent"
27 android:gravity="center_vertical"
28 android:singleLine="true"
29 android:text="@string/enhanced_bookmark_choose_folder"
30 android:textColor="#343434"
31 android:textSize="20sp" />
32 </LinearLayout>
33
34 <View
35 android:id="@+id/shadow"
36 android:layout_width="match_parent"
37 android:layout_height="4dp"
38 android:layout_marginBottom="-4dp"
39 android:background="@drawable/eb_title_bar_shadow" />
40
41 <ListView
42 android:id="@+id/eb_folder_list"
43 android:layout_width="match_parent"
44 android:layout_height="match_parent"
45 android:divider="@null"
46 android:dividerHeight="0dp" />
47
48 <TextView
49 android:id="@+id/empty_folders"
50 android:layout_width="wrap_content"
51 android:layout_height="wrap_content"
52 android:gravity="center"
53 android:paddingBottom="25dp"
54 android:paddingEnd="5dp"
55 android:paddingStart="5dp"
56 android:paddingTop="25dp"
57 android:textAppearance="?android:attr/textAppearanceMedium"
58 android:visibility="gone" />
59
60 </LinearLayout>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698