Settings_Plus Application (Version 2) for All ROMS - Alert ROM Developers - Xperia Arc Android Development

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

Related

[MOD][GUIDE]LockScreen Clock with seconds[ANY ROM]

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

[GUIDE][MOD]Adding custom ROM image in Settings.apk

Custom ROM Image in Settings.apk​
Featured in Cosmic v2, I was searching for this for a long time, I happened to ask for help to some people, but, it didn't work out.
I knew the code to be added, but I was adding it in wrong file, then i figured it out and mod was complete :victory:
I looked back and remembered that Sniper Killer suggested me to try custom layout and smali editing. I knew, it was nothing to do with smalis, duh. Just a simple ImageView Tag it was. But the Custom Layout thing was true
Guide​
1. Download the SettingsSource.zip
2. Decompile your Settings.apk
3. Extract contents of SettingsSource.zip to respective folders in Settings.apk
4. Open /res/xml/device_info_settings.xml
You'll see several <Preference android:title tags
Add this just a line above the first Preference tag:
Code:
<PreferenceCategory android:layout="@layout/areebisawesome" android:key="blah" android:title="" />
Finally, it will look like this
Code:
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen android:title="@string/about_settings"
xmlns:android="http://schemas.android.com/apk/res/android">
[COLOR="DeepSkyBlue"]<PreferenceCategory android:layout="@layout/areebisawesome" android:key="blah" android:title="" />[/COLOR]
<Preference android:title="@string/model_number" android:key="device_model" android:summary="@string/device_info_default" style="?android:preferenceInformationStyle" />
Save the file
5. Now,go to /res/drawable/
There, you'll see cosmic.png Change it to any png of size 320x200 You can change this size description in /res/layout/areebisawesome.xml
6. Recompile the apk
7. Enjoy
Preview​
{
"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"
}
SettingsSource.zip​
And if you want a method for changing the image on clicking, my buddy abhi922 has found a very easy to follow way for that :
http://forum.xda-developers.com/showpost.php?p=48576541&postcount=36
This is actually petrukgrinder's code rite? With little modifications to make it simpler.
I think you should give him credits http://forum.xda-developers.com/showthread.php?t=2289889
andy.acei said:
This is actually petrukgrinder's code rite? With little modifications to make it simpler.
I think you should give him credits http://forum.xda-developers.com/showthread.php?t=2289889
Click to expand...
Click to collapse
Oh. There was a thread already
But, no, it isn't his code.
I've added it myself and it's no big deal, anyone having knowledge of xml and some experience in Eclipse Layout formation can add it.
If you have confusion, ask Sniper Killer, we had talks of it enabling this feature and it was completed in steps with several failures
First I was adding the code in device_info_settings.xml but then realized that it won't work as it's not controlling the layout and won't support ImageView
Then I tried what Sniper said, adding a custom layout in drawable which worked and I saw the PreferenceCategory code in one MIUI ROM :silly:
Report it to the mods if you feel like it's his code Having added so many features in Cosmic v2 and providing credits to all of them, Do you think I would be crazy enough to leave one credit out of nothing?
And, don't you feel these talks should be private instead of public as you may have read "If you have any issues, please PM me"
And by this post, I mean no disrespect to you
iamareebjamal said:
Oh. There was a thread already
But, no, it isn't his code.
I've added it myself and it's no big deal, anyone having knowledge of xml and some experience in Eclipse Layout formation can add it.
If you have confusion, ask Sniper Killer, we had talks of it enabling this feature and it was completed in steps with several failures
First I was adding the code in device_info_settings.xml but then realized that it won't work as it's not controlling the layout and won't support ImageView
Then I tried what Sniper said, adding a custom layout in drawable which worked and I saw the PreferenceCategory code in one MIUI ROM :silly:
Report it to the mods if you feel like it's his code Having added so many features in Cosmic v2 and providing credits to all of them, Do you think I would be crazy enough to leave one credit out of nothing?
And, don't you feel these talks should be private instead of public as you may have read "If you have any issues, please PM me"
And by this post, I mean no disrespect to you
Click to expand...
Click to collapse
andy.acei said:
This is actually petrukgrinder's code rite? With little modifications to make it simpler.
I think you should give him credits http://forum.xda-developers.com/showthread.php?t=2289889
Click to expand...
Click to collapse
Yeah!
Wow! I didn't except that there would be already a guide. But bro, we swear that we haven't copied his code. He has done in his own way. It isn't hard for app creators or for those who have high xml knowledge to make it.
iamareebjamal said:
Oh. There was a thread already
But, no, it isn't his code.
I've added it myself and it's no big deal, anyone having knowledge of xml and some experience in Eclipse Layout formation can add it.
If you have confusion, ask Sniper Killer, we had talks of it enabling this feature and it was completed in steps with several failures
First I was adding the code in device_info_settings.xml but then realized that it won't work as it's not controlling the layout and won't support ImageView
Then I tried what Sniper said, adding a custom layout in drawable which worked and I saw the PreferenceCategory code in one MIUI ROM :silly:
Report it to the mods if you feel like it's his code Having added so many features in Cosmic v2 and providing credits to all of them, Do you think I would be crazy enough to leave one credit out of nothing?
And, don't you feel these talks should be private instead of public as you may have read "If you have any issues, please PM me"
And by this post, I mean no disrespect to you
Click to expand...
Click to collapse
Didn't mean any disrespect to you or Sniper Killer.I remembered seeing a similar guide..thats why I wanted to know.I didn't doubt you..why would I press thanks then I know you are capable of doing it by yourself btw your cosmic mod made me come back to stock Yea..I should have Pm'd you.Please I apologize for my stupidity
Sent from my GT-S5830i using xda app-developers app
Wow... I'm going to decompilie your cosmic settings.apk for this mod...
I was missed this guide on my final version of Ace-i-Sure....
Sent from my GT-S5830i using xda app-developers app
Nice guide, Areeb :highfive:
Any easy method to remove that image instead of changing??
SènDîñG FrØm mY bîTçh's ÃçÈ "i"
PuRu a.K.a ProCtor said:
Any easy method to remove that image instead of changing??
SènDîñG FrØm mY bîTçh's ÃçÈ "i"
Click to expand...
Click to collapse
Revert the process
Remove the lines from settings.xml
plis..
I need two tutorials to add ini.d suport and 15 toggles and 6 lock screem for rom stock XXLF2
sorry for my bad English:silly:
mifune_lee said:
I need two tutorials to add ini.d suport and 15 toggles and 6 lock screem for rom stock XXLF2
sorry for my bad English:silly:
Click to expand...
Click to collapse
I understand that you don't want to flood the section with useless threads but you can ask a question on the off topic thread by areeb rather than here.
Sent from my GT-S5830i using Tapatalk 2
'Areebisawesome' Oh, how much I admire you!
recommend using:
android: layout_width = "fill_parent" android: layout_height = "wrap_content"
Areeb, after following your guide on Cm7, settings disappear for me. Dunno if i did anything wrong, though.
mathm2013 said:
Areeb, after following your guide on Cm7, settings disappear for me. Dunno if i did anything wrong, though.
Click to expand...
Click to collapse
Strange
Try to access Settings from Launcher by clicking menu button and then Settings, and then take logcat
iamareebjamal said:
Strange
Try to access Settings from Launcher by clicking menu button and then Settings, and then take logcat
Click to expand...
Click to collapse
http://pastebin.com/nBfki8gU
mathm2013 said:
http://pastebin.com/nBfki8gU
Click to expand...
Click to collapse
Can't find activity to handle
intent; ignoring
134. android.content.ActivityNotFoundException:
No Activity found to handle Intent
{ act=android.settings.SETTINGS
flg=0x10200000 }
This is the error. Its strange
Did you edit anything in AndroidManifest.xml ?
iamareebjamal said:
Can't find activity to handle
intent; ignoring
134. android.content.ActivityNotFoundException:
No Activity found to handle Intent
{ act=android.settings.SETTINGS
flg=0x10200000 }
This is the error. Its strange
Did you edit anything in AndroidManifest.xml ?
Click to expand...
Click to collapse
No, i didn't edit anything in AndroidManifest.xml. Only thing i did was putting your source, adding cosmic.png to drawable and editing your areebisawesome.xml to instead of 320x200 showing 303x200 (my image is that size)
mathm2013 said:
No, i didn't edit anything in AndroidManifest.xml. Only thing i did was putting your source, adding cosmic.png to drawable and editing your areebisawesome.xml to instead of 320x200 showing 303x200 (my image is that size)
Click to expand...
Click to collapse
Hmmm
Can't tell what's wrong
Which ROM's Settings are you editing?
I'll have a look if possible
iamareebjamal said:
Hmmm
Can't tell what's wrong
Which ROM's Settings are you editing?
I'll have a look if possible
Click to expand...
Click to collapse
Tried with Cm7's settings and Reincarnation settings.

