Free Android Tricks

Showing posts with label Change Status Bar. Show all posts
Showing posts with label Change Status Bar. Show all posts

Saturday


FEATURES INCLUDED
KitKat Status Bar Icons:
◎Wifi On/Ingoing signal Icons
◎Sim's Signal Bar icons
◎Battery Icons
INSTRUCTIONS:
  1. Download KiTkat Styled Status Bar icons
  2. Copy Downloaded Theme to sd card
  3. Reboot in recovery
  4. Flash the KiTkat Styled Status Bar icons
  5. Reboot And Enjoy
Quote:
DOWNLOADS

KiTkat Styled Status Bar icons

In Case you want to revert to stock
s
STOCK SYSTEM.ui (Its not theme,just .apk .So,flash to revert to stock)
Read More

Thursday


Requirement:


Root
Xposed Module 
XBlast

Instructions :



\1. After rooting your phone, install Xposed Installer (DOWNLOAD
2. Open Xposed Installer from App drawer.. Then go to framework & click on install.. After that reboot your phone
3. Now again go to Xposed Installer & Go to download.. Now install XBlast module.. 
4. After installation go to module section & kick XBlast.. Now open it & go to Navigation & change the style.. 
5. Reboot your phone .

Free Download Pro Apps -  HERE - Get Daily New pro APPS
Android Custom Roms - HERE


Read More

Monday

S3 Status bar
Hai,

Today im gonna show you new s3 statusbar icons for our ace.. It is ported from SGS3.. !! 



Link in attachments

How to:

1. Extract zip file.
2. Check similar icons.
3. Copy and replace with your icons.

Thanks 
ATTACHED FILES
File Type: rarS3_Statusbar_Icons.rar 
Read More

Saturday

Click image for larger version

Name: Watch-the-Video-Showing-CyanogenMod-10-New-Boot-Animation.png
Views: 237
Size: 164.1 KB
ID: 2052113
cm10 transparent status bar + transparent notification drawer + dim behind notification all in one mod

IMPORTANT
Only for CM10 rom, if flashed with any other ROM it may cause Bootloop

SCREENSHOTS
TRANSPARENT STATUS BAR
Click image for larger version

Name: Screenshot_2013-06-18-19-26-50[1].jpg
Views: 658
Size: 21.2 KB
ID: 2052126



TRANSPARENT NOTIFICATION DRAWER
Click image for larger version

Name: Screenshot_2013-06-18-19-28-04[1].jpg
Views: 562
Size: 13.2 KB
ID: 2052128



DIM BEHIND NOTIFICATION PULL

In the beginning
Click image for larger version

Name: Screenshot_2013-06-18-19-27-54[1].jpg
Views: 505
Size: 21.2 KB
ID: 2052127

At the end
Click image for larger version

Name: Screenshot_2013-06-18-19-27-46[1].jpg
Views: 460
Size: 14.9 KB
ID: 2052129


STEPS

1: Download the .apk
2: Rename it to SystemUI.apk
3: Use Root explorer or anr Root browser ( ES explorer )
4: Copy the apk to /system/apps
5: Change permission to rw-r-r
6: Reboot

* If it pops up that "system ui has stopped !", just reboot. After the reboot everything will be fine 
Tested on p970



ATTACHED FILES
File Type: apkSystemUImodded.apk - [Click for QR Code] (1.26 MB, 272 views)
Read More

Friday

WHAT IS THIS??
this mod could change your statusbar look with ease...
-enable to change the position of clock-notification icon-battery n data icon-also carrier image
-enable change ur statusbar background (its need a compiled 9.png in other word u have to create 9.png with draw9patch and compile it using apktool or eclipse or u can just find some apk that consist of 9.png and simply extract it pick the 9.png n use it. but this is not a must. use ordinary png file also welcome.. it'll strech in lanscape mode).
-enable to change carrier image


UPDATE 2

rewriting code from scratch and push into github,,,
http://adf.ly/c2Pba


UPDATE 1.8.1

download here : statusbargreper 1.8.1
ChangeLog :
-fix some feature not show in ICS
UPDATE 1.8
ChangeLog :
-customizable icon data - datainout - battery (without reboot.. easy as fcuk)
- 3 mode of battery (Text mode - Battery Line mode - Icon Mode)
- Adding Traffic State (like miui v4)
-Overlaping signal data & data inout icon (like miui v4 i guess)
-center and right side clock with ability to show and hide days and am/pm (Customizable font and text color)

HOW TO APPLY THIS VERSION
NOTE : Ur ROM must be signed by dsixda or else signer.. because we need to add another permission into SystemUI (i dunno why i do this
because i write this code as 3rd party apps using android SDK)

1. decompile ur SystemUI.apk
2. decompile my dcsmsSystemUI.apk
3. go to dcsmsSystemUI/smali/ copy those in folder into ur SystemUI/smali
4. open ur SystemUI/res/layout/status_bar.xml

modify the code just like the code below 
Code:
<?xml version="1.0" encoding="utf-8"?>
<com.android.systemui.statusbar.StatusBarView android:orientation="vertical" android:background="#00000000" android:focusable="true" android:descendantFocusability="afterDescendants"
  xmlns:android="http://schemas.android.com/apk/res/android">
    <RelativeLayout android:layout_width="fill_parent" android:layout_height="wrap_content">
        <in.jmkl.dcsms.statusbargreper.DcsmsLayout android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="wrap_content">
            <LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentLeft="true">
                <in.jmkl.dcsms.statusbargreper.CarrierImage android:layout_width="wrap_content" android:layout_height="wrap_content" android:adjustViewBounds="true" />
            </LinearLayout>
            <com.android.systemui.statusbar.IconMerger android:gravity="right|center" android:id="@id/notificationIcons" android:layout_width="50.0dip" android:layout_height="fill_parent" />
            <LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentRight="true">
                <in.jmkl.dcsms.statusbargreper.DataTrafik android:layout_gravity="center_vertical" android:layout_width="wrap_content" android:layout_height="wrap_content" />
                <in.jmkl.dcsms.statusbargreper.Icon android:orientation="horizontal" android:layout_width="wrap_content" android:layout_height="wrap_content" />
                <in.jmkl.dcsms.statusbargreper.JamSamping android:layout_gravity="center_vertical" android:visibility="gone" android:layout_width="wrap_content" android:layout_height="wrap_content" />
                <LinearLayout android:orientation="horizontal" android:id="@id/icons" android:visibility="gone" android:layout_width="0.0dip" android:layout_height="fill_parent">
                    <LinearLayout android:gravity="right" android:orientation="horizontal" android:id="@id/statusIcons" android:paddingRight="0.0dip" android:layout_width="0.0dip" android:layout_height="fill_parent" android:layout_alignParentRight="true" />
                </LinearLayout>
            </LinearLayout>
        </in.jmkl.dcsms.statusbargreper.DcsmsLayout>
        <in.jmkl.dcsms.statusbargreper.Jam android:textSize="18.0dip" android:layout_width="wrap_content" android:layout_height="fill_parent" android:singleLine="true" android:layout_centerHorizontal="true" android:layout_centerVertical="true" />
    </RelativeLayout>
    <LinearLayout android:orientation="horizontal" android:id="@id/ticker" android:background="#ffdddddd" android:paddingLeft="6.0dip" android:animationCache="false" android:layout_width="fill_parent" android:layout_height="fill_parent">
        <ImageSwitcher android:id="@id/tickerIcon" android:layout_width="wrap_content" android:layout_height="fill_parent" android:layout_marginRight="8.0dip">
            <com.android.systemui.statusbar.AnimatedImageView android:layout_width="25.0dip" android:layout_height="25.0dip" />
            <com.android.systemui.statusbar.AnimatedImageView android:layout_width="25.0dip" android:layout_height="25.0dip" />
        </ImageSwitcher>
        <com.android.systemui.statusbar.TickerView android:id="@id/tickerText" android:paddingTop="2.0dip" android:paddingRight="10.0dip" android:layout_width="0.0dip" android:layout_height="wrap_content" android:layout_weight="1.0">
            <TextView android:textAppearance="@android:style/TextAppearance.StatusBar.Ticker" android:textColor="#ffffffff" android:layout_width="fill_parent" android:layout_height="wrap_content" android:singleLine="true" />
            <TextView android:textAppearance="@android:style/TextAppearance.StatusBar.Ticker" android:textColor="#ffffffff" android:layout_width="fill_parent" android:layout_height="wrap_content" android:singleLine="true" />
        </com.android.systemui.statusbar.TickerView>
    </LinearLayout>
    <com.android.systemui.statusbar.DateView android:textAppearance="@android:style/TextAppearance.StatusBar.Icon" android:textColor="#0033b5e5" android:gravity="left|center" android:id="@id/date" android:background="@drawable/dcsms_tits_bg" android:paddingLeft="0.0px" android:paddingRight="0.0px" android:layout_width="fill_parent" android:layout_height="fill_parent" android:singleLine="true" />
    <in.jmkl.dcsms.statusbargreper.BatteryBar android:layout_width="fill_parent" android:layout_height="wrap_content" />
</com.android.systemui.statusbar.StatusBarView>
5. open ur SystemUI/AndroidManifest.xml and add this line below 

<uses-permission android:name="android.permission.MANAGE_USB" />

Code:
    <uses-permission android:name="android.permission.WRITE_SETTINGS" />
    <uses-permission android:name="android.permission.READ_PHONE_STATE" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
6. build ur SystemUI
7. drag n drop the folder assets in dcsmsSystemUI into ur SystemUI
8. sign ur SystemUI
9. install/push statusbargreper 1.8
10. push ur SysteUI n Enjoy



OLD
Quote:
HOW TO APPLY THIS MOD??
just simply decompile my SystemUI.apk
go to smali folder and copy the "in" folder into ur smali

then go to your /res/layout/ open statusbar.xml.and modify some line. so its look like below


here is the quick explanation about the code :
this mod is bind my customlayout >> in.jmkl.dcsms.statusbargreper.DcsmsLayout
the 1st child of this layout is the linearlayout that contain of carrier image
the 2nd child of this layout is notificationicon
the 3rd child of this layout is contain signal icon n battery icon(since i use USSR that contain EDT tweak...so i put it there)
only 3 child allow on this customlayout...

those layout is the default one.. and here is the magic happen ..install StatusBar Greper.apk press menu or u can press the action button.
and play around with it....once u press it, it will affect the statusbar immediatly..easy as f***

please report bugs or something.
enjoy

NB... u need quickpic to run this apps
download here



ATTACHED THUMBNAILS
Click image for larger version

Name: SC20121106-140516.png
Views: 4365
Size: 38.5 KB
ID: 1460873   Click image for larger version

Name: SC20121106-140527.png
Views: 3631
Size: 43.5 KB
ID: 1460874   Click image for larger version

Name: SC20121106-140533.png
Views: 2930
Size: 37.7 KB
ID: 1460875   Click image for larger version

Name: SC20121106-140544.png
Views: 2881
Size: 38.8 KB
ID: 1460876  
ATTACHED FILES
File Type: apkdcsmsSystemUI.apk - [Click for QR Code] (303.5 KB, 2031 views)
File Type: apkstatusbargreper 1.8.apk - [Click for QR Code] (788.3 KB, 2196 views)
Read More

Recent Comments

click here