Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(464)

Unified Diff: content/public/android/java/res/layout/multi_field_time_picker_dialog.xml

Issue 23648004: Clean up Android layouts. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/public/android/java/res/layout/multi_field_time_picker_dialog.xml
diff --git a/content/public/android/java/res/layout/multi_field_time_picker_dialog.xml b/content/public/android/java/res/layout/multi_field_time_picker_dialog.xml
index f6dfec3e69bcfc98f44362e28850e4fd8febd471..f149ef093f7d33a9899859ddce2e88d95216d7bb 100644
--- a/content/public/android/java/res/layout/multi_field_time_picker_dialog.xml
+++ b/content/public/android/java/res/layout/multi_field_time_picker_dialog.xml
@@ -26,7 +26,7 @@
/>
<View
- android:layout_width="fill_parent"
+ android:layout_width="match_parent"
android:layout_height="2dp"
android:paddingBottom="5dp"
android:paddingTop="5dp"
@@ -41,12 +41,12 @@
<NumberPicker
android:id="@+id/hour"
- android:layout_width="0dip"
+ android:layout_width="0dp"
android:layout_weight=".2"
android:textSize="12sp"
android:layout_height="wrap_content"
- android:layout_marginStart="4dip"
- android:layout_marginEnd="4dip"
+ android:layout_marginStart="4dp"
+ android:layout_marginEnd="4dp"
android:focusable="true"
android:focusableInTouchMode="true"
android:contentDescription="@string/accessibility_time_picker_hour"
@@ -59,12 +59,12 @@
/>
<NumberPicker
android:id="@+id/minute"
- android:layout_width="0dip"
+ android:layout_width="0dp"
android:layout_weight=".2"
android:textSize="12sp"
android:layout_height="wrap_content"
- android:layout_marginStart="4dip"
- android:layout_marginEnd="4dip"
+ android:layout_marginStart="4dp"
+ android:layout_marginEnd="4dp"
android:focusable="true"
android:focusableInTouchMode="true"
android:contentDescription="@string/accessibility_time_picker_minute"
@@ -77,12 +77,12 @@
android:text="@string/time_picker_dialog_minute_second_separator" />
<NumberPicker
android:id="@+id/second"
- android:layout_width="0dip"
+ android:layout_width="0dp"
android:layout_weight=".2"
android:textSize="12sp"
android:layout_height="wrap_content"
- android:layout_marginStart="4dip"
- android:layout_marginEnd="4dip"
+ android:layout_marginStart="4dp"
+ android:layout_marginEnd="4dp"
android:focusable="true"
android:focusableInTouchMode="true"
android:contentDescription="@string/accessibility_time_picker_second"
@@ -96,24 +96,24 @@
/>
<NumberPicker
android:id="@+id/milli"
- android:layout_width="0dip"
+ android:layout_width="0dp"
android:layout_weight=".2"
android:textSize="12sp"
android:layout_height="wrap_content"
- android:layout_marginStart="4dip"
- android:layout_marginEnd="4dip"
+ android:layout_marginStart="4dp"
+ android:layout_marginEnd="4dp"
android:focusable="true"
android:focusableInTouchMode="true"
android:contentDescription="@string/accessibility_time_picker_milli"
/>
<NumberPicker
android:id="@+id/ampm"
- android:layout_width="0dip"
+ android:layout_width="0dp"
android:layout_weight=".2"
android:textSize="12sp"
android:layout_height="wrap_content"
- android:layout_marginStart="4dip"
- android:layout_marginEnd="4dip"
+ android:layout_marginStart="4dp"
+ android:layout_marginEnd="4dp"
android:focusable="true"
android:focusableInTouchMode="true"
android:contentDescription="@string/accessibility_time_picker_ampm"
« no previous file with comments | « chrome/android/java/res/layout/js_modal_dialog.xml ('k') | content/public/android/java/res/layout/two_field_date_picker.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698