[MOD][GUIDE]LockScreen Clock with seconds[ANY ROM] - Android Themes

What it will do ??
Clock with seconds in pattern lock screen lock screen.... It will work on any android version or rom.... tested on ICS 4.0.4
What is needed ??
* apktool
* framework-res.apk
* texteditor
How ??
Step 1 :
Decompile framework-res.apk hope you know it well....
Step 2 :
open framework-res.apk\res\layout\keyguard_screen_unlock_portrait.xml
search for line com.android.internal.widget.DigitalClockdelete all starting from com.android.internal.widget.DigitalClock" to "\com.android.internal.widget.DigitalClock>
this will remove stock clock from lockscreen. now the main part, adding our clock, add this line,
<DigitalClock android:textAppearance="?textAppearanceMedium" android:textSize="60.0sp" android:ellipsize="marquee" android:textColor="@color/lockscreen_clock_background" android:layout_gravity="right" android:id="@id/time" android:layout_marginTop="@dimen/keyguard_lockscreen_status_line_clockfont_top_margin" android:layout_marginRight="@dimen/keyguard_lockscreen_status_line_font_right_margin" android:layout_marginBottom="6.0dip" android:layout_width="wrap_content" android:layout_height="wrap_content" android:singleLine="true" />
Click to expand...
Click to collapse
DigitalClock is inbuilt inside android from the Beginning, we just referring that inbuilt clock ....
You can change size of the clock by editing android:textSize="60.0sp" , also change color by adding android:textColor="#ffffffff"
Setp 3 : Compile apk, Push / Flash , Enjoy
----------------------------------------------------------------------------------------------------------------------
Actually got idea about "digitalclock" by this so thanks to TickleFish
same way for sliding lock screen edit "keyguard_screen_tab_unlock.xml" in same folder....
finding a way to change font also... i will update thread if i found anything worthy sharing....
Hope you will hit THANKS button....
screenshot :
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
i made pattern lock dots invisible so its not a problem.....
-------------------------------------------------------------------------------------------------------------------------------------------------
HOW TO ADD CUSTOM TEXT TO LOCK SCREEN
how can u make words "This Phone Belongs to Akash Hiremath",, thats cool please tell me how...
Click to expand...
Click to collapse
open the same file "framework-res.apk\res\layout\keyguard_screen_unlock_portrait.xml"
add this line
<TextView android:textAppearance="?textAppearanceMedium" android:textSize="18.0sp" android:textColor="@color/lockscreen_clock_background" android:ellipsize="marquee" android:layout_gravity="center" android:id="@id/own_text" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="YOUR_TEXT_HERE" android:singleLine="true" android:drawablePadding="4.0dip" />
Click to expand...
Click to collapse
replace YOUR_TEXT_HERE with anything....
next step : goto res/values/ids add
Code:
false
at the end before
i think its not required, you can skip this step and simply remove "android:id="@id/own_text"" from above line it must work.. but not testesd
same way for sliding lock screen edit "keyguard_screen_tab_unlock.xml" in same folder....
compile and flash or push....
-----------------------------------------------------------------------------------------------------------------------------------------
BASIC CUSTOMIZATION
+ for clock color "@color/lockscreen_clock_background" with any html color code ex android:textColor="#ffffffff" for white..
+ for size android:textSize="18.0sp"
many things are self explanatory, just follow trail and error method
----------------------------------------------------------------------------------------------------------------------------------------
CHANGE PATTERN LOCK ICONS
open res/drawable-mdpi/hdpi
look for
+ btn_code_lock_default_holo
+ btn_code_lock_touched_holo
+ indicator_code_lock_point_area_green_holo
+ indicator_code_lock_point_area_red_holo
name may be different for HTC, xperia,samsung devices its for stock rom... just manually check...
edit these images with any editing software i use gimp cuz its OPENSOURCE
remember :
name should be same with same extension (.png)
use stock icons for editing rather than create new image to avoid any mistakes
decompiling is not necessary, just replace images within apk
don't delete any image if u don't want any just make it transparent
if you use winrar choose store option when you add images to zip...
-------------------------------------------------------------------------------------------------------------------------------------------------------------
HOW TO CHANGE BACKGROUND IN LOCK SCREEN
again same file
search for "GridLayout" its at the begining.... inside that tag add
Code:
android:background="@drawable/lockscreen_back"

how can u make words "This Phone Belongs to Akash Hiremath",, thats cool :fingers-crossed: please tell me how...

You can change that in lockscreen preferences
Wysłane z mojego GT-I9100 za pomocą Tapatalk 2

Arjun-na said:
how can u make words "This Phone Belongs to Akash Hiremath",, thats cool :fingers-crossed: please tell me how...
Click to expand...
Click to collapse
Thats easy i ll update that too.... even you can change font size color....
Sent from my IRIS 501 using xda app-developers app

thanks :fingers-crossed: patiently wait :good:

updated
Arjun-na said:
thanks :fingers-crossed: patiently wait :good:
Click to expand...
Click to collapse
thread updated...

is this mod should work on cm10.1 i thinking about secounds clock i hawe try but dint work

luki2411 said:
is this mod should work on cm10.1 i thinking about secounds clock i hawe try but dint work
Click to expand...
Click to collapse
it MUST work.... !

akash akya said:
it MUST work.... !
Click to expand...
Click to collapse
How can I edit clock to have it like jb 4.2.2 (with the bold hours) in cm7.2?
Thanks in advance

Impulse1020 said:
How can I edit clock to have it like jb 4.2.2 (with the bold hours) in cm7.2?
Thanks in advance
Click to expand...
Click to collapse
Post the image where you saw that .... i ll try...

Good ,
will try this

akash akya said:
Post the image where you saw that .... i ll try...
Click to expand...
Click to collapse
I'd have this clock in lockscreen
Inviato dal mio GT-S5830 con Tapatalk 2

Impulse1020 said:
I'd have this clock in lockscreen
Inviato dal mio GT-S5830 con Tapatalk 2
Click to expand...
Click to collapse
I will update thread with guide soon

Step 2 :
open framework-res.apk\res\layout\keyguard_screen_unlock_portrait .xml
search for line "com.android.internal.widget.DigitalClock"
delete all starting from "com.android.internal.widget.DigitalClock" to "\com.android.internal.widget.DigitalClock>"
this will remove stock clock from lockscreen....
now the main part, adding our clock,
add this line "
Code:
<DigitalClock android:textAppearance="?textAppearanceMedium" android:layout_gravity="center" android:textSize="60.0sp" android:ellipsize="marquee" android:id="@id/date" android:layout_width="wrap_content" android:layout_height="wrap_content" android:singleLine="true" />
"
DigitalClock is inbuilt inside android from the Beginning, we just referring that inbuilt clock ....
# You can change size of the clock by editing android:textSize="60.0sp" , also change color by adding android:textColor="#ffffffff"
Click to expand...
Click to collapse
Didn't work ?

