[MOD][TUT] How to Change The Statusbar Clock Colour

Ticklefish

Recognized Themer
Oct 27, 2011
6,743
8,534
263
Hampshire, UK
Tickle tha DateView is inside status_bar_expandable but tha status_bar_expandable am using is kinda of corrupt cos its doesnt make toggle tittles shown. remember i ask yhu about hiding toggle tittles!

i attached tha status_bar_expandable am using! just unzip...
Nope. Because it's not corrupt. The standard status_bar_expanded.xml doesn't feature the toggles at all. But then don't forget status_bar_tracking.xml. That has elements that are on the dropdown screen as well.
I can't remember what they're called right now but there are other xml files in that layout folder which control the layout of the toggles. Those are what you need to edit. Have a poke around the folder and you'll spot them.

Sent from my SK17i using xda premium
 
  • Like
Reactions: whalesplaho

whalesplaho

Senior Member
Feb 1, 2012
10,653
2,655
253
Treasure Island
Nope. Because it's not corrupt. The standard status_bar_expanded.xml doesn't feature the toggles at all. But then don't forget status_bar_tracking.xml. That has elements that are on the dropdown screen as well.
I can't remember what they're called right now but there are other xml files in that layout folder which control the layout of the toggles. Those are what you need to edit. Have a poke around the folder and you'll spot them.

Sent from my SK17i using xda premium

Okies brov... thanks brotha!

gonna try check dem out.

---------- Post added at 08:38 PM ---------- Previous post was at 08:32 PM ----------

cant find dem brov.... is there no way i can hide tha toggle tittles so i can use tha real status_bar-expandable.xml?
 

Ticklefish

Recognized Themer
Oct 27, 2011
6,743
8,534
263
Hampshire, UK
Is it possible to change the font used for the status bar clock? I'm on gingerbread and would like to switch to the nice RobotoLt used in ICS..
Yes, you need to rename the font you want to use to Clockopia.ttf and swap it with the font in..oh, I can't remember exactly where it is..I think it's system/fonts. Make sure the permissions are correct and reboot.

Not that I keep promoting it or anything, but Tickle My Android can do this for you..

Sent from my SK17i using xda premium
 

keyrie90

Senior Member
Feb 7, 2011
64
3
38
Penang
hello i'm trying to recompiling the systemui but it give me error..
here i attach the image>>



edit: i remove the comment then i can recompiling it.. what the problem??
 
Last edited:

Ticklefish

Recognized Themer
Oct 27, 2011
6,743
8,534
263
Hampshire, UK
hello i'm trying to recompiling the systemui but it give me error..
here i attach the image>>



edit: i remove the comment then i can recompiling it.. what the problem??
According to this, you have a duplicate attribute on line 16 of status_bar.xml. You need to remove that and then you should be able to recompile.
 

Ticklefish

Recognized Themer
Oct 27, 2011
6,743
8,534
263
Hampshire, UK

whalesplaho

Senior Member
Feb 1, 2012
10,653
2,655
253
Treasure Island
Have a look at status_bar_notification_row.xml.
i get dis code inside my status_bar_notification_row.xml............

Code:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout android:layout_width="fill_parent" android:layout_height="@dimen/notification_height"
  xmlns:android="http://schemas.android.com/apk/res/android">
    <Button android:id="@id/veto" android:background="@null" android:paddingLeft="8.0dip" android:paddingRight="8.0dip" android:layout_width="48.0dip" android:layout_height="fill_parent" android:layout_marginRight="-80.0dip" android:layout_alignParentRight="true" android:layout_centerVertical="true" />
    <ImageView android:id="@id/large_icon" android:background="@*android:drawable/notify_panel_notification_icon_bg_tile" android:clickable="true" android:layout_width="@*android:dimen/notification_large_icon_width" android:layout_height="@*android:dimen/notification_large_icon_height" android:scaleType="center" android:layout_alignParentLeft="true" android:layout_alignParentTop="true" />
    <com.android.systemui.statusbar.LatestItemView android:id="@id/content" android:background="@drawable/notification_row_bg" android:focusable="true" android:clickable="true" android:layout_width="fill_parent" android:layout_height="64.0dip" android:layout_toRightOf="@id/large_icon" android:layout_alignParentTop="true" android:layout_alignParentRight="true" />
    <View android:background="@drawable/status_bar_notification_row_background_color" android:layout_width="fill_parent" android:layout_height="@dimen/notification_divider_height" android:layout_alignParentBottom="true" />
</RelativeLayout>