System UI

WrathChild08

Senior Member
Mar 9, 2012
115
43
0
France
I think you must decompile the .apk, edit .xml files (I don't know what exactly) and recompile the apk. :good:
Try Apktool and take a look at the XML files, if you see positions/coordinates files of battery & time, just invert them.
 

chiragvagh

Senior Member
Jun 11, 2012
241
52
0
Surat
I think you must decompile the .apk, edit .xml files (I don't know what exactly) and recompile the apk. :good:
Try Apktool and take a look at the XML files, if you see positions/coordinates files of battery & time, just invert them.
Thanks for reply, but I dont know which xml files to edit and how.
 

wzearsdcx

Senior Member
Sep 28, 2010
182
68
0
Thanks for reply, but I dont know which xml files to edit and how.
Which? res/layout/status_bar.xml
How? I don't know. Compare your xml to original one, especially that section:

Code:
<LinearLayout android:gravity="center" android:orientation="horizontal" android:id="@id/signal_battery_cluster" android:paddingLeft="2.0dip" android:layout_width="wrap_content" android:layout_height="fill_parent">
            <include android:id="@id/signal_cluster" android:layout_width="wrap_content" android:layout_height="wrap_content" layout="@layout/signal_cluster_view" />
            <ImageView android:id="@id/battery" android:paddingLeft="4.0dip" android:layout_width="wrap_content" android:layout_height="wrap_content" />
</LinearLayout>
<com.android.systemui.statusbar.policy.Clock android:textAppearance="@style/TextAppearance.StatusBar.Clock" android:gravity="left|center" android:id="@id/clock" android:paddingLeft="6.0dip" android:layout_width="wrap_content" android:layout_height="fill_parent" android:singleLine="true" />
btw, you'll learn more and faster by yourself through comparing, watching other work etc. Leave questions for really hard things ;)