i dont have res/values/id ,, are u mean ids.xml??
サンキュゥ♪(o ̄∇ ̄)/

Arjun-na said:
i dont have res/values/id ,, are u mean ids.xml??
サンキュゥ♪(o ̄∇ ̄)/
Click to expand...
Click to collapse
Oops... yup its ids.xml.... thread edited...
Sent from my IRIS_501 using xda app-developers app

szzlgupta said:
Didn't work ?
Click to expand...
Click to collapse
Which device are you using.? Is it mtk based ??
Sent from my IRIS_501 using xda app-developers app

akash akya said:
same way for sliding lock screen edit "keyguard_screen_tab_unlock.xml" in same folder....
Click to expand...
Click to collapse
whats that mean? i'm sorry too much asking and my english bad.... ...(―˛―“)
サンキュゥ♪(o ̄∇ ̄)/

Arjun-na said:
whats that mean? i'm sorry too much asking and my english bad.... ...(―˛―“)
サンキュゥ♪(o ̄∇ ̄)/
Click to expand...
Click to collapse
Continue asking, ter are many ppl hav same doubt but they don ask... u helping them
The line meaning.... if want that mod for sliding lock screen.... you have to edit "keygaurd_blabla.xml" too... and process is same.... if don want jus leave it, its optional....
Btw my eng is also not that gud....
Sent from my IRIS_501 using xda app-developers app

akash akya said:
Continue asking, ter are many ppl hav same doubt but they don ask... u helping them
The line meaning.... if want that mod for sliding lock screen.... you have to edit "keygaurd_blabla.xml" too... and process is same.... if don want jus leave it, its optional....
Btw my eng is also not that gud....
Sent from my IRIS_501 using xda app-developers app
Click to expand...
Click to collapse
thanks for very kind to a noob like me ^^,, i'll try it now
Sent from my GT-S6500D using xda-developers app
サンキュゥ♪(o ̄∇ ̄)o
---------- Post added at 03:03 AM ---------- Previous post was at 02:49 AM ----------
it says No resource found that matches the given name (at 'textColor' with value '@color/lockscreen_clock_backgroud') and String types not allowed (at 'drawablePadding' with value '4.odip')
how can i solve that?? thanks b4 :')
Sent from my GT-S6500D using xda app-developers app
サンキュゥ♪(o ̄∇ ̄)o

Related

[MOD+GUIDE] Carrier logo's for stock ROMs (and others)

