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

Side by Side Diff: remoting/android/java/res/layout/main.xml

Issue 1827713002: [remoting android] Add padding around the no-hosts text. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 2
3 <!-- Copyright 2014 The Chromium Authors. All rights reserved. 3 <!-- Copyright 2014 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be 4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file. 5 found in the LICENSE file.
6 --> 6 -->
7 7
8 <android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.co m/apk/res/android" 8 <android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.co m/apk/res/android"
9 android:id="@+id/drawer_layout" 9 android:id="@+id/drawer_layout"
10 android:layout_width="match_parent" 10 android:layout_width="match_parent"
(...skipping 14 matching lines...) Expand all
25 android:layout_width="match_parent"> 25 android:layout_width="match_parent">
26 <ListView 26 <ListView
27 android:id="@+id/hostList_chooser" 27 android:id="@+id/hostList_chooser"
28 android:layout_height="match_parent" 28 android:layout_height="match_parent"
29 android:layout_width="match_parent"/> 29 android:layout_width="match_parent"/>
30 <LinearLayout 30 <LinearLayout
31 android:id="@+id/hostList_empty" 31 android:id="@+id/hostList_empty"
32 android:gravity="center" 32 android:gravity="center"
33 android:layout_height="match_parent" 33 android:layout_height="match_parent"
34 android:layout_width="match_parent" 34 android:layout_width="match_parent"
35 android:padding="16dp"
35 android:orientation="vertical" 36 android:orientation="vertical"
36 android:visibility="gone"> 37 android:visibility="gone">
37 <ImageView 38 <ImageView
38 android:layout_height="wrap_content" 39 android:layout_height="wrap_content"
39 android:layout_width="wrap_content" 40 android:layout_width="wrap_content"
40 android:src="@drawable/empty_host_list" 41 android:src="@drawable/empty_host_list"
41 android:padding="16dp" 42 android:padding="16dp"
42 android:contentDescription="@null"/> 43 android:contentDescription="@null"/>
43 <TextView 44 <TextView
44 android:gravity="center" 45 android:gravity="center"
(...skipping 29 matching lines...) Expand all
74 <LinearLayout 75 <LinearLayout
75 android:id="@+id/navigation_drawer" 76 android:id="@+id/navigation_drawer"
76 android:layout_width="300dp" 77 android:layout_width="300dp"
77 android:layout_height="match_parent" 78 android:layout_height="match_parent"
78 android:orientation="vertical" 79 android:orientation="vertical"
79 android:layout_gravity="start" 80 android:layout_gravity="start"
80 android:background="@android:color/background_light" 81 android:background="@android:color/background_light"
81 android:fitsSystemWindows="true"> 82 android:fitsSystemWindows="true">
82 </LinearLayout> 83 </LinearLayout>
83 </android.support.v4.widget.DrawerLayout> 84 </android.support.v4.widget.DrawerLayout>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698