OSDN Git Service

Fix http://b/2326879 (drawing glitches)
[android-x86/packages-apps-DeskClock.git] / res / layout-land / desk_clock.xml
index 8e7ce88..fbe310c 100644 (file)
         android:layout_width="fill_parent"
         android:layout_height="fill_parent"
         android:orientation="vertical"
-        android:paddingTop="18dip"
+        android:paddingTop="25dip"
         >
 
         <!-- Entire display region (everything but bottom buttons) -->
+        <!-- Left margin is 4 dip shy of desired to allow for the time to
+             "hang off" the left-hand side, accommodating the extra glyph
+             escapement in Clockopia and 3px of text shadow -->
         <LinearLayout
             android:orientation="vertical"
             android:layout_gravity="left"
             android:layout_weight="1"
             android:layout_width="fill_parent"
             android:layout_height="fill_parent"
-            android:layout_marginLeft="20dip"
-            android:layout_marginTop="20dip"
-            android:layout_marginRight="20dip"
-            android:layout_marginBottom="14dip"
+            android:layout_marginLeft="25dip"
+            android:layout_marginTop="18dip"
+            android:layout_marginRight="18dip"
+            android:layout_marginBottom="12dip"
             >
 
             <!-- across the top: next alarm, battery, nightmode button -->
@@ -48,6 +51,7 @@
                 android:layout_height="wrap_content"
                 android:layout_weight="0"
                 android:layout_marginBottom="6dip"
+                android:layout_marginLeft="4dip"
                 android:gravity="center_vertical"
                 >
                 <TextView android:id="@+id/nextAlarm"
@@ -55,8 +59,7 @@
                     android:layout_height="wrap_content"
                     android:layout_weight="1"
                     android:gravity="left"
-                    android:textSize="18sp"
-                    android:textColor="#FFFFFFFF"
+                    android:textAppearance="?android:attr/textAppearanceMedium"
                     android:drawablePadding="6dip"
                     android:drawableLeft="@drawable/ic_lock_idle_alarm"
                     android:shadowColor="#C0000000"
                     />
 
                 <ImageButton android:id="@+id/nightmode_button"
-                                       style="@style/RoundTouchButton"
+                    style="@style/RoundTouchButton"
                     android:layout_weight="0"
                     android:layout_height="wrap_content"
                     android:layout_width="wrap_content"
                     android:src="@drawable/ic_round_brightness"
                     android:contentDescription="@string/nightmode_button_description"
+                    android:nextFocusDown="@+id/alarm_button"
                     />
             </LinearLayout>
 
                 android:layout_width="fill_parent"
                 android:layout_height="wrap_content"
                 android:gravity="bottom"
-                android:layout_marginBottom="12dip"
                 >
 
                 <include layout="@layout/desk_clock_time_date"
                     android:layout_height="wrap_content"
-                    android:layout_width="wrap_content"
-                    android:layout_weight="1"
+                    android:layout_width="0dip"
+                    android:layout_weight="5"
                     />
 
                 <include layout="@layout/desk_clock_weather"
                     android:layout_height="wrap_content"
-                    android:layout_width="wrap_content"
+                    android:layout_width="0dip"
                     android:layout_marginLeft="12dip"
+                    android:layout_weight="3"
                     />
 
 
     <View android:id="@+id/window_tint"
         android:layout_width="fill_parent"
         android:layout_height="fill_parent"
-        android:background="#E0000000"
+        android:background="#CC000000"
         android:visibility="visible"
         android:clickable="false"
         />