I have always loved the extended settings Andy Thomoson has made for MIUI (found here), especially the carrier logo's in the statusbar
Well, I have been messing around with the SystemUI.apk from the latest 2.3.7 OTA for the NS4G and made it accessible for that stock ROM. I'll make one for BuglessPete's GPA17 and maybe CM soon.
I'm pretty sure this option has been around for a while but it really is a cool mod and wanted to revive it.
Here is an example of what it looks like
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
The logo can be a lot of things.. Here is a good thread for some carrier logos
So here is the one I showed in the pic: download here
^^That zip was built against the 2.3.7 SystemUI.apk for the NS4G.
I will take requests. Also please refer to the second post for a "How-To"
Instructions
1) Flash ZIP in recovery and rebot
2) Download this eri.xml.zip found HERE
3) Extract that eri.xml and copy/paste it to /data
4) Change permissions to "everything"
-looks like this using Root Explorer or ES File Explorer
5) Toggle airplane mode or reboot to see changes
6) Enjoy!!
How To Submit Request
1) Post your SystemUI.apk and framework-res.apk from your current ROM
(SystemUI.apk is found in /system/app and /system/framework)
2) Post the carrier logo you want (or give an idea of what you want)
3) Post what ROM your using
If you want any other mods like differnt colors for the clock, date, ticker notifications, pretty much anything in the statusbar letme know and I can do that as well
GUIDE
1) Decompile your SystemUI.apk
2) Navigate to your decompiled SystemUI folder and goto
res>layout>status_bar.xml
3) Open it with word processor of choice (I prefer Notepad++)
4)Find the line that starts with
Code:
<com.android.systemui.statusbar.IconMerger
5) Place your curser right at the beginning of that line, press enter to make a space
6) In the empty line now, copy/paste this line of code
Code:
<com.android.systemui.statusbar.CarrierLabel android:textAppearance="@android:style/TextAppearance.StatusBar.Icon" android:textColor="@android:color/transparent" android:gravity="left|center" android:id="@id/carrier" android:background="@drawable/carrier_logo" android:paddingLeft="6.0px" android:paddingRight="6.0px" android:layout_width="wrap_content" android:layout_height="fill_parent" android:singleLine="true" />
7) Save and exit
8) Now goto res>values>ids.xml
9) Open that xml and add this line to the end of the id's (right above the </resources> at the bottom)
Code:
<item type="id" name="carrier">false</item>
10)Save and exit
11) Now take your carrier logo picture you want to use and place it in res>drawable-hdpi and name it "carrier_logo"
12) Now compile your SystemUI, sign it if using apktool and make it into a flashable zip
Here's an empty flashable zip folder structure you can use
DOWNLOAD HERE
Just extract that zip, place your moddified SystemUI.apk in the /system/app folder, then select both the system and META-INF folder and zip em up
EDIT: 2-13-12
I changed the code for the carrier logo to hopefully get rid of overlapping text with carrier logo
Outstanding... Thanks fergie
Sent from my Nexus S 4G using xda premium
info[]box1 said:
Outstanding... Thanks fergie
Sent from my Nexus S 4G using xda premium
Click to expand...
Click to collapse
Hey, there he is! Lol glad you like. Gunna be running to school now but post any issues/ideas. I'll be awake at somepoint tonight lol
Sent from my Nexus S 4G using Tapatalk
Just wanted to say the guide works for CM too
Here's mine from n125
Here's the zip for the carrier logo in the pic
DOWNLOAD HERE
Request
Hi fergie!
Very nice work!!!
I using on my HTC HD2 the ROM Typhoon Cyanogenmod 7 based on Android 2.3.7
Here is the link
http://forum.xda-developers.com/showthread.php?t=933951
If is possible, I want to display the carrier name only in the status bar.
I have tried some solution, but on this nevest build don't work
I send you my framework and system-ui
Can you made for me a flashable zip?
Thank you very much and sorry for my bad english....
Hmmm. Well I've only tried on the Nexus S/ Nexus S 4G. But I'll definitely give it a go when I get home!
Sent from my Nexus S 4G using Tapatalk
fergie716 said:
Hmmm. Well I've only tried on the Nexus S/ Nexus S 4G. But I'll definitely give it a go when I get home!
Sent from my Nexus S 4G using Tapatalk
Click to expand...
Click to collapse
Thank you, Fergie!!!
Only carrier name, no graphics logo...
This patch (see attachment) working only on Android 2.3.5
When I install on new Android version, cause me a USB error and crash the status bar app...
Thank you a lot lot lot
cicciomerenda said:
Thank you, Fergie!!!
Only carrier name, no graphics logo...
This patch (see attachment) working only on Android 2.3.5
When I install on new Android version, cause me a USB error and crash the status bar app...
Thank you a lot lot lot
Click to expand...
Click to collapse
Ok I attached a zip you can flash in recovery. Everything decompiled/recompiled fine with no errors.
I also attached the SystemUI.apk by itself in case the zip doesn't work, try moving the SystemUI.apk to /system/app/ and change permissions to rw-r--r--
@melvinchng
Attached is the modded SystemUI in a flashable zip and standalone apk
Just a quick reminder, don't forget to follow the instructions in the OP especially when it comes to the eri.xml to get rid of the double logo
Thank you very much, Fergie, but the mod don't work...
The ZIP file give me an error on flash in recovery and the sistem-ui make disappear the status bar...
Where is the error???
Sorry sorry
cicciomerenda said:
Thank you very much, Fergie, but the mod don't work...
The ZIP file give me an error on flash in recovery and the sistem-ui make disappear the status bar...
Where is the error???
Sorry sorry
Click to expand...
Click to collapse
It should work
Try toggling zip verification in recovery when flashing the zip
if copy/pasting the apk by itself, you have to change permissions of the new SystemUI.apk to rw-r--r--
Or you can use adb to push it to /system/app/ then go into adb shell and run
Code:
su
fix_permissions
fergie716 said:
@melvinchng
Attached is the modded SystemUI in a flashable zip and standalone apk
Click to expand...
Click to collapse
I flash that... I work well.. but the problem is I have my carrier name stack on the icon... I do copy the xml to my data...
Any idea?
Thanks!
Accidentally sent from my Google Nexus S using XDA Premium
melvinchng said:
I flash that... I work well.. but the problem is I have my carrier name stack on the icon... I do copy the xml to my data...
Any idea?
Thanks!
Accidentally sent from my Google Nexus S using XDA Premium
Click to expand...
Click to collapse
yea you need to change the permissions of that xml to "everything" then toggle airplane mode or reboot
Its in the OP
fergie716 said:
yea you need to change the permissions of that xml to "everything" then toggle airplane mode or reboot
Its in the OP
Click to expand...
Click to collapse
Thank you once again... do you know can I use it as background than logo?
Accidentally sent from my Google Nexus S using XDA Premium
melvinchng said:
Thank you once again... do you know can I use it as background than logo?
Accidentally sent from my Google Nexus S using XDA Premium
Click to expand...
Click to collapse
I'm glad it's working for you!! Awesome stuff. Does it look cramped in there? I resized it for you to try and make it look ok
You want to use the logo as your statusbar background?
fergie716 said:
I'm glad it's working for you!! Awesome stuff. Does it look cramped in there? I resized it for you to try and make it look ok
You want to use the logo as your statusbar background?
Click to expand...
Click to collapse
I don't work well actually. Changed the permission, reboot. My carrier name is still there...
Ya, use it as status bar background. So notification icon can float on it...
Accidentally sent from my Google Nexus S using XDA Premium
melvinchng said:
I don't work well actually. Changed the permission, reboot. My carrier name is still there...
Ya, use it as status bar background. So notification icon can float on it...
Accidentally sent from my Google Nexus S using XDA Premium
Click to expand...
Click to collapse
Can you post a pic? It should be working ok
And IDK if that can be done.. I'll take a look tho and see if it can
fergie716 said:
Can you post a pic? It should be working ok
And IDK if that can be done.. I'll take a look tho and see if it can
Click to expand...
Click to collapse
Accidentally sent from my Google Nexus S using XDA Premium

Settings_Plus Application (Version 2) for All ROMS - Alert ROM Developers

