HowTo
its working now, as it should!
the only downside is that the quick-access-settings-button dont work, as its got grouped with the tracking scrollbar-button-thingy... but, i hardly never used it anyway, sooo.. here is a short howto on how i made this work..
step 1:
decompile SystemUI.apk, and jump into this folder:
[decompiled-SystemUI.apk]\res\layout
step 2:
open tw_status_bar_expanded-xml (ill use notepad++ wich is neat for this process)
search the section that looks like this:
<RelativeLayout android:background="@drawable/tw_quick_panel_plnm_bg" android:layout_width="fill_parent" android:layout_height="@dimen/status_bar_expanded_plmn_height">
<ImageView android:id="@id/settings_launch_button" android:background="@drawable/tw_quickpanel_icon_settings_bg" android:focusable="true" android:layout_width="@dimen/status_bar_expanded_setting_width" android:layout_height="fill_parent" android:src="@drawable/tw_quickpanel_icon_settings" android:scaleType="center" android:layout_alignParentRight="true" android:layout_centerVertical="true" android:contentDescription="@string/accessibility_settings_button" />
<ImageView android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/tw_quick_panel_plnm_setting_dv" android:layout_toLeftOf="@id/settings_launch_button" android:layout_centerVertical="true" />
<com.android.systemui.statusbar.policy.DateView android:textSize="@dimen/status_bar_expanded_date_text_size" android:textColor="#ff1589d7" android:id="@id/date" android

addingRight="12.0dip" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_toLeftOf="@id/settings_launch_button" android:layout_centerVertical="true" />
<com.android.systemui.statusbar.phone.CarrierLabel android:textSize="@dimen/status_bar_expanded_plmn_text_size" android:textColor="#ffd7d7d7" android:ellipsize="marquee" android

addingLeft="11.0dip" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_toLeftOf="@id/date" android:layout_alignParentLeft="true" android:layout_centerVertical="true" />
</RelativeLayout>
and copy it..
step 4:
while its copied too the clipboard, open up tw_status_bar_tracking.xml
then paste the copied content, into between the two lines that starts like this:
<com.android.systemui.statusbar.phone.CloseDragHandle ...........
and this:
<ImageView android:layout_gravity="bottom" android:layout_width="fill_parent" ...................
so it looks like this:
<FrameLayout android:background="#ff000000" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="1.0" />
<com.android.systemui.statusbar.phone.CloseDragHandle android

rientation="vertical" android:id="@id/close" android:layout_width="fill_parent" android:layout_height="wrap_content">
<RelativeLayout android:background="@drawable/tw_quick_panel_plnm_bg" android:layout_width="fill_parent" android:layout_height="@dimen/status_bar_expanded_plmn_height">
<ImageView android:id="@id/settings_launch_button" android:background="@drawable/tw_quickpanel_icon_settings_bg" android:focusable="true" android:layout_width="@dimen/status_bar_expanded_setting_width" android:layout_height="fill_parent" android:src="@drawable/tw_quickpanel_icon_settings" android:scaleType="center" android:layout_alignParentRight="true" android:layout_centerVertical="true" android:contentDescription="@string/accessibility_settings_button" />
<ImageView android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/tw_quick_panel_plnm_setting_dv" android:layout_toLeftOf="@id/settings_launch_button" android:layout_centerVertical="true" />
<com.android.systemui.statusbar.policy.DateView android:textSize="@dimen/status_bar_expanded_date_text_size" android:textColor="#ff1589d7" android:id="@id/date" android

addingRight="12.0dip" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_toLeftOf="@id/settings_launch_button" android:layout_centerVertical="true" />
<com.android.systemui.statusbar.phone.CarrierLabel android:textSize="@dimen/status_bar_expanded_plmn_text_size" android:textColor="#ffd7d7d7" android:ellipsize="marquee" android

addingLeft="11.0dip" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_toLeftOf="@id/date" android:layout_alignParentLeft="true" android:layout_centerVertical="true" />
</RelativeLayout>
<ImageView android:layout_gravity="bottom" android:layout_width="fill_parent" android:layout_height="wrap_content" android:src="@drawable/tw_status_bar_close_on" android:scaleType="fitXY" />
</com.android.systemui.statusbar.phone.CloseDragHandle>
step 5:
now youll have too remove the settings-button, as it dosent work anyway..
soo, the first two lines at the tw_status_bar_tracking.xml, after
add at the end of each line before the "/>" this code:
android:visibility="gone"
now delete two pieces of code at the lines for date and carrier, by deleting:
android:layout_toLeftOf="@id/settings_launch_button"
at the date line.. and replace it with this:
android:layout_alignParentRight="true"
at the carrier line, delete this:
android:layout_toLeftOf="@id/date"
step 6:
now its working, but we need to remove the old date and carrier from the top of the dropdown menu..
so, with tw_status_bar_expanded.xml open, add this code:
android:visibility="gone"
at the end of
<RelativeLayout android:background="@drawable/tw_quick_panel_plnm_bg" android:layout_width="fill_parent" android:layout_height="@dimen/status_bar_expanded_plmn_height">
so it looks like this:
<RelativeLayout android:background="@drawable/tw_quick_panel_plnm_bg" android:layout_width="fill_parent" android:layout_height="@dimen/status_bar_expanded_plmn_height" android:visibility="gone">
step 7:
save the two xml files, recompile, and use 7zip to extract both files from the recompiled apk, and insert those to the decompiled apk, maintaining the folder path.
now its ready for being copied over to the phone, by using adb, sdcard or whatever the way you prefer.. and then overwrite the existing SystemUI.apk at
folder..
-------------
you can even change the part of codes inside tw_status_bar_tracking.xml, that says:
android

addingRight="12.0dip"
and
android

addingLeft="11.0dip"
too any other integer of your likes (those codes will determine how far from the edge of the screen it should be placed)
you can also even add:
android:visibility="gone"
at the end of the carrier-code-line, to make it dissappear.. and add this:
android:layout_centerInParent="true"
instead of this:
android:layout_alignParentRight="true"
and set the:
android

addingRight="12.0dip"
to be 0 (NULL), at the dateview-code-line. that way youll get the date centered..
there is the ability too remove the original tracking-scrollbar-button-thingy, just by adding:
android:visibility="gone"
at the end of the line
<ImageView android:layout_gravity="bottom" android:layout_width="fill_parent" android:layout_height="wrap_content" android:src="@drawable/tw_status_bar_close_on" android:scaleType="fitXY" />
thats right beneath:
and above:
</com.android.systemui.statusbar.phone.CloseDragHandle>
and of course, dont forget too change the fonts
-------------
dont just copy the codes from this thread, as it might not be exactly correct nor usefull for your phone..
this is my first howto here at xda, and im hoping it will come usefull for some.. and if you liked this, give me a thanks..

that was my 2cents
cheers
EDIT: the screenshot attached, shows how it looks like when holding the finger on the statusbar.. easy way of checking the date..
EDIT2: two more screenshots added, showin how it can look like if removing the original tracking bar, removing carrier, and centering date..
