diff options
Diffstat (limited to 'packages/SystemUI/res/layout-xlarge/status_bar_center.xml')
-rw-r--r-- | packages/SystemUI/res/layout-xlarge/status_bar_center.xml | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/packages/SystemUI/res/layout-xlarge/status_bar_center.xml b/packages/SystemUI/res/layout-xlarge/status_bar_center.xml index 775fea0..5bf8316 100644 --- a/packages/SystemUI/res/layout-xlarge/status_bar_center.xml +++ b/packages/SystemUI/res/layout-xlarge/status_bar_center.xml @@ -18,8 +18,8 @@ <RelativeLayout android:id="@+id/systemInfo" xmlns:android="http://schemas.android.com/apk/res/android" xmlns:systemui="http://schemas.android.com/apk/res/com.android.systemui" - android:layout_width="100dip" - android:layout_height="wrap_content" + android:layout_width="160dip" + android:layout_height="match_parent" android:layout_centerInParent="true" android:clickable="true" android:onClick="systemInfoClicked" @@ -27,8 +27,9 @@ <com.android.systemui.statusbar.Clock style="@*android:style/TextAppearance.StatusBar.Icon" android:id="@+id/clock" - android:layout_width="match_parent" - android:layout_height="wrap_content" + android:layout_width="64dip" + android:layout_height="48dip" + android:layout_centerInParent="true" android:singleLine="true" android:gravity="center" android:textSize="16sp" @@ -37,18 +38,16 @@ /> <ImageView android:id="@+id/battery" - android:layout_width="50dip" - android:layout_height="wrap_content" - android:layout_alignParentLeft="true" - android:layout_below="@id/clock" + android:layout_width="48dip" + android:layout_height="48dip" + android:layout_toLeftOf="@id/clock" android:src="@drawable/battery" /> <ImageView android:id="@+id/signal" - android:layout_width="50dip" - android:layout_height="wrap_content" - android:layout_alignParentRight="true" - android:layout_below="@id/clock" + android:layout_width="48dip" + android:layout_height="48dip" + android:layout_toRightOf="@id/clock" android:src="@drawable/signal" /> </RelativeLayout> |