This was the reason why I created this App:​
Why should, Advanced setting added to my settings app??? Why cant I put them all in a separate app just like another settings app???
Click to expand...
Click to collapse
And here I go with all new app called SETTINGS PLUS. All ROM developers can put their Advanced settings right over here...
So, how can I do that???
ChangeLog:
Version 2:
* Fixed some issues
* Now you can add 'Long press Back to Kill" like options right in this APP.
Version 1:
* Advanced settings from Settings.apk can be put in this small App.
Click to expand...
Click to collapse
Implementation:-
Here are the steps to be implemented...
Step 1: Download attached Settings_Plus.apk below
Step 2: Now Decompile Settings_Plus.apk.. Below are the commands:
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Step 3: If you want icon before any option, add icon image to /res/drawable-hdpi folder. (Better to have good icon size, for reference you can use icon.png size attributes)
Step 4: To add new preference to Settings_Plus, open /res/xml/preferences_header1.xml in NOTEPAD++
You should see something like this:
Explanation of Each Tag and purpose:
Step 5: This is it. Now, compile your apk and SIGN IT. If you don’t sign it, you can’t install it. After signing, install Settings_Plus on your phone. Now, your Settings_Plus app should display your list item as well...
Click to expand...
Click to collapse
Where to find Package & Class Names???
For package Name:
Download and install APKSKY latest version from here : http://forum.xda-developers.com/showthread.php?t=1115021
You should put APKSPY in AAPT.EXE (used to decompile APK/Jar files) folder. And then drag and drop your APK. It will show you package name.
For Class / Activity Name:
From Above process, you can compile Settings_Plus.apk You can see AndroidManifest.xml file right in the first folder. Open it with NOTEPAD++
Above pic gives more information than words...
And Ofcourse, Compile and SIGN APK.
Click to expand...
Click to collapse
How to hide an app from Launcher ???
From AndroidMainfest.XML file, change below line
<category android:name="android.intent.category.LAUNCHER" />
Click to expand...
Click to collapse
as
<category android:name="android.intent.category.DEFAULT" />
Click to expand...
Click to collapse
And Ofcourse, Compile and SIGN APK.
Click to expand...
Click to collapse
Screenshots Attached
TroubleShooting : Hmmm, Whats WRONG???
Lets find it out here...
Go to application mainfest of the file that you want to put in Settings_Plus app. If you see something like this:
<intent-filter />
Click to expand...
Click to collapse
This means your app can not be launched. May be because it doesnt have any intent. I mean check this for the Mainactivity...
NOW change add intents as shown below:
<intent-filter >
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
</intent-filter >
Click to expand...
Click to collapse
Now your app is visible... It took full overnight to find this out... If you don't do this, you will be getting PERMISSION DENIAL error.
Other possible exception is CLASS NOT FOUND. this means, the app you put in Settings_Plus doesn't have any associated app installed in your phone.
Click to expand...
Click to collapse
===>>> If you wanna try, then install All packages from "EXAMPLE PACKAGE" attached. Just install all of them as Normal Packages.
Screenshots Attached
Where's the download link ?
Download link is up
Some useful intent codes:
SystemUI Preferences for Tabbed View:
<header android:icon="@drawable/systemuipreferences" android:title="SystemUI Preferences">
<intent android:targetPackage="com.serajr.systemui.preferences" android:targetClass="com.serajr.systemui.preferences.SystemUIPreferencesActivity" />
</header>
On Screen Buttons:
<header android:icon="@drawable/osb" android:title="Navigation Buttons">
<intent android:targetPackage="cn.kyle.gn.NavBar" android:action="android.intent.action.MAIN" android:targetClass="cn.kyle.gn.NavBar.GnNavBarActivity" />
</header>
CPU Nofills:
<header android:icon="@drawable/overclock" android:title="CPU Overclock">
<intent android:targetPackage="it.sineo.android.noFrillsCPUClassic" android:action="android.intent.action.MAIN" android:targetClass="it.sineo.android.noFrillsCPUClassic.activity.MainActivity" />
</header>
QuickPanel Settings:
<header android:title="Quick Settings">
<intent android:targetPackage="com.lidroid.quickpanel" android:action="android.intent.action.MAIN" android:targetClass="com.lidroid.quickpanel.MainActivity" />
</header>
Long Press Back to kill:
<CheckBoxPreference android:title="@string/kill_app_longpress_back" android:key="kill_app_longpress_back" android:summary="@string/kill_app_longpress_back_summary" />
Click to expand...
Click to collapse
- Hit Thanks if I help you
nice ...like :cyclops:
Nice idea...ill try it soon.
Great Idea!
How to hide an app from Launcher..
Find in Manifest:
Code:
<category android:name="android.intent.category.LAUNCHER" /
Change to
Code:
<category android:name="android.intent.category.DEFAULT" /
Thanks for input
jader13254 said:
Great Idea!
How to hide an app from Launcher..
Find in Manifest:
Code:
<category android:name="android.intent.category.LAUNCHER" /
Change to
Code:
<category android:name="android.intent.category.DEFAULT" /
Click to expand...
Click to collapse
Thanks for the input... I will update first post... And, we can get class names from Manifest file. I will update that aswell...
srihari210 said:
Thanks for the input... I will update first post... And, we can get class names from Manifest file. I will update that aswell...
Click to expand...
Click to collapse
Thanks, after a little change your app works fine (sorry for pm).
Perfect work!
Looks awesome!
Gonna try it soon...!
Juz be the smart Geek
Added Example Package - Check it out
All,
I have added example package for your reference.. check it out... its working perfectly..
Cheers,
Srihari G.
Hi friend is a good idea...
Setting plus include in settins ... is a best idea...
Advanced settings menu ... OC, RAM manager
Sesme said:
Hi friend is a good idea...
Setting plus include in settins ... is a best idea...
Advanced settings menu ... OC, RAM manager
Click to expand...
Click to collapse
Yes, Anything... Everything (Any APP) you can put in Settings_Plus menu...
You know, if you want to put some shortcuts from settings, then, you can..
For example, directly open Connectivity option (MSC or MTC).. here you can code... This code should exist in SETTINGS.apk.. You just need to put the correct one and put in here.. thats it, so easy..
srihari210 said:
Yes, Anything... Everything (Any APP) you can put in Settings_Plus menu...
You know, if you want to put some shortcuts from settings, then, you can..
For example, directly open Connectivity option (MSC or MTC).. here you can code... This code should exist in SETTINGS.apk.. You just need to put the correct one and put in here.. thats it, so easy..
Click to expand...
Click to collapse
There is a little spelling mistake
Attached a SS, btw, you can make a cwm package if you want, for the included apps or the app will fc when they arent available
jader13254 said:
There is a little spelling mistake
Attached a SS, btw, you can make a cwm package if you want, for the included apps or the app will fc when they arent available
Click to expand...
Click to collapse
Haahaaa... I know, I will make spelling mistakes...
And, They can install EXAMPLE Package, if they want to try... Example Package works just fine... They just need to install as normal package...
May Be i should mention that in first post
srihari210 said:
Haahaaa... I know, I will make spelling mistakes...
And, They can install EXAMPLE Package, if they want to try... Example Package works just fine... They just need to install as normal package...
May Be i should mention that in first post
Click to expand...
Click to collapse
Ohh, sorry I just checked yesterday and it wasn't upload there! Nice!
Hi, all ! Great work
How to add Colored text ?
.....................................
android:textColor not working
.....................................
Thank you for good and usefully application
MicQo said:
Hi, all ! Great work
How to add Colored text ?
.....................................
android:textColor not working
.....................................
Thank you for good and usefully application
Click to expand...
Click to collapse
Hmm, I dont think, you can put colors to this text. I mean, its same like SETTINGS APP.
These are PREFERENCE Headers and NOT NORMAL LIST... Anyway, I havent tried coloring text, till now..
srihari210 said:
Hmm, I dont think, you can put colors to this text. I mean, its same like SETTINGS APP.
These are PREFERENCE Headers and NOT NORMAL LIST... Anyway, I havent tried coloring text, till now..
Click to expand...
Click to collapse
Thank you, helped me.
@srihari210
would you plz share the source codes?
tnx

[GUIDE][CM9]Xperia™ S lockscreen[05/07/2013]

