Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <?xml version="1.0" encoding="utf-8"?> | |
| 2 <!-- | |
| 3 Copyright (c) 2013 The Chromium Authors. All rights reserved. | |
|
Ted C
2015/04/27 19:04:01
no (c) here either
tsergeant
2015/04/28 03:15:00
Done.
| |
| 4 | |
| 5 Use of this source code is governed by a BSD-style license that can be | |
| 6 found in the LICENSE file. | |
| 7 --> | |
| 8 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
| 9 android:layout_width="match_parent" | |
| 10 android:layout_height="match_parent" | |
| 11 android:orientation="horizontal" > | |
| 12 | |
| 13 <ImageView | |
| 14 android:id="@+id/connection_info_icon" | |
| 15 android:layout_width="wrap_content" | |
| 16 android:layout_height="wrap_content" | |
| 17 android:contentDescription="@null" /> | |
| 18 | |
| 19 <LinearLayout | |
| 20 android:id="@+id/connection_info_text_layout" | |
| 21 android:layout_width="wrap_content" | |
| 22 android:layout_height="wrap_content" | |
| 23 android:orientation="vertical" | |
| 24 android:paddingStart="@dimen/connection_info_padding_thin" > | |
| 25 | |
| 26 <TextView | |
| 27 android:id="@+id/connection_info_headline" | |
| 28 android:layout_width="wrap_content" | |
| 29 android:layout_height="wrap_content" | |
| 30 android:paddingBottom="@dimen/connection_info_padding_thin" | |
| 31 android:textStyle="bold" /> | |
| 32 | |
| 33 <TextView | |
| 34 android:id="@+id/connection_info_description" | |
| 35 android:layout_width="wrap_content" | |
| 36 android:layout_height="wrap_content" /> | |
| 37 </LinearLayout> | |
| 38 | |
| 39 </LinearLayout> | |
| OLD | NEW |