| OLD | NEW |
| 1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <!-- | 2 <!-- |
| 3 Copyright 2013 The Chromium Authors. All rights reserved. | 3 Copyright 2013 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 <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 | 10 |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 <SeekBar | 37 <SeekBar |
| 38 android:id="@+id/seek_bar" | 38 android:id="@+id/seek_bar" |
| 39 android:layout_width="match_parent" | 39 android:layout_width="match_parent" |
| 40 android:layout_height="75dp" | 40 android:layout_height="75dp" |
| 41 android:layout_below="@id/text" | 41 android:layout_below="@id/text" |
| 42 android:progressDrawable="@android:color/transparent" | 42 android:progressDrawable="@android:color/transparent" |
| 43 android:thumb="@drawable/color_picker_advanced_select_handle" | 43 android:thumb="@drawable/color_picker_advanced_select_handle" |
| 44 android:translationY="25dp" /> | 44 android:translationY="25dp" /> |
| 45 | 45 |
| 46 </RelativeLayout> | 46 </RelativeLayout> |
| OLD | NEW |