Hello XDA,​Guide for the official Xperia™ S lock screen for CM9 based ROM's​I have been going through a lot of threads asking for this MOD so, I thought of making one...
Assuming you Know how to De/Re-compile....
Here's
STEP 1: Decompile your android.policy.jar
And put THESE files into \smali\com\android\internal\policy\impl
Done.Recompile your android.policy
STEP 2: Add THIS to \framework
STEP 3: Add THIS to \fonts
STEP 4: And THIS to \etc\permissions
STEP 5: Now for the Lockscreen Settings(in order to change app shortcuts, notification settings....)
Decompile you Settings.apk
Navigate to \res\xml
Open settings_headers.XMl
Add the following Lines
Code:
<header android:icon="@drawable/ic_settings_lockscreen" android:id="@id/lock_screen_settings" android:title="Xperia Settings">
<intent android:targetPackage="com.sonyericsson.lockscreen.uxpnxt" android:action="android.intent.action.MAIN" android:targetClass="com.sonyericsson.lockscreen.settings.Setup" />
</header>
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Add this to ids.xml
(search for it, if you have it ignore.)
Code:
<item type="id" name="lock_screen_settings">false</item>
Recompile your Settings.apk
STEP 6: Add THIS to \system\app
All done .
SCREENSHOTS:
CREDITS
AeonWorld for the original Xperia S lockscreen
@Sky_Walker
@Adi Aisiteru Reborn for their support.
If you want to use this MOD in your ROM's, Don't forget to mention me.:good:
Feel free to hit thanks .This encourage's me!!​
FIX FOR X/HDPI DEVICES
Download
TEST and report back guys.
Don't forget to press THANKS..
Cup_Cake said:
RESERVED
Click to expand...
Click to collapse
SIR will there be any guide for jelly bean also. Tried this on CM 10 but not booting. That's why i'm asking.
"Hitting Thanks Don't Cost You Anything, so, Try Hitting It Once......"
BOND1987 said:
SIR will there be any guide for jelly bean also. Tried this on CM 10 but not booting. That's why i'm asking.
"Hitting Thanks Don't Cost You Anything, so, Try Hitting It Once......"
Click to expand...
Click to collapse
This is for ICS base I guess bro..
for JB you can try something like this :
1. Download JB Xperia -S UxpNxtLockscreen.apk
2. Download JB Xperia -S android.policy.jar
3. Search it on S forum or request there.
4. If you got it already, next step is go to Arsaw thread how to port Xperia z lockscreen to non Xperia device. follow his guide step how to modded UxpNxtLockscreen.apk and android.policy.jar for non Xperia devices, done that go back here and follow some part of Cup_Cake guide
good luck
BOND1987 said:
SIR will there be any guide for jelly bean also. Tried this on CM 10 but not booting. That's why i'm asking.
"Hitting Thanks Don't Cost You Anything, so, Try Hitting It Once......"
Click to expand...
Click to collapse
I'm downloading framework and apk files from X-S JB, so I'll do that also...
Sent from my HTC One V using xda app-developers app
FIX
Fix for x/hdpi devices added!:good:
Regards,
Cup_Cake.
Cup_Cake said:
Fix for x/hdpi devices added!:good:
Regards,
Cup_Cake.
Click to expand...
Click to collapse
I've tried the fix for HDPI and it worked like a charm :good:
just replaced the UxpNxtLockScreen.apk with the new UxpNxtLockScreen_X-HDPI.apk
DoO37 said:
I've tried the fix for HDPI and it worked like a charm :good:
just replaced the UxpNxtLockScreen.apk with the new UxpNxtLockScreen_X-HDPI.apk
Click to expand...
Click to collapse
Thanks for reporting that!:good::victory:
Thanks , really
cupcake ı wıll take MODİFİED FİLES FROM dOO37 because he have same device (Galaxy W) THANX ANYWAY!
You cant ported from CM10.1 ? please!?
IWRH said:
cupcake ı wıll take MODİFİED FİLES FROM dOO37 because he have same device (Galaxy W) THANX ANYWAY!
Click to expand...
Click to collapse
Okay, cool!:thumbup:
Sent from my Wildfire S A510e using xda premium
okay so i followed the steps, except for the part where paste lockkeyguadrview.smali into my android.policy.jar, did a little comparing with the xperia z lockscreen port. wrapped it all up in a zip and flashed away, got stuck bootloop, logcat shows this error
*** FATAL EXCEPTION IN SYSTEM PROCESS: WindowManagerPolicy
java.lang.NullPointerException
at com.android.internal.policy.impl.ExternalLockScreen.getLockScreen(ExternalLockScreen.java:215)
at com.android.internal.policy.impl.LockPatternKeyguardView.createLockScreen(LockPatternKeyguardView.java)
at com.android.internal.policy.impl.LockPatternKeyguardView.recreateLockScreen(LockPatternKeyguardView.java:692)
at com.android.internal.policy.impl.LockPatternKeyguardView.updateScreen(LockPatternKeyguardView.java:899)
at com.android.internal.policy.impl.LockPatternKeyguardView.<init>(LockPatternKeyguardView.java:499)
at com.android.internal.policy.impl.LockPatternKeyguardViewProperties.createKeyguardView(LockPatternKeyguardViewProperties.java:52)
at com.android.internal.policy.impl.KeyguardViewManager.show(KeyguardViewManager.java:180)
at com.android.internal.policy.impl.KeyguardViewMediator.handleShow(KeyguardViewMediator.java:1288)
at com.android.internal.policy.impl.KeyguardViewMediator.access$1700(KeyguardViewMediator.java:95)
at com.android.internal.policy.impl.KeyguardViewMediator$4.handleMessage(KeyguardViewMediator.java:1125)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:153)
at com.android.server.wm.WindowManagerService$PolicyThread.run(WindowManagerService.java:954)
Click to expand...
Click to collapse
reflashed my stock android.policy.jar checked the system files and found out that uxpnxt lockscreen did not install in the system. i tried manually installing it but it wouldnt, i tried deleting it from system and then manually pushing it from adb but still it wouldnt install as a system app. anyone got any ideas or has an alternative uxpnxt lockscreen apk that will install in JB 4.1???
Hello everyone.
I want to decompile the UxpNxtLockscreen.apk for Xperia S lockscreen, but i am missing the necessary framework file required..
Can anyone kindly share the framework file required? (I think it may be the framework-res.apk from Xperia S stock rom)
Thanks!
Thanaya said:
Hello everyone.
I want to decompile the UxpNxtLockscreen.apk for Xperia S lockscreen, but i am missing the necessary framework file required..
Can anyone kindly share the framework file required? (I think it may be the framework-res.apk from Xperia S stock rom)
Thanks!
Click to expand...
Click to collapse
Youll need something else other than just the res, i tried already
Sent from my H100 using xda app-developers app
thirdzcee said:
Youll need something else other than just the res, i tried already
Sent from my H100 using xda app-developers app
Click to expand...
Click to collapse
Can somebody please share the necessary files? i will be very grateful. Thanks! :fingers-crossed:
Thanaya said:
Can somebody please share the necessary files? i will be very grateful. Thanks! :fingers-crossed:
Click to expand...
Click to collapse
Someone once told me it could be semcxgeneric-res.apk since its the only other res apk in framework but i was never able to get my hands on it
Sent from my H100 using xda app-developers app
thirdzcee said:
Someone once told me it could be semcxgeneric-res.apk since its the only other res apk in framework but i was never able to get my hands on it
Sent from my H100 using xda app-developers app
Click to expand...
Click to collapse
Found it, and i managed to decompile and recompile the UxpNxtLockScreen.apk!
Does anyone know how to enable SMS notification from CM Mms app to appear on the lockscreen? I think the lockscreen currently only supports SMS notification from Xperia Conversations.apk.. How to change it so that it displays SMS from CM Mms.apk instead?
Any help would be appreciated!
Thanaya said:
Found it, and i managed to decompile and recompile the UxpNxtLockScreen.apk!
Does anyone know how to enable SMS notification from CM Mms app to appear on the lockscreen? I think the lockscreen currently only supports SMS notification from Xperia Conversations.apk.. How to change it so that it displays SMS from CM Mms.apk instead?
Any help would be appreciated!
Click to expand...
Click to collapse
So it worked??? Omg mu dream is back, could you please share the new uxpnxtlock apk??? I think its coded in the smali so its not gonna be easy, if you could share the neccesary files i can also decompile and take look so i can help too
Sent from my H100 using xda app-developers app
thirdzcee said:
So it worked??? Omg mu dream is back, could you please share the new uxpnxtlock apk??? I think its coded in the smali so its not gonna be easy, if you could share the neccesary files i can also decompile and take look so i can help too
Sent from my H100 using xda app-developers app
Click to expand...
Click to collapse
I just modified the apk to show analog clock instead of digital. I have attached the modified UxpNxtLockscreen.apk and the SemcGenericUxpRes.apk below.
I would really appreciate it if you can make the lockscreen work with my Mms.apk, which i have attached also.. Or tell me how to do it..Thanks a lot!
View attachment SemcGenericUxpRes.apk
View attachment UxpNxtLockScreen_S_Analog.apk
View attachment Mms.apk
Just a thought
Adi Aisiteru Reborn said:
This is for ICS base I guess bro..
for JB you can try something like this :
1. Download JB Xperia -S UxpNxtLockscreen.apk
2. Download JB Xperia -S android.policy.jar
3. Search it on S forum or request there.
4. If you got it already, next step is go to Arsaw thread how to port Xperia z lockscreen to non Xperia device. follow his guide step how to modded UxpNxtLockscreen.apk and android.policy.jar for non Xperia devices, done that go back here and follow some part of Cup_Cake guide
good luck
Click to expand...
Click to collapse
Is there a possibility that this can be ported to any Xperia JB devices?
I have been looking for a TUT on how to port these to JB Devices.
Hope you can help me @Adi Aisiteru Reborn

