OLD | NEW |
1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
2 <!-- Copyright 2013 The Chromium Authors. All rights reserved. | 2 <!-- Copyright 2013 The Chromium Authors. All rights reserved. |
3 | 3 |
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 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" | 7 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" |
8 android:layout_width="wrap_content" | 8 android:layout_width="wrap_content" |
9 android:layout_height="wrap_content" | 9 android:layout_height="wrap_content" |
10 android:background="@drawable/bubble"> | 10 android:background="@drawable/bubble"> |
(...skipping 22 matching lines...) Expand all Loading... |
33 | 33 |
34 </LinearLayout> | 34 </LinearLayout> |
35 | 35 |
36 <ImageView | 36 <ImageView |
37 android:id="@id/icon_view" | 37 android:id="@id/icon_view" |
38 android:layout_width="19dp" | 38 android:layout_width="19dp" |
39 android:layout_height="19dp" | 39 android:layout_height="19dp" |
40 android:layout_alignParentStart="true" | 40 android:layout_alignParentStart="true" |
41 android:layout_below="@id/top_view" | 41 android:layout_below="@id/top_view" |
42 android:layout_marginEnd="8dp" | 42 android:layout_marginEnd="8dp" |
43 android:src="@drawable/pageinfo_warning_major" /> | 43 android:src="@drawable/ic_warning" /> |
44 | 44 |
45 <LinearLayout | 45 <LinearLayout |
46 android:id="@id/text_wrapper" | 46 android:id="@id/text_wrapper" |
47 android:layout_width="wrap_content" | 47 android:layout_width="wrap_content" |
48 android:layout_height="wrap_content" | 48 android:layout_height="wrap_content" |
49 android:layout_below="@id/top_view" | 49 android:layout_below="@id/top_view" |
50 android:layout_toEndOf="@id/icon_view" | 50 android:layout_toEndOf="@id/icon_view" |
51 android:orientation="vertical"> | 51 android:orientation="vertical"> |
52 | 52 |
53 <TextView | 53 <TextView |
54 android:id="@+id/main_text" | 54 android:id="@+id/main_text" |
55 android:layout_width="wrap_content" | 55 android:layout_width="wrap_content" |
56 android:layout_height="wrap_content" | 56 android:layout_height="wrap_content" |
57 android:maxWidth="300dp" | 57 android:maxWidth="300dp" |
58 android:textColor="@android:color/black" | 58 android:textColor="@android:color/black" |
59 android:textSize="16sp" /> | 59 android:textSize="16sp" /> |
60 | 60 |
61 <TextView | 61 <TextView |
62 android:id="@+id/sub_text" | 62 android:id="@+id/sub_text" |
63 android:layout_width="wrap_content" | 63 android:layout_width="wrap_content" |
64 android:layout_height="wrap_content" | 64 android:layout_height="wrap_content" |
65 android:maxWidth="300dp" | 65 android:maxWidth="300dp" |
66 android:textColor="#444" | 66 android:textColor="#444" |
67 android:textSize="13sp" /> | 67 android:textSize="13sp" /> |
68 | 68 |
69 </LinearLayout> | 69 </LinearLayout> |
70 | 70 |
71 </RelativeLayout> | 71 </RelativeLayout> |
OLD | NEW |