summaryrefslogtreecommitdiff
path: root/res/layout/time_picker_dialog.xml
diff options
context:
space:
mode:
Diffstat (limited to 'res/layout/time_picker_dialog.xml')
-rw-r--r--res/layout/time_picker_dialog.xml26
1 files changed, 11 insertions, 15 deletions
diff --git a/res/layout/time_picker_dialog.xml b/res/layout/time_picker_dialog.xml
index b4d2d1c..24b18c9 100644
--- a/res/layout/time_picker_dialog.xml
+++ b/res/layout/time_picker_dialog.xml
@@ -15,13 +15,13 @@
~ limitations under the License
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@+id/time_picker_dialog"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="vertical"
- android:background="@color/circle_background"
- android:id="@+id/time_picker_dialog"
android:focusable="true" >
<FrameLayout
+ android:id="@+id/time_display_background"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/white" >
@@ -36,25 +36,21 @@
android:layout_height="@dimen/picker_dimen"
android:layout_width="wrap_content"
android:layout_gravity="center"
+ android:background="@color/circle_background"
android:focusable="true"
android:focusableInTouchMode="true" />
<View
+ android:id="@+id/line"
android:layout_width="match_parent"
android:layout_height="1dip"
android:background="@color/line_background" />
- <LinearLayout
- style="?android:attr/buttonBarStyle"
+ <Button
+ android:id="@+id/done_button"
+ android:background="@drawable/done_background_color"
android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:orientation="horizontal" >
- <Button
- android:id="@+id/done_button"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:minHeight="48dp"
- android:text="@string/done_label"
- android:textSize="@dimen/done_label_size"
- android:textColor="@color/done_text_color"
- style="?android:attr/buttonBarButtonStyle" />
- </LinearLayout>
+ android:minHeight="48dp"
+ android:text="@string/done_label"
+ android:textSize="@dimen/done_label_size"
+ android:textColor="@color/done_text_color" />
</LinearLayout>