[ROM][T210][NI1][9/10][ HASSAN ROM ] [ V1.0 ] [ 4.4.2 KKT][Fast-stable][All Language]

----------------------------------------------------------------------------------------------------------------------------------------------------------------
Hello everyone
HaSSaN RoM V1
For Samsung Galaxy Tab 3
T210
--------------------------------------------------------------------------------------------------------------------------------​
Click to expand...
Click to collapse
Features:
Based on firmware XXBNI1
Android 4.4.2 kitkat
Support All Languages
en-ar-es ...
Support busybox
Support init.d
Deodexed + Rooted
Aroma Installer
No Wipe
Fast Launcher
Lock Screen on status bar
Button or clock or Disable
fix permissions read/write sdcard
All Apps in Aroma
You can choose What you want to install
--------------------------------------------------------------------------------------------------------------------------------​
Click to expand...
Click to collapse
kernel:
Stock kernel!
Support init.d
--------------------------------------------------------------------------------------------------------------------------------​
Click to expand...
Click to collapse
Screenshot:
--------------------------------------------------------------------------------------------------------------------------------​
Click to expand...
Click to collapse
Download:
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
in mega
T210-HASSAN-ROM-V1.0-kitkat-4.4.2-all Languages
or
xda
MD5: C43235906B6552D9FA3E8757B34BB4B3
--------------------------------------------------------------------------------------------------------------------------------​
Click to expand...
Click to collapse
how to install:
use Recovery PhilZ
Copy the Rom in your Phone
Take a backup
go to Recovery mode
- turn of your device and hold volume up + home + power -
If you want high performance
And without any problem
Make Full Wipe
Select install zip from sd card and choose Hassan Rom
wait ..
reboot the device
--------------------------------------------------------------------------------------------------------------------------------​
Click to expand...
Click to collapse
Update :
First release
v1.0 - Date: 09/10/2014
​
Click to expand...
Click to collapse
----------------------------------------------------------------------------------------------------------------------------------------------------------------
​
Click to expand...
Click to collapse
XDA:DevDB Information
HASSAN ROM TAB 3, ROM for the Samsung Galaxy Tab 3
Contributors
HASSAN EL BAGHDADI
ROM OS Version: 2.3.x Gingerbread
Version Information
Status: Stable
Created 2014-10-08
Last Updated 2016-02-02
MOD !!
----------------------------------------------------------------------------------------------------------------
MORE MOD !! ​
Click to expand...
Click to collapse
MOD :3minit battery for v1.0​
Click to expand...
Click to collapse
----------------------------------------------------------------------------------------------------------------------------------------------------------------​
Click to expand...
Click to collapse
​
Going to give it a shot
hey man can you please tell me how to include all languages in my rom and how to add lock button in status bar?
Android file host upload can you please
SM-T210 cihazımdan Tapatalk kullanılarak gönderildi
@HASSAN EL BAGHDADI if the kernel is stock then it misses the IR-blaster for sm-t210r devices so please add it and thanks for the ROM, I am downloading it r8 now
Doesn't the werewolf kernel support ir blaster
svicenty said:
Doesn't the werewolf kernel support ir blaster
Click to expand...
Click to collapse
Yes, indeed but it has problem sadly
chrome blocked your zip after download has finished, why?
Need another way to download. Mega never works for me.
Aroma installer is corrupted, i have chosen not to install chaton, splanner, videos and yahoo news daemon but they were installed also there is no 4-way reboot also please add on aroma all samsung apps, i mean every single one also every google app that is not necessary.
The rom is fast, stable but misses the basic things also can you add 4-way multiwindow like the one on nolekat
Nice to see new roms and new dev.
Even I have t211 at hand.
Sent from my GT-N7000 using XDA Premium 4 mobile app
JT1510365 said:
hey man can you please tell me how to include all languages in my rom and how to add lock button in status bar?
Click to expand...
Click to collapse
hi for all languages use my csc folder
and the lock button
Find
HTML:
<com.android.systemui.statusbar.policy.Clock android:textAppearance="@style/TextAppearance.StatusBar.Clock" android:ellipsize="none" android:gravity="start|center" android:id="@id/clock" android:layout_width="wrap_content" android:layout_height="fill_parent" android:singleLine="true" android:includeFontPadding="false" android:paddingStart="6.0dip" systemui:ampmSmall="false" />
in SystemUI - status_bar.xml add This under
HTML:
<com.android.systemui.statusbar.policy.KeyButtonView android:id="@id/back" android:paddingLeft="0.0dip" android:paddingRight="0.0dip" android:layout_width="wrap_content" android:layout_height="fill_parent" android:src="@drawable/hassan_lock" android:contentDescription="@string/accessibility_back" systemui:keyCode="26" systemui:glowBackground="@drawable/ic_sysbar_highlight" />
Put the picture in the attachments in drawable-xhdpi
Good luck
gr9nole said:
Android file host upload can you please
SM-T210 cihazımdan Tapatalk kullanılarak gönderildi
Click to expand...
Click to collapse
upload to xda host
Ripshock said:
@HASSAN EL BAGHDADI if the kernel is stock then it misses the IR-blaster for sm-t210r devices so please add it and thanks for the ROM, I am downloading it r8 now
Click to expand...
Click to collapse
I do not use the device and I have no idea about the difference between t210 and t210R
Are you sure the only difference in the kernel ?
pengpengback said:
Nice to see new roms and new dev.
Even I have t211 at hand.
Sent from my GT-N7000 using XDA Premium 4 mobile app
Click to expand...
Click to collapse
Thanks bro
HASSAN EL BAGHDADI said:
I do not use the device and I have no idea about the difference between t210 and t210R
Are you sure the only difference in the kernel ?
Click to expand...
Click to collapse
Yes, just a line ask gr8nole about it
Ripshock said:
Aroma installer is corrupted, i have chosen not to install chaton, splanner, videos and yahoo news daemon also there is no 4-way reboot also please add on aroma all samsung apps, i mean every single one also every google app that is not necessary.
The rom is fast, stable but misses the basic things also can you add 4-way multiwindow like the one on nolekat
Click to expand...
Click to collapse
I know that many basic things miss the rom
But the purpose of the Rom activate all languages
I made in two hours
I will update it later with more features
But about Aroma installer I'm sure no mistake in it
Is one else faced the same problem?
Thank you for reporting
HASSAN EL BAGHDADI said:
hi for all languages use my csc folder
and the lock button
Find
HTML:
<com.android.systemui.statusbar.policy.Clock android:textAppearance="@style/TextAppearance.StatusBar.Clock" android:ellipsize="none" android:gravity="start|center" android:id="@id/clock" android:layout_width="wrap_content" android:layout_height="fill_parent" android:singleLine="true" android:includeFontPadding="false" android:paddingStart="6.0dip" systemui:ampmSmall="false" />
in SystemUI - status_bar.xml add This under
HTML:
<com.android.systemui.statusbar.policy.KeyButtonView android:id="@id/back" android:paddingLeft="0.0dip" android:paddingRight="0.0dip" android:layout_width="wrap_content" android:layout_height="fill_parent" android:src="@drawable/hassan_lock" android:contentDescription="@string/accessibility_back" systemui:keyCode="26" systemui:glowBackground="@drawable/ic_sysbar_highlight" />
Put the picture in the attachments in drawable-xhdpi
Good luck
Click to expand...
Click to collapse
hey man i still get the same languages as before with your csc folder. I have no new languages. Also got the lock to work but the png doesn't go in drawable-xhdpi it just goes in drawable. But hey the lock works so no biggie. I want all the languages though.
rom very high mb debloated ?

