Chromium Code Reviews| 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 <LinearLayout | |
| 7 xmlns:android="http://schemas.android.com/apk/res/android" | |
| 8 android:layout_width="wrap_content" | |
| 9 android:layout_height="wrap_content"> | |
| 10 | |
| 11 <View | |
|
gone
2016/11/15 01:19:43
Indent 8 for attributes and 4 for children XML tag
gogerald1
2016/11/15 16:43:39
Done. Curious, how this indentation makes it easie
gone
2016/11/15 18:07:14
You can tell where children actually start and wha
| |
| 12 android:layout_width="1dp" | |
| 13 android:layout_height="48dp" | |
| 14 android:layout_gravity="center_vertical" | |
| 15 android:layout_marginStart="@dimen/payments_section_large_spacin g" | |
| 16 android:layout_marginEnd="@dimen/payments_section_large_spacing" | |
| 17 android:background="@color/payments_section_separator"/> | |
|
please use gerrit instead
2016/11/14 21:51:41
Please mark this importantForAccessibility="no", s
gogerald1
2016/11/15 16:43:39
Done.
| |
| 18 | |
| 19 <ImageView | |
| 20 android:layout_width="24dp" | |
| 21 android:layout_height="24dp" | |
| 22 android:layout_gravity="center_vertical" | |
| 23 android:src="@drawable/bookmark_edit_normal" | |
| 24 android:contentDescription="@null" /> | |
|
please use gerrit instead
2016/11/14 21:51:41
Please add a description for accessibility.
gogerald1
2016/11/15 16:43:39
Have set content description for the parent linear
| |
| 25 </LinearLayout> | |
| OLD | NEW |