| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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> |
| OLD | NEW |