OLD | NEW |
(Empty) | |
| 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <!-- Copyright 2016 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 <RelativeLayout |
| 7 xmlns:android="http://schemas.android.com/apk/res/android" |
| 8 android:layout_width="match_parent" |
| 9 android:layout_height="wrap_content" |
| 10 android:minHeight="?attr/listPreferredItemHeightSmall" |
| 11 android:padding="5dp"> |
| 12 <CheckBox |
| 13 android:id="@+id/icon_row_checkbox" |
| 14 android:layout_width="wrap_content" |
| 15 android:layout_height="wrap_content" |
| 16 android:layout_alignParentStart="true" |
| 17 android:layout_toStartOf="@+id/icon_row_image" |
| 18 android:textAppearance="?android:attr/textAppearanceMedium" |
| 19 android:layout_centerVertical="true" |
| 20 android:textColor="?attr/textColorAlertDialogListItem"/> |
| 21 <ImageView |
| 22 android:id="@+id/icon_row_image" |
| 23 android:layout_width="wrap_content" |
| 24 android:layout_height="wrap_content" |
| 25 android:layout_alignParentEnd="true" |
| 26 android:layout_centerVertical="true" |
| 27 android:padding="5dp" /> |
| 28 </RelativeLayout> |
OLD | NEW |