[DEV][MOD]Minimal Status Bar! Version 1!

MR.Volkf

Senior Member
Aug 25, 2012
883
532
0
C:\Apktool & C:\TickleMyAndroid
Minimal Status Bar
By MR.Volkf

Introduction
I was get boring with stock look of touchwiz or AOSP style :rolleyes: so i decided to make project for Stock 4.1.2 Firmware,
if you have any idea please share :D and if you have any icon please upload :)
for CM10.1 please look at this

ScreenShoot
On CM10.1 Alpha 9 By dhiru (on my Samsung Galaxy SL) :eek:



On StockRom 4.1.2​




What's Must Be Fixed?

  • Airplane mode Icon Done
  • SmartStay Icon
  • Clock (Something not right)
  • Sound Mode(All) 90%...
  • Wifi Icon And Signal Icon 30%.... Coming soon on Version 1.1 :D
  • GPS Icon Done
  • stat sys signal in/out/inout/no_inout Icon Done
  • stat sys data fully connected h plus/h/e/g/3g/3gplus/1x Icon Done
  • stat sys data connected 3g plus/3g/h plus/h/e/g/1x Icon Done
  • When notif came status bar change to black
    Note: On the way to fix it....

Changelog

  • Version 1 10/13/2013
    Initial Release​
  • Version 1.1 Coming soon

Download
Version 1
DEV ONLY
Change Text in Status bar use this guide Here :D
DropBox

Push it to System/App

Thank for

  • Allah
  • @BOND1987 for help me with tw_status_bar.xml :eek:
  • Agan Yoga :D
  • Indonesia Galaxy SIII Mini on Facebook ;)
  • Miui for some icon :D
 
Last edited:

MR.Volkf

Senior Member
Aug 25, 2012
883
532
0
C:\Apktool & C:\TickleMyAndroid
Progress... 50%
Stuff can't be fixed for now
-Signal Icon & Wifi Icon (add some code to the line android:visibility="gone")
-Smart Stay
-All Sound Mode (ringer,silent...)
Thanks For @BOND1987 :D:D


ScreenShoot
Screenshot_2013-10-12-21-52-02.jpg

Someone can move the clock from right to center?
Code:
<?xml version="1.0" encoding="utf-8"?>
<com.android.systemui.statusbar.phone.PhoneStatusBarView android:orientation="vertical" android:id="@id/status_bar" android:background="@drawable/status_bar_background" android:focusable="true" android:fitsSystemWindows="true" android:descendantFocusability="afterDescendants"
  xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:systemui="http://schemas.android.com/apk/res/com.android.systemui">
    <ImageView android:id="@id/notification_lights_out" android:paddingLeft="6.0dip" android:paddingBottom="2.0dip" android:visibility="gone" android:layout_width="@dimen/status_bar_icon_size" android:layout_height="fill_parent" android:src="@drawable/ic_sysbar_lights_out_dot_small" android:scaleType="center" />
    <LinearLayout android:orientation="horizontal" android:id="@id/icons" android:paddingLeft="0.0dip" android:paddingRight="2.0dip" android:layout_width="fill_parent" android:layout_height="fill_parent">
        <LinearLayout android:orientation="horizontal" android:id="@id/left_icons" android:paddingLeft="4.0dip" android:layout_width="0.0dip" android:layout_height="fill_parent" android:layout_weight="1.0">
            <TextView android:textSize="15.0dip" android:gravity="center_vertical" android:id="@id/carrierLabel" android:visibility="gone" android:layout_width="wrap_content" android:layout_height="fill_parent" android:singleLine="true" />
            <ImageView android:id="@id/operatorLogoIcon" android:visibility="gone" android:layout_width="wrap_content" android:layout_height="fill_parent" android:src="@drawable/tw_stat_notify_operator_logo" />
            <ImageView android:id="@id/doNotDisturbIcon" android:visibility="gone" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/tw_dnd" android:alpha="0.7" android:scaleX="0.85" android:scaleY="0.85" />
            <com.android.systemui.statusbar.StatusBarIconView android:id="@id/moreIcon" android:visibility="gone" android:layout_width="@dimen/status_bar_icon_size" android:layout_height="fill_parent" android:src="@drawable/stat_notify_more" />
			<TextView android:textSize="14.0sp" android:textColor="#ffa6a6a6" android:gravity="left|center" android:layout_width="wrap_content" android:layout_height="fill_parent" android:text="@string/hello" android:singleLine="true" />
			<include android:id="@id/signal_cluster" android:visibility="gone" android:gravity="left|center" android:layout_width="wrap_content" android:layout_height="wrap_content" layout="@layout/tw_signal_cluster_view" />
            <com.android.systemui.statusbar.phone.IconMerger android:gravity="center_vertical" android:orientation="horizontal" android:id="@id/notificationIcons" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_alignParentLeft="true" />
        </LinearLayout>
		<LinearLayout android:gravity="center|center" android:orientation="horizontal" android:id="@id/clock" android:layout_width="wrap_content" android:layout_height="fill_parent">
            <com.android.systemui.statusbar.policy.Clock android:textSize="@dimen/status_bar_clock_text_size" android:textColor="#ffa6a6a6" android:gravity="center" android:layout_width="wrap_content" android:layout_height="fill_parent" android:singleLine="true" />
        </LinearLayout>
        <LinearLayout android:orientation="horizontal" android:id="@id/right_icons" android:paddingRight="4.0dip" android:layout_width="wrap_content" android:layout_height="fill_parent" android:layout_alignParentRight="true">
            <LinearLayout android:gravity="center_vertical" android:orientation="horizontal" android:id="@id/statusIcons" android:layout_width="wrap_content" android:layout_height="fill_parent" />
				<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">
					<TextView android:textSize="14.0dip" android:textColor="#ffa6a6a6" android:layout_gravity="center" android:id="@id/battery_text" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/status_bar_network_name_separator" />
					<ImageView android:gravity="center" android:id="@id/battery" android:layout_width="wrap_content" android:layout_height="wrap_content" />
				</LinearLayout>
		</LinearLayout>
		<LinearLayout android:orientation="horizontal" android:id="@id/ticker" 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="@dimen/status_bar_icon_size" android:layout_height="@dimen/status_bar_icon_size" android:layout_marginRight="4.0dip">
				<com.android.systemui.statusbar.AnimatedImageView android:layout_width="@dimen/status_bar_icon_size" android:layout_height="@dimen/status_bar_icon_size" android:scaleType="centerInside" />
				<com.android.systemui.statusbar.AnimatedImageView android:layout_width="@dimen/status_bar_icon_size" android:layout_height="@dimen/status_bar_icon_size" android:scaleType="centerInside" />
			</ImageSwitcher>
			<com.android.systemui.statusbar.phone.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="@style/TextAppearance.StatusBar.PhoneTicker" android:id="@id/ticker_text_view_old" android:layout_width="fill_parent" android:layout_height="wrap_content" android:singleLine="true" />
				<TextView android:textAppearance="@style/TextAppearance.StatusBar.PhoneTicker" android:id="@id/ticker_text_view_new" android:layout_width="fill_parent" android:layout_height="wrap_content" android:singleLine="true" />
			</com.android.systemui.statusbar.phone.TickerView>
		</LinearLayout>
	</LinearLayout>