[TOOL][20 March] Icon Helper 2.1 - Easy to collect request for your icon pack

{
"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"
}
Icon Helper​
# THIS IS OUT_OF_DATE AND NOT SO GOOD , BETTER VERSION:
here is blaze's thread
# Are you themer / designer on Playstore ?
Your icon pack has alot of user and they love your work, unfortunately they're using differents apps, with custom version and their app can't get themed right now and they need contact you for update. But they need type name of apps, find your email and send a request, then you need collect activities for these apps, goto market, save image and make better icons, me too. So i decide write this tool to help us collect them faster and more easy for users :victory:
*My skill is not so good, but atleast it works ...
# Feature ?
♥ Doesn't waste your internal storage ( 300 KB )
♥ Doesn't waste your app drawer space ( no shortcut )
♥ No special permission
♥ Easy to request to your dev - just with few click ( i'm lazy , too )
♥ Automatically find only unthemed apps on user devices - not all of their apps !
tung91 said:
Icon Helper​
# Are you themer / designer on Playstore ?
Your icon pack has alot of user and they love your work, unfortunately they're using differents apps, with custom version and their app can't get themed right now and they need contact you for update. But they need type name of apps, find your email and send a request, then you need collect activities for these apps, goto market, save image and make better icons, me too. So i decide write this tool to help us collect them faster and more easy for users :victory:
*My skill is not so good, but atleast it works ...
# Feature ?
♥ Doesn't waste your internal storage ( 300 KB )
♥ Doesn't waste your app drawer space ( no shortcut )
♥ No special permission
♥ Easy to request to your dev - just with few click ( i'm lazy , too )
♥ Automatically find only unthemed apps on user devices - not all of their apps !
# How to use
I've uploaded my app to Playstore , you just need open it from your icon app with code below, then it will do the rest !
* Add "Request" button to your icon pack and inside button click event, add these lines of code : http://pastebin.com/DwMLFtAh
* Remember to import missing package ( Eclipse will tell you ), add throws Throwable, IOException to click event !!!
* Remember to copy appfilter.xml to assets folder !!!
* Remember to change email and your icon pack name !!!
# Example - want to see how it works ?
* Install both these 2 apk :
- "Icon Helper" - or from Playstore if it's updated to 2.0.1
- "Rounded+" Icon Pack
* And try apply "Rounded+" on your devices, see what missing ?
* Go back, press Request icons, and all your unthemed app here, just select and send request !
Click to expand...
Click to collapse
Sir, its fr 4.0+.. Is der any way it can be ported to 2.0+? i really need it.. as i myself still use an old phn. so does many of the customers of my icon packs..
Blaze said:
Sir, its fr 4.0+.. Is der any way it can be ported to 2.0+? i really need it.. as i myself still use an old phn. so does many of the customers of my icon packs..
Click to expand...
Click to collapse
will add support for 2.x android next update :good:
Guide
Please provide a guide for this as i am very confused
Techsavage said:
Please provide a guide for this as i am very confused
Click to expand...
Click to collapse
the code is written above. assign dat to a button.
What should I do? it says that these methods are undefined
on line 6: AssetManager am = this.getAssets();
and 39: Toast failed = Toast.makeText(getApplicationContext(),
Cuetzpalomit said:
What should I do? it says that these methods are undefined
on line 6: AssetManager am = this.getAssets();
and 39: Toast failed = Toast.makeText(getApplicationContext(),
Click to expand...
Click to collapse
Can u provide a ss of the errors??? 
 @tung91, will u mind if i write down a tutorial on how to integrate it inside the icon pack app so that it doesnt needs another app? i guess ur source file is open sourced. i got it and integrated it inside the app itself... so, Vanessaem told me to write a guide on that as many people havnt been able to figure out on how to merge ur source file wid der app...
Cuetzpalomit said:
What should I do? it says that these methods are undefined
on line 6: AssetManager am = this.getAssets();
and 39: Toast failed = Toast.makeText(getApplicationContext(),
Click to expand...
Click to collapse
Screenshot is better ...
Blaze said:
Can u provide a ss of the errors???
@tung91, will u mind if i write down a tutorial on how to integrate it inside the icon pack app so that it doesnt needs another app? i guess ur source file is open sourced. i got it and integrated it inside the app itself... so, Vanessaem told me to write a guide on that as many people havnt been able to figure out on how to merge ur source file wid der app...
Click to expand...
Click to collapse
Np, you can do it
Thanks for your help !
tung91 said:
Screenshot is better ...
Np, you can do it
Thanks for your help !
Click to expand...
Click to collapse
Thanks fr the permission....
tung91 said:
Screenshot is better ...
Np, you can do it
Thanks for your help !
Click to expand...
Click to collapse
Blaze said:
Can u provide a ss of the errors???
@tung91, will u mind if i write down a tutorial on how to integrate it inside the icon pack app so that it doesnt needs another app? i guess ur source file is open sourced. i got it and integrated it inside the app itself... so, Vanessaem told me to write a guide on that as many people havnt been able to figure out on how to merge ur source file wid der app...
Click to expand...
Click to collapse
here are some ss .
image1
image2
First I'd like to say thank you for making this app! :good: Especially that it excludes already styled apps is great :victory:
Second:
I get ArrayIndexOutOfBoundsException at this point (Line 19 in pastebin) which FC's the app:
Code:
String tmp = myparser.getAttributeValue(null,"component").split("/")[1];
when reading this from my appfilter.xml (this styles the app drawer in Nova Launcher):
Code:
<item component=":LAUNCHER_ACTION_APP_DRAWER" drawable="ic_allapps" />
Probably because there is no forward slash as split.
However it it easy to fix with a try-catch-block and the app continues:
Code:
if(name.equals("item"))
{
try //Try Catch Block to prevent FC when reading something like this: <item component=":LAUNCHER_ACTION_APP_DRAWER" drawable="ic_allapps" />
{
String tmp=myparser.getAttributeValue(null,"component").split("/")[1];
String t_activity= tmp.substring(0, tmp.length()-1);
list_activities.add(t_activity);
Log.v("Icon Request", "Added Activity: "+tmp);
}
catch(ArrayIndexOutOfBoundsException e)
{
Log.e("Icon Request Error!", "Error Adding Activity: \""+e+"\"");
}
}
Have fun! :fingers-crossed:
Greets Alex
Alex_R3CONN3R said:
First I'd like to say thank you for making this app! :good: Especially that it excludes already styled apps is great :victory:
Second:
I get ArrayIndexOutOfBoundsException at this point (Line 19 in pastebin) which FC's the app:
Code:
String tmp = myparser.getAttributeValue(null,"component").split("/")[1];
when reading this from my appfilter.xml (this styles the app drawer in Nova Launcher):
Code:
<item component=":LAUNCHER_ACTION_APP_DRAWER" drawable="ic_allapps" />
Probably because there is no forward slash as split.
However it it easy to fix with a try-catch-block and the app continues:
Code:
if(name.equals("item"))
{
try //Try Catch Block to prevent FC when reading something like this: <item component=":LAUNCHER_ACTION_APP_DRAWER" drawable="ic_allapps" />
{
String tmp=myparser.getAttributeValue(null,"component").split("/")[1];
String t_activity= tmp.substring(0, tmp.length()-1);
list_activities.add(t_activity);
Log.v("Icon Request", "Added Activity: "+tmp);
}
catch(ArrayIndexOutOfBoundsException e)
{
Log.e("Icon Request Error!", "Error Adding Activity: \""+e+"\"");
}
}
Have fun! :fingers-crossed:
Greets Alex
Click to expand...
Click to collapse
Thanks for your tip, will add it to code and make update to help others users :good:
Crashes
I've tried to assign it to a button in 2 different scenarios but both times they crashed the app
Full source code
Alex_R3CONN3R said:
First I'd like to say thank you for making this app! :good: Especially that it excludes already styled apps is great :victory:
Second:
I get ArrayIndexOutOfBoundsException at this point (Line 19 in pastebin) which FC's the app:
Code:
String tmp = myparser.getAttributeValue(null,"component").split("/")[1];
when reading this from my appfilter.xml (this styles the app drawer in Nova Launcher):
Code:
<item component=":LAUNCHER_ACTION_APP_DRAWER" drawable="ic_allapps" />
Probably because there is no forward slash as split.
However it it easy to fix with a try-catch-block and the app continues:
Code:
if(name.equals("item"))
{
try //Try Catch Block to prevent FC when reading something like this: <item component=":LAUNCHER_ACTION_APP_DRAWER" drawable="ic_allapps" />
{
String tmp=myparser.getAttributeValue(null,"component").split("/")[1];
String t_activity= tmp.substring(0, tmp.length()-1);
list_activities.add(t_activity);
Log.v("Icon Request", "Added Activity: "+tmp);
}
catch(ArrayIndexOutOfBoundsException e)
{
Log.e("Icon Request Error!", "Error Adding Activity: \""+e+"\"");
}
}
Have fun! :fingers-crossed:
Greets Alex
Click to expand...
Click to collapse
Could you provide the full source code? As i really want this to work but it keeps on force closing
Techsavage said:
Could you provide the full source code? As i really want this to work but it keeps on force closing
Click to expand...
Click to collapse
I'm sorry I don't have the source code from the app itself but I can show you my full implementation.
http://pastebin.com/yNgKnJ2N
You can call
Code:
actRequest();
in your button onClickListener or where ever you want.
Also note that this is in a fragment. If you run it in your Main Activity you have to change the contexts and maybe some other stuff.
So what do you get when using this code?
A progressbardialog while the appfilter.xml is parsed (Like this but in your app style. Preferably Holo ^^
If the Icon helper app is not installed a two button dialog pops up and asks the user if he wants to go to the playstore and install it.
And all that in a thread to keep the UI responsive.
Greets Alex
Alex_R3CONN3R said:
I'm sorry I don't have the source code from the app itself but I can show you my full implementation.
http://pastebin.com/yNgKnJ2N
You can call
Code:
actRequest();
in your button onClickListener or where ever you want.
Also note that this is in a fragment. If you run it in your Main Activity you have to change the contexts and maybe some other stuff.
So what do you get when using this code?
A progressbardialog while the appfilter.xml is parsed (Like this but in your app style. Preferably Holo ^^
If the Icon helper app is not installed a two button dialog pops up and asks the user if he wants to go to the playstore and install it.
And all that in a thread to keep the UI responsive.
Greets Alex
Click to expand...
Click to collapse
I can't get it to work where should I add that code?
In your onClickListener for example.
Google it.
Gesendet von meinem Galaxy Nexus mit Tapatalk
DL link down
xD xD
Đã Thank's và tín dụng :good::good: Ngày mai down sau. Giờ đi ngủ đã :highfive:
2.1 Uploaded
- Support Android 2.2+
- Added template to see how it works, you can edit it to make your own icon pack, too

[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

[MOD][GUIDE] Enable Navbar Tuner for Nougat [7.0]

Enable Navbar Tuner
decompile SystemUI, then open res/xml/tuner_prefs.xml,
before
Code:
<Preference android:title="@string/other" android:key="other" android:fragment="com.android.systemui.tuner.OtherPrefs" />
for navbar tuner add
Code:
<Preference android:title="@string/nav_bar" android:key="nav_bar" android:fragment="com.android.systemui.tuner.NavBarTuner" />
for night mode/blue light filter add
Code:
<Preference android:title="@string/color_and_appearance" android:key="color_transform" android:fragment="com.android.systemui.tuner.ColorAndAppearanceFragment" />
and recompile then push the apk
Screens:
{
"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"
}
feel free to post any questions
Show brightness slider
Enable brightness slider toggle
open res/xml/tuner_prefs.xml,
after
Code:
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:sysui="http://schemas.android.com/apk/res-auto">
add brightness slider toggle
Code:
<com.android.systemui.tuner.TunerSwitch android:title="@string/show_brightness" android:key="qs_show_brightness" sysui:defValue="true" />
Screens:
Original commit here
Thanks so much!
This is awesome!
worked like a charm.
AL_IRAQI said:
Enable Navbar Tuner
decompile SystemUI, then open res/xml/tuner_prefs.xml,
before
Code:
<Preference android:title="@string/other" android:key="other" android:fragment="com.android.systemui.tuner.OtherPrefs" />
for navbar tuner add
Code:
<Preference android:title="@string/nav_bar" android:key="nav_bar" android:fragment="com.android.systemui.tuner.NavBarTuner" />
for night mode/blue light filter add
Code:
<Preference android:title="@string/color_and_appearance" android:key="color_transform" android:fragment="com.android.systemui.tuner.ColorAndAppearanceFragment" />
and recompile then push the apk
Screens:
feel free to post any questions
Click to expand...
Click to collapse
Once I pushed the apk back and rebooted my SystemUI process never even started. I used apktool 2.2.0 and ZipSigner to sign the apk and followed instructions exactly. Am I missing something?
Thanks for the mod as this is a feature that is awesome to be baked into Nougat.
r4w0ne said:
Once I pushed the apk back and rebooted my SystemUI process never even started. I used apktool 2.2.0 and ZipSigner to sign the apk and followed instructions exactly. Am I missing something?
Thanks for the mod as this is a feature that is awesome to be baked into Nougat.
Click to expand...
Click to collapse
you should use the original signature, for which device youre trying to make one ?
Hi Guys
added brightness slider credits to DU Team here
@AL_IRAQI Would you be kind enough to add a guide on how to modify the number of quick settings tiles? Thanks in advance and keep up the great work!
bigdave79 said:
@AL_IRAQI Would you be kind enough to add a guide on how to modify the number of quick settings tiles? Thanks in advance and keep up the great work!
Click to expand...
Click to collapse
Hi, res/values/integers.xml
Code:
<!-- The number of columns in the QuickSettings -->
<integer name="quick_settings_num_columns">3</integer>
AL_IRAQI said:
Hi, res/values/integers.xml
Code:
<!-- The number of columns in the QuickSettings -->
<integer name="quick_settings_num_columns">3</integer>
Click to expand...
Click to collapse
Awesome! Thanks so much! I managed to compile SystemUI.apk with all the add-ons for system UI tuner and 4 column quick settings using your guide for the latest factory image (NRD90U). Working perfectly.
Don't want to step on your toes but I'm happy to share it here (with your permission) if anyone else might want it.
bigdave79 said:
Awesome! Thanks so much! I managed to compile SystemUI.apk with all the add-ons for system UI tuner and 4 column quick settings using your guide for the latest factory image (NRD90U). Working perfectly.
Don't want to step on your toes but I'm happy to share it here (with your permission) if anyone else might want it.
Click to expand...
Click to collapse
Awesome, its okay you can share it :highfive:
bigdave79 said:
Awesome! Thanks so much! I managed to compile SystemUI.apk with all the add-ons for system UI tuner and 4 column quick settings using your guide for the latest factory image (NRD90U). Working perfectly.
Don't want to step on your toes but I'm happy to share it here (with your permission) if anyone else might want it.
Click to expand...
Click to collapse
could you please share it... the original dev. doesnt have any issues...
P.S. whats the theme that you are running?
bigdave79 said:
Awesome! Thanks so much! I managed to compile SystemUI.apk with all the add-ons for system UI tuner and 4 column quick settings using your guide for the latest factory image (NRD90U). Working perfectly.
Don't want to step on your toes but I'm happy to share it here (with your permission) if anyone else might want it.
Click to expand...
Click to collapse
AL_IRAQI said:
Awesome, its okay you can share it :highfive:
Click to expand...
Click to collapse
Guys, what do you use to decompile and ricompile? With apktool 2.1.1 and 2.2.0 i have some resources errors when recompiling SystemUI (using the latest framework res from NRD90U).
ezio84 said:
Guys, what do you use to decompile and ricompile? With apktool 2.1.1 and 2.2.0 i have some resources errors when recompiling SystemUI (using the latest framework res from NRD90U).
Click to expand...
Click to collapse
Hi, im using 2.2.0 with NRD90U framework & SystemUI, it works fine for me
AL_IRAQI said:
Hi, im using 2.2.0 with NRD90U framework & SystemUI, it works fine for me
Click to expand...
Click to collapse
Uh, maybe i did something wrong. Will try again later, tnx :good:
EDIT: you were right, i've cleaned up all apktool files and the installed framework, then reinstalled from scratch, now it works. Thanks again
will this work on NRD90U too?
swbj14 said:
will this work on NRD90U too?
Click to expand...
Click to collapse
Yes, this guide should work with any N release
OK. Here is the latest SystemUI.apk with 4 column QS and system UI tuner add ons. It's a flash able zip made from the stock NRD90U file from the latest factory image. Make backup first, etc etc. All credits to @AL_IRAQI for this.
rohit25 said:
could you please share it... the original dev. doesnt have any issues...
P.S. whats the theme that you are running?
Click to expand...
Click to collapse
Posted it above.
I'm using magpie theme. Dark background with pastel red accent and primary color. Batman2 nav bar from navigate.

Categories

Resources