[2.3x+][GUIDE][MOD][2EZ2Do][GRIDandHORIZONTAL]PO PowerWidget V1.2.2[LAZY-FRIENDLY]

Power Widget
POTech Works​
Hello XDA, how are everyone? Since I had my vacant time, I brought something, not so unique but I guess it worth to try. As the title implies, yeah its a Power Widget. Remember the CyanogenMod power widget, lidroid quickpanel, and spacecaker xperia toggle and everything that is similar to this, and yeah Im so old and outdated now but I should give it too. This was forked and derived from CyanogenMod 7.2 power widget.
This requires some patience to do, not like how SpaceCaker did. But if you insist to make it to a Super EZ guide, then I can make it(in humbly speaking)
Update:
-Added Grid style power widget
-Added Recent Toggle
-Revamped PO Power Widget Settings
-Refurbished layout
THE THREAD IS UPDATED, NEW USER AND OLD USER OF THIS MOD, DO IT AGAIN SORRY, NO SHORTCUT FOR OLD USER
Old update:
-As some XDA Developers demand, I'll make this guide 2EZ2DO(too easy to do). No more smali included plus make your systemui.apk
-For those who made the guide already just replace the smali folder in your SystemUI.
-For new XDA-Developer who will do this, just go with the instruction.
Whats hot:
All lidroid features
22 Power Widgets all in all
Snappy and accurate PowerWidget
Consistent Wifi and Bluetooth name
Widget Threshold
Profile Button
Integrated in your SystemUI
Smart Settings
Easy to do
Grid Power Widget​
Click to expand...
Click to collapse
Whats not:
The Data icon isnt accurate much (Like lidroid does but working fine at dis/enabling)​
Click to expand...
Click to collapse
Note:
Let me know if there is a bug you encounter
Click to expand...
Click to collapse
Disclaimer:
I and XDA are not responsible for the Force Close. This guide was tested and working fine for 3 totoro and a Nexus 7 2013. Take a backup first
Requirements:
Notepad++
Basic Android Modding Skills
Your SystemUI
Apktool
Patience
And a lot of understading because my english is poor
Click to expand...
Click to collapse
Click to expand...
Click to collapse
Instruction:
1. Download and install the APK PWidget Settings Beta2.1.apk given at the third post.
2. Download the file powerwidget_v2.3.zip given at the third post
3. Decompile your SystemUI.apk
4. After decompiling, extract the powerwidget_v2.3.zip and deploy it to the SystemUI.apk
a. Put the res folder of the powerwidget_v2.3.zip to youe decompiled SystemUI.apk
b. Put the smali folder of the downloaded file to your decompiled SystemUI.apk​5. Go to statusbar_expanded.xml right from the res/layout of your decompiled SystemUI.apk
6. (This may vary with everyone's layouting, and bring the themer in you) Put this code in your statusbar_expanded.xml
For people who want horizontal power widget, put this code
Code:
<com.pineappleowl.Powerwidget.PowerWidget android:layout_width="fill_parent" android:layout_height="wrap_content" />
For user who want to add grid power widget put this code
Code:
<ScrollView android:layout_width="fill_parent" android:layout_height="fill_parent">
<com.pineappleowl.Powerwidget.PowerWidgetGrid android:layout_width="fill_parent" android:layout_height="wrap_content"/>
</ScrollView>
7. Save and recompile your APK
8. Enjoy the PO PowerWidget
Credits:
Android Open Source Program
CyanogenMod
Lidroid
PotatoInc
Mariozawa
My testers (You know who you are )​
Greets,
PineappleOwl​
Screenshots​
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
FAQs
Q: Why Power Widget again?
A: I had made it, and I want to share to everyone.
Q: Why the app beta?
A: Isnt properly theme and Ill add some functions for the future
Q: Is it open source?
A: I got it from open source Yeah. but PM me for what matters
Q: Can I request a feature?
A: Sure if I can hehe, You can suggest what you want.Ill try to do it
Q: How can I donate you?
A: I dont have a donate link and its free. [/QUOTE]​
Download Link:
powerwidget_v2.3.zip​
PWidget Settings Beta2.1.apk​
Click to expand...
Click to collapse
PLEASE DONT MIRROR THE DOWNLOAD LINK. IT THANKS MANY NIGHTS TO DO THIS, IM OBSERVING THE DOWNLOAD COUNT TOO. PLEASE I MADE IT FREE AND I PUT EFFORT DONT TRY, PLEASE(IM BEGGING). AND IF YOU SHARE YOUR MOD PUT A PROPER CREDIT, AND LINK IT HERE. (I SEE MY WORK MIRRORED, IT DISCOURAGED ME )
LOGS:​
Code:
[SIZE="3"][B]V1.0[/B]
Initial Release
[B]V1.1[/B]
Remodified ProfileButton (No more lags at start-up)
Removed cropping feature for JB and below due to the startActivityResult error I encounter
Kitkat had cropped feature COOL
Screenshot Button only now working in Galaxy Y GT-S5360 (Dont worry, it ninja moves when you are not a Galaxy Y user xD)
[B]V1.2[/B]
Fix Flashlight PowerWidget
Made the guide super easy
No more smali editing
Remove Kitkat cropped feature
[/SIZE]
<!------- Other version skipped. Its private --------->
[B]V2.3[/B]
Added Grid Power Widget
Revamped Power Widget Settings
Added Recent Button
[/SIZE]
​
THIS IS ON DEVELOPMENT STAGE, JUST WAIT FOR FUTURE FEATURE
tnx Sir.. nice one.. im sooo excited in Grid style.. im waiting.. more power ranger sir..
SystemUI force close when i press the flashlgiht toggle sir..
Punkzappa09 said:
tnx Sir.. nice one.. im sooo excited in Grid style.. im waiting.. more power ranger sir..
SystemUI force close when i press the flashlgiht toggle sir..
Click to expand...
Click to collapse
Oh yeaah the fix will come tomorrow i forgot and I rushed xD
Finally found it..goodbye taking care of lidroids..this is what i've been waiting for..
Nice work sir.. i'll try this tommorow
Sent from my GT-S5360 using xda premium
Guide updated 2EZ2D0 now
Where is drawable folder sir?
the_vanya1 said:
Where is drawable folder sir?
Click to expand...
Click to collapse
I putted it in Settings.apk hehhe
When I choose any option - FC
PineappleOwl said:
Guide updated 2EZ2D0 now
Click to expand...
Click to collapse
Nice. zehahaha xD
the_vanya1 said:
When I choose any option - FC
Click to expand...
Click to collapse
Now updated
PineappleOwl said:
Guide updated 2EZ2D0 now
Click to expand...
Click to collapse
Nice!!sir
Sent from my GT-S5360 using xda premium
PineappleOwl said:
Guide updated 2EZ2D0 now
Click to expand...
Click to collapse
Thanks "PINYANG GWAPO" I'LL try now..
Sent from my GT-S5360 using xda premium
I got error parsing xml.. I put the codes below "quickpanel_plmn_background" in statusbar_expanded.xml
Sent from my GT-S5360 using xda premium
wizzer03 said:
I got error parsing xml.. I put the codes below "quickpanel_plmn_background" in statusbar_expanded.xml
Sent from my GT-S5360 using xda premium
Click to expand...
Click to collapse
Its layouting matter sir
PineappleOwl said:
Its layouting matter sir
Click to expand...
Click to collapse
Do i have to put LinearLayout bafore the code sir??
By the way i dont have header yet..is there any way sir??thanks
Sorry for my bad english
Sent from my GT-S5360 using xda premium
wizzer03 said:
Do i have to put LinearLayout bafore the code sir??
By the way i dont have header yet..is there any way sir??thanks
Sorry for my bad english
Sent from my GT-S5360 using xda premium
Click to expand...
Click to collapse
No. heheh just simply put where you want to put. Hehehe. Take a logcat if ever
PineappleOwl said:
Screenshots​
FAQs​
Click to expand...
Click to collapse
sir @PineappleOwl my statusbar is stock of dxmj1 , i made this awesome mod and i placed the
<com.pineappleowl.Powerwidget.PowerWidget android:layout_width="fill_parent" android:layout_height="wrap_content" />
before com.android.systemui.statusbar.NotificationLinearLayout
and after <ScrollView android:id="@id/scroll" android:fadingEdge="none" android:layout_width="fill_parent"
and i recompile it and flash , but after flashing my statusbar forced closed ? and i used logcat , and i says
"scroll view can host only one direct child"
Pls help , i really want this awesome mod
carlo_autor said:
sir @PineappleOwl my statusbar is stock of dxmj1 , i made this awesome mod and i placed the
<com.pineappleowl.Powerwidget.PowerWidget android:layout_width="fill_parent" android:layout_height="wrap_content" />
before com.android.systemui.statusbar.NotificationLinearLayout
and after <ScrollView android:id="@id/scroll" android:fadingEdge="none" android:layout_width="fill_parent"
and i recompile it and flash , but after flashing my statusbar forced closed ? and i used logcat , and i says
"scroll view can host only one direct child"
Pls help , i really want this awesome mod
Click to expand...
Click to collapse
Bare in mind that scrollviews should have only one child. In your case , you might do the following:
Code:
<ScrollView......> (Parent)
<LinearLayout.......> (Set the orientation to vertical) (Child)
<com.blahblah.PowerWidget....../> (Child of LinearLayout)
<com.blahblah.Notificaionblhablha......> (Child of LinearLayout)
<TextView..../> (Child of com.blahblah.Notificaionblhablha)
<TextView..../> (Child of com.blahblah.Notificaionblhablha)
<and so on....> (Child of com.blahblah.Notificaionblhablha)
</com.blahblah.Notificaionblhablha>
</LinearLayout>
</ScrollView>
It is theming matters. As I said at the instruction, Let your theming skill do the job

Categories

Resources