</com.android.systemui.statusbar.phone.PhoneStatusBarView>
 
Last edited:

limyuyang

Senior Member
Jun 7, 2013
651
227
0
Android Planet
Why is the link deleted ?!?! :( Awww man !

And, if you can move the signal icon to left while the wifi icon and battery to right, it would be nice, just like iOS 7's status bar.

Is there an option to change the name actually ? Or we have to edit the framework ourself ? If it can change in the settings, it would be great, but if we need to edit the framework ourself, I can't do it because I'm not very good at modifying system things.
 

Attachments

Last edited:
  • Like
Reactions: s3min

MR.Volkf

Senior Member
Aug 25, 2012
883
532
0
C:\Apktool & C:\TickleMyAndroid
Why is the link deleted ?!?! :( Awww man !

And, if you can move the signal icon to left while the wifi icon and battery to right, it would be nice, just like iOS 7's status bar.

Is there an option to change the name actually ? Or we have to edit the framework ourself ? If it can change in the settings, it would be great, but if we need to edit the framework ourself, I can't do it because I'm not very good at modifying system things.
Sorry sir,something isn't right with clock,so i must found fix for it:(,ok sir request accepted :p
 

MR.Volkf

Senior Member
Aug 25, 2012
883
532
0
C:\Apktool & C:\TickleMyAndroid
Why is the link deleted ?!?! :( Awww man !

And, if you can move the signal icon to left while the wifi icon and battery to right, it would be nice, just like iOS 7's status bar.

Is there an option to change the name actually ? Or we have to edit the framework ourself ? If it can change in the settings, it would be great, but if we need to edit the framework ourself, I can't do it because I'm not very good at modifying system things.
sir can you give me that battery icon?
 

limyuyang

Senior Member
Jun 7, 2013
651
227
0
Android Planet
Sorry sir,something isn't right with clock,so i must found fix for it:(,ok sir request accepted :p
Oh I see....ya I hope you canove those icons.

sir can you give me that battery icon?

Well, the picture I searched from Google, so I can't give u the battery icon actually because its on iOS, not android.

And also, you can just keep on using the battery icon u make, its nice and simple. Very good.