Location of ICS background file? - General Questions and Answers

My i9000 has a slight issue in displaying greys and the settings menu and any other app that uses it look awful on my phone.
All I want to know is the location the background is stored so I can change it to an all black background. I've asked this question in many different threads and no one had answered me yet. So many thanks to whoever tells me.
Sent from my GT-I9000 using XDA

Bump
Sent from my GT-I9000 using XDA

Vertron said:
My i9000 has a slight issue in displaying greys and the settings menu and any other app that uses it look awful on my phone.
All I want to know is the location the background is stored so I can change it to an all black background. I've asked this question in many different threads and no one had answered me yet. So many thanks to whoever tells me.
Sent from my GT-I9000 using XDA
Click to expand...
Click to collapse
It will most probably be in framework-res.apk in /system/framework/

I'm not sure about ICS, but in my ancient version it's in framework-res.apk
/res/drawable-mdpi/default-wallpaper.png
You may have it in different screen resolutions.

Are you talking about the homescreen background?
You could always just do it the 'old fashioned' way..
Open paint (or similar)
Create a canvas the size of your phone resolution, paint all black. Save as a file and add to your phone. Change background using the menus and pick your black file.
Would probably take less time than pulling, inserting, and pushing framework-res. And you'd have the file on your sd card to re-apply should you do any updates (you'd need to modify framework-res again, unless the rom update didn't require changes and you could flash the old framework-res)

Renate NST said:
I'm not sure about ICS, but in my ancient version it's in framework-res.apk
/res/drawable-mdpi/default-wallpaper.png
You may have it in different screen resolutions.
Click to expand...
Click to collapse
he wants the background of stuff like settings and all
aqnd said:
Are you talking about the homescreen background?
You could always just do it the 'old fashioned' way..
Open paint (or similar)
Create a canvas the size of your phone resolution, paint all black. Save as a file and add to your phone. Change background using the menus and pick your black file.
Would probably take less time than pulling, inserting, and pushing framework-res. And you'd have the file on your sd card to re-apply should you do any updates (you'd need to modify framework-res again, unless the rom update didn't require changes and you could flash the old framework-res)
Click to expand...
Click to collapse
He wants app background, not launcher background

QuantumFoam said:
It will most probably be in framework-res.apk in /system/framework/
Click to expand...
Click to collapse
Yeah I think it's in here somewhere. Now I've just got to find the image. Thanks
Sent from my GT-I9000 using XDA

Oh! Then what you need is in /system/framework/framework-res.apk,
but the part you want is in /res/values/styles.xml
That has all the default theme, "Theme".
The theme for settings inherits off that, maybe "Theme.Dialog"
All of that references specific style elements and colors in /res/values/colors.xml

Renate NST said:
Oh! Then what you need is in /system/framework/framework-res.apk,
but the part you want is in /res/values/styles.xml
That has all the default theme, "Theme".
The theme for settings inherits off that, maybe "Theme.Dialog"
All of that references specific style elements and colors in /res/values/colors.xml
Click to expand...
Click to collapse
I've looked in /res but there is no values folder for some reason. Where else could it be?
Sent from my GT-I9000 using XDA

Vertron said:
I've looked in /res but there is no values folder for some reason. Where else could it be?
Sent from my GT-I9000 using XDA
Click to expand...
Click to collapse
Decompile framework-res.apk using apktool then open the decompiled folder.
In res/drawable, most of the background XMLs are stored. Search for one that holds the background details. However, it won't be easy. I suggest u ask a recognized themer to help u, or use the UOT kitchen

Ok I've found the png file. It's in res/drawable-nodpi/background_holo_dark.png
An older version of the rom I'm using had an all black image, so I'll use that png file to replace the current one.
Now do I have to simply change the image to the all black one or is out more complicated than that?
Sent from my GT-I9000 using XDA

I've also found the xml in;
res/drawable/activated_background_holo_dark.xml
Will changing the line <item state_activated="true" to <item state_activated="false" disable the png file, forcing it to change to all black?
Sent from my GT-I9000 using XDA

Now that u know where it is, take a black PNG and add it to the archive of framework-res so that u wont have to recompile and sign the apk. Just make sure u get the correct folder.
And don't touch the XML. Just replace the png

QuantumFoam said:
Now that u know where it is, take a black PNG and add it to the archive of framework-res so that u wont have to recompile and sign the apk. Just make sure u get the correct folder.
And don't touch the XML. Just replace the png
Click to expand...
Click to collapse
How do I add it to the archive of framework-res.apk? I assume you have to copy the apk to a PC and add it by winzip or something? I'm using root explorer to view it atm.
Sent from my GT-I9000 using XDA

Vertron said:
How do I add it to the archive of framework-res.apk? I assume you have to copy the apk to a PC and add it by winzip or something? I'm using root explorer to view it atm.
Sent from my GT-I9000 using XDA
Click to expand...
Click to collapse
Yes. Do it by winRAR or Winzip

How do I put the modified framework-res.apk back into system/framework? I don't think I can just overwrite it using root explorer.
Sent from my GT-I9000 using XDA

Vertron said:
How do I put the modified framework-res.apk back into system/framework? I don't think I can just overwrite it using root explorer.
Sent from my GT-I9000 using XDA
Click to expand...
Click to collapse
U can overwrite it using root explorer. However I use adb.
Use this command in adb
adb push C:\framework-res.apk /system/framework/
Assuming ur modified framework is in C:\

I know it's a bit late, but I finally managed to do it. The hardest thing was creating an update.zip to apply the change.

You could have just pushed it with adb.....
---------- Post added at 07:44 PM ---------- Previous post was at 07:42 PM ----------
Or used some one else's flashable zip and just removed the custom content and put yours in

AshtonTS said:
You could have just pushed it with adb.....
---------- Post added at 07:44 PM ---------- Previous post was at 07:42 PM ----------
Or used some one else's flashable zip and just removed the custom content and put yours in
Click to expand...
Click to collapse
I tried that on a theme update.zip for my rom, it wouldn't let me edit the contents of the zip for some reason.
I used root explorer rather than adb and the phone rebooted straight away and wouldn't get past the boot screen...

Related

[Q] framework-res.apk problem

In "framework-res.apk/res/layout" when I edit the "status_bar_expanded.xml",
even if I add one dot and delete it again and save the file, it doesn't work
anymore and it stucks on my bootanimation, and loops over and over.
I use "apk manager" for decompiling and compiling the framework-res.apk.
Does any one know what the problem is?
Thank you?
sohrab1985 said:
In "framework-res.apk/res/layout" when I edit the "status_bar_expanded.xml",
even if I add one dot and delete it again and save the file, it doesn't work
anymore and it stucks on my bootanimation, and loops over and over.
I use "apk manager" for decompiling and compiling the framework-res.apk.
Does any one know what the problem is?
Thank you?
Click to expand...
Click to collapse
what do you mean add one dot?
kay_kiat88 said:
what do you mean add one dot?
Click to expand...
Click to collapse
To the code obviously. ie he cant seam to save file without it breaking, even if removing what he added prior to saving.
TheATHEiST said:
To the code obviously. ie he cant seam to save file without it breaking, even if removing what he added prior to saving.
Click to expand...
Click to collapse
i know it's obviously to the code. upload your .xml let me take a look.
also ensure that the /(yourdirectory)/apktool/framework/1.apk where 1.apk is your original framework-res.apk and /(yourdirectory)/apktool/framework/2.apk where 2.apk is your original tw-framework-res.apk
statusbarexpanded
Hey
Do any know what @id/plmnLabel and @id/spnLabel refers to? Im speculating it has something to do with service provider.. Since the theme of framework is set to Black, the service provider text color is black as well, so ive made edits to
...Color=?textColorSecondary on both (removed Inverse) ive not tested this, maybe u have Kay?
biopsin said:
Hey
Do any know what @id/plmnLabel and @id/spnLabel refers to? Im speculating it has something to do with service provider.. Since the theme of framework is set to Black, the service provider text color is black as well, so ive made edits to
...Color=?textColorSecondary on both (removed Inverse) ive not tested this, maybe u have Kay?
Click to expand...
Click to collapse
nope i haven't tested it but u can read here: http://forum.xda-developers.com/showpost.php?p=9066440&postcount=1
android:id="@id/plmnLabel". This is the Carrier name
android:id="@id/spnLabel". This is the Provider name
this post is useful for froyo.
but i'm already on gingerbread. for gingerbread, read: http://forum.xda-developers.com/showpost.php?p=9978779&postcount=62
all working great ..
Tnx k - ur right still on froyo
kay_kiat88 said:
what do you mean add one dot?
Click to expand...
Click to collapse
I mean you even can't make a small change in that xml.
kay_kiat88 said:
i know it's obviously to the code. upload your .xml let me take a look.
also ensure that the /(yourdirectory)/apktool/framework/1.apk where 1.apk is your original framework-res.apk and /(yourdirectory)/apktool/framework/2.apk where 2.apk is your original tw-framework-res.apk
Click to expand...
Click to collapse
Here is my "status_bar_expanded.xml"
I just want to change some colors. I did the same thing for other xmls like
"status_bar_latest_event_content.xml" and it works perfectly, but for that
one, it stucks on my bootanimation. when I compile the xml I get no error
but I don't know what the problem is.
For that 1.apk and 2.apk, no I didn't do that.
I'll try it and report back.
sohrab1985 said:
Here is my "status_bar_expanded.xml"
I just want to change some colors. I did the same thing for other xmls like
"status_bar_latest_event_content.xml" and it works perfectly, but for that
one, it stucks on my bootanimation. when I compile the xml I get no error
but I don't know what the problem is.
Click to expand...
Click to collapse
If u use wrong definisions it wil stall.. What color is this in your file android:textColor="#ff7bad00" ?
After compiling did u copy the manifest and metainf folder to the new framework Res?
Sent from my GT-P1000 using XDA Premium App
biopsin said:
If u use wrong definisions it wil stall.. What color is this in your file android:textColor="#ff7bad00" ?
Click to expand...
Click to collapse
it's the color of operator name in status bar and that "clear" button, and I changed it to "#ff000000"
zenkinz said:
After compiling did u copy the manifest and metainf folder to the new framework Res?
Sent from my GT-P1000 using XDA Premium App
Click to expand...
Click to collapse
Honestly, I don't know what those "manifest" and "metainf" are, because I changed some xmls and I'd had no problem with them, So I thought that's the way to compile and decompile framework-res.apk.
Could you plz tell me what should I do? Thanks.
sohrab1985 said:
Honestly, I don't know what those "manifest" and "metainf" are, because I changed some xmls and I'd had no problem with them, So I thought that's the way to compile and decompile framework-res.apk.
Could you plz tell me what should I do? Thanks.
Click to expand...
Click to collapse
I thought u already have this covered because it sounded like you have no problem with other XML except this.
But if u have not heard of the two files/folder I have hightlighted chances are you don't have them in your newly compiled apk which will cause bootloop.
After compiling ur apk you should see that meta-inf folder is missing. U need to copy that from the original API, along with manifest.XML to the new apk.
Sent from my GT-P1000 using XDA Premium App
zenkinz said:
I thought u already have this covered because it sounded like you have no problem with other XML except this.
But if u have not heard of the two files/folder I have hightlighted chances are you don't have them in your newly compiled apk which will cause bootloop.
After compiling ur apk you should see that meta-inf folder is missing. U need to copy that from the original API, along with manifest.XML to the new apk.
Sent from my GT-P1000 using XDA Premium App
Click to expand...
Click to collapse
that's right, I've had no problem with any xmls without copying those files until now, but thanks to you I can edit this one, too.
Thank you so much.

[Q] Editing the default Background of SMS,Phone,Browser,Email?

Is there a possibility to edit the default backgrounds (blue, red, black, green Waves). I think its cool that it appears in stuff like the Settings Menu, the SMS App, the Phone and contacts app, the browser and the email app. So I like it better than havin all backgrounds black, but id rather like to use my own wallpaper, maybe a little darker, so that you can read everything.
Does anyone have a clue, which files i need to edit?
Phone is rooted.
You can install an app like GO Sms or similar apps from the GO Series of apps
Sent from my SGH-T589R using xda premium
bigapplepietart said:
You can install an app like GO Sms or similar apps from the GO Series of apps
Sent from my SGH-T589R using xda premium
Click to expand...
Click to collapse
I know, but thats not my point. Id like to use the SE stuff, just dont like the backgrounds that much...
Upload your SemcGenericUxpRes.apk and tell me how dark you want it and ill do it if you would like. Its in system/framework
Sent from my R800x using XDA App
good luck trying to edit the apks
i've tried and they wont install
decompiled them edited the png and they wont run anymore
i used a debug program and it turns out it's a certificate error.
at first i thought it was a signature problem but the apks were re-signed by me so i dont know whats wrong
if you figure out how to edit them and get them to re-install let me know....
Hogwarts said:
good luck trying to edit the apks
i've tried and they wont install
decompiled them edited the png and they wont run anymore
i used a debug program and it turns out it's a certificate error.
at first i thought it was a signature problem but the apks were re-signed by me so i dont know whats wrong
if you figure out how to edit them and get them to re-install let me know....
Click to expand...
Click to collapse
Dont resign and after recompile copy meta and manifest from original apk
Sent from my R800x using XDA App
odst0016 said:
Dont resign and after recompile copy meta and manifest from original apk
Sent from my R800x using XDA App
Click to expand...
Click to collapse
TY master odst, I will try your methods
I'm interested in this too. If you find how to do it please tell us.
arihellmichimich said:
Is there a possibility to edit the default backgrounds (blue, red, black, green Waves). I think its cool that it appears in stuff like the Settings Menu, the SMS App, the Phone and contacts app, the browser and the email app. So I like it better than havin all backgrounds black, but id rather like to use my own wallpaper, maybe a little darker, so that you can read everything.
Does anyone have a clue, which files i need to edit?
Phone is rooted.
Click to expand...
Click to collapse
I think you have to edit the Defaulthemes.apk in system/app
HussainQ said:
I think you have to edit the Defaulthemes.apk in system/app
Click to expand...
Click to collapse
Great, I found this file and it has the backgrounds of the menus. I extracted it with Winrar and now what I have to do to place the backgrounds I want?
I guess edit it, name it like the old one and put it back in.. I'll try out myself.
Gesendet von meinem R800i mit Tapatalk
Ok, wont work that way. Need APK Edit (needs APK tool)
http://www.multiupload.com/3XHFLGS8P2
Okay... ApkEdit lets me edit the apk, but when i try to push it to my device, im stuck. I can push other apps though, maybe i cant install system apks. Too bad APKEdit cant simply save the file, that i can install it myself. Anyone got an idea what to do???
Ok, managed to push it to the play. No changes :-(( too much work for nothing.
arihellmichimich said:
Ok, managed to push it to the play. No changes :-(( too much work for nothing.
Click to expand...
Click to collapse
"Defaultthemes.apk" is a system app installer. I mean, you have this installer, yes, but you have already installed the old one. So if you only change the apk file it maybe there wont be any direct change unless you uninstall it and reinstall it.
Not sure, but it's the only thing I can supose.
Let's see if we can change the boring backrounds from SE.
Ok, I edited succesfully the .apk file, but as others says, when you go to install it the phone asks if you want to overwrite the files, you click yes and then it says that the file wasn't installed.
Any way to solve this?
I want the background to be pure black.
If anyone can make that for me,it'd be greatly appreciated
---------- Post added at 06:49 PM ---------- Previous post was at 06:48 PM ----------
I want the background to be pure black.
If anyone can make that for me,it'd be greatly appreciated
You have to decompile each relevant APK and edit it. The Defaulthemes.apk doesn't affect any app.
Logseman said:
You have to decompile each relevant APK and edit it. The Defaulthemes.apk doesn't affect any app.
Click to expand...
Click to collapse
I edited the apk directly with Winrar, without extracting it. But the problem is when you try to install it, first it asks if you want to overwrite the existing data but then it says the app wasn't installed.
GetPatriotized said:
I want the background to be pure black.
If anyone can make that for me,it'd be greatly appreciated
---------- Post added at 06:49 PM ---------- Previous post was at 06:48 PM ----------
I want the background to be pure black.
If anyone can make that for me,it'd be greatly appreciated
Click to expand...
Click to collapse
simply choose the black Theme... Has a total black background for the apps, the background for the homescreen you can change yourself...

CM7/Custom Soft-Buttons

Ive searched the forums, trying to find if this has been posted.
Im looking for a way to change the look of the soft-buttons inside CM7-SoS on the Kindle Fire.
There is a post in this forum for changing them in ICS with simple flashable ZIP files. Im looking for something similar to this, for CM7
Thanks in Advance!
Kcuhc said:
Ive searched the forums, trying to find if this has been posted.
Im looking for a way to change the look of the soft-buttons inside CM7-SoS on the Kindle Fire.
There is a post in this forum for changing them in ICS with simple flashable ZIP files. Im looking for something similar to this, for CM7
Thanks in Advance!
Click to expand...
Click to collapse
One way to change the look of the soft-buttons, is to use adb or a file-manager to pull SystemUI.apk from /system/app and then edit png images to make them your own. And then push it back. That's what I did. Do a search on themeing android to find more in-depth tutorials.
Sent from my Kindle Fire using xda premium
Thanks!
that did it, appreciate the direction
Kcuhc said:
Thanks!
that did it, appreciate the direction
Click to expand...
Click to collapse
Your welcome, have fun!
Here's my latest customization of the soft-buttons and status bar in general.
Sent from my Kindle Fire using xda premium
I did the ics zip, easiest way without zip is ninjamorph. Do you have images already? Maybe I could throw something together for you, I'm in the middle of a couple themes at the moment, one for ics on the fire might be putting out tonite. Let me know if I can help.
Sent from adizzys tbolt
I too am trying to do this.. I have the png images that I want to use but im not sure on how to replace them. When I go to the SystemUI.apk and the appropriate folder I cant seem to figure out how you simply replace the images you want.
T_VASS said:
I too am trying to do this.. I have the png images that I want to use but im not sure on how to replace them. When I go to the SystemUI.apk and the appropriate folder I cant seem to figure out how you simply replace the images you want.
Click to expand...
Click to collapse
Do you know how to use ninjamorph? If not send me a pm and I'll give you my gmail, you can send me the images and I'll put them in a fishable zip for you when I get a chance. I will need to know which cm7 your using too.
Sent from adizzys tbolt
Another approach might be to do what I did-- freeze the status bar and use Button Savior (or SoftKeys or Virtual Home Bar).
Sent from my Kindle Fire (CM7) using xda premium
T_VASS said:
I too am trying to do this.. I have the png images that I want to use but im not sure on how to replace them. When I go to the SystemUI.apk and the appropriate folder I cant seem to figure out how you simply replace the images you want.
Click to expand...
Click to collapse
Everything that needs to be edited is in drawable-mdpi folder the files to replace start with 'ic' the easiest way to do it is using 7-zip, name your replacement image the same as the image you want to replace and then drag and drop your images into the apk into the drawable-mdpi folder. And then your good to go.
Sent from my Kindle Fire using xda premium
daggy1985 said:
Here's my latest customization of the soft-buttons and status bar in general.
Sent from my Kindle Fire using xda premium
Click to expand...
Click to collapse
how to get this????????????????
I was able to get this done with ease.
Copied the systemui file, moved it to my computer, renamed ZIP, extracted to a folder. Opened up the files i wanted edited in Photoshop. I made them Transparent PNGs so they would work with any theme that changes the graphic of the status bar.
saved files, zipped up folder. used RootExplorer to Back up systemui. It caused a Foreclose loop. Rebooted, with no status bar. Back into RE, copied the modified systemui, set permissions, and rebooted.
acax456 said:
how to get this????????????????
Click to expand...
Click to collapse
I'll upload my customized SystemUI for you to use either later today or tomorrow, must get some sleep now.
Sent from my Kindle Fire using xda premium

Softkey icons

I know that the softkeys can be changed to display words instead of the icons. I have found some images that have them as such but can't seem to get to work when using the custom framework maker. Am I missing something or does anyone have text image files that will work.
Tybo611 said:
I know that the softkeys can be changed to display words instead of the icons. I have found some images that have them as such but can't seem to get to work when using the custom framework maker. Am I missing something or does anyone have text image files that will work.
Click to expand...
Click to collapse
are the imgs u have to replace them pngs? easiest way is to rightclick framework-res.apk and open with 7zip. then drang new pngs over ones in assests folder.
then try and drag that new eddited apk into framework maker. to make a package to flash.
not sure if tb101s themer has to be editted for ec09 but ive been having trouble with 5.5 and ec09
im in chat right now if u want a hand to hold
http://forum.xda-developers.com/showpost.php?p=10422177&postcount=1
ciscogee said:
are the imgs u have to replace them pngs? easiest way is to rightclick framework-res.apk and open with 7zip. then drang new pngs over ones in assests folder.
then try and drag that new eddited apk into framework maker. to make a package to flash.
not sure if tb101s themer has to be editted for ec09 but ive been having trouble with 5.5 and ec09
im in chat right now if u want a hand to hold
http://forum.xda-developers.com/showpost.php?p=10422177&postcount=1
Click to expand...
Click to collapse
won't that create a 7zip file? that was the only problem i had with the themer, everything worked to remove the ticker history and weather. no fc's..yet.
Well the softkeys have to be alighned. Open existing PNGs in paint or whatever and alighn new ones and save. Then run themer.
Sent from my SCH-I400 using xda premium
thank you, checked the sizeds and they were different. now stuck at the decomling stage in themer.
Your making it way more difficult than it should be lol.
Look for older soft keys posts in our theme section.
There are easier ways in there. No decompile needed for softkey.
Sent from my SCH-I400 using xda premium
ciscogee said:
Your making it way more difficult than it should be lol.
Look for older soft keys posts in our theme section.
There are easier ways in there. No decompile needed for softkey.
Sent from my SCH-I400 using xda premium
Click to expand...
Click to collapse
Thanks you for your help. Finally got the text softkeys working.
huge thanks to ciscogee for his help, and trailblazer for the themer. screen shot is attached
CISCO! is your computer unpacked finally?
pattielipp said:
CISCO! is your computer unpacked finally?
Click to expand...
Click to collapse
no i wish. been a bumby road past month. trying to grab it in next couple weeks. just using phone and gf laptop. no cygwin no linux, minor apk editting when i can.

Here are VZW Note 4 APK's qmg, webp converted to png's for themeing. Updated 11-1

I am starting a list of stock Verizon Note 4 complete APK's with all QMG, WEBP & ASET images converted to PNG's for your themeing enjoyment!!! These are also Deodexed and Zip Aligned.
Downloads:
SystemUI.apk
framework-res.apk
twframework-res.apk
ClockPackage.apk
InCallUI.apk
SamsungIME.apk
SecCalculator2.apk
SecContacts_Note_USA.apk
SecEmail_K.apk
SPlanner.apk
SecMms_Cherry.apk
Do you have the boot animation?
Sent from my SM-N910T using Tapatalk
This is for the DE phone?
When you say boot animation. What are you looking for?
Sent from my SM-N910V using Tapatalk 2
These converted system apk's will work with retail or DE. But you will need root first.
Sent from my SM-N910V using Tapatalk 2
Hey EMS,
How did you manage to get the files to recompile with the .9's?
Mine wont recompile if I use the conversion tool unless I rename all of the .9.png files.
9 png's
tdunham said:
Hey EMS,
How did you manage to get the files to recompile with the .9's?
Mine wont recompile if I use the conversion tool unless I rename all of the .9.png files.
Click to expand...
Click to collapse
I use a program called Batch Photo and run all png images through it before I build. I copy the pngs to the program, then I add the filter HUE. I set the values all to zero and run the batch. It cleans up any 9 png problems.
Works every time!!
EMSpilot said:
When you say boot animation. What are you looking for?
Sent from my SM-N910V using Tapatalk 2
Click to expand...
Click to collapse
Im looking for the files to overwrite mine so I can have Verizon when I boot up.
Sent from my SM-N910T using Tapatalk
Stock Verizon Note 4 Bootanimation
charlieb620 said:
Im looking for the files to overwrite mine so I can have Verizon when I boot up.
Sent from my SM-N910T using Tapatalk
Click to expand...
Click to collapse
Here is the Verizon Note 4 stock bootanimation zip: http://d-h.st/Dlr
I assume this it what you want?
Nevermind Question
I got it all figured out, dude thanks for converting all these, I do know how to do the conversions if you ever need help with picconv....I uploaded a modded SecMms_Cherry.apk in your ROM forum with modified text bubble colors and additionally the preview bubbles to match
---------- Post added at 02:35 AM ---------- Previous post was at 02:04 AM ----------
EMSpilot said:
I use a program called Batch Photo and run all png images through it before I build. I copy the pngs to the program, then I add the filter HUE. I set the values all to zero and run the batch. It cleans up any 9 png problems.
Works every time!!
Click to expand...
Click to collapse
So what values are you setting that keeps these .9.png's clean, I would like to test that out, if i edit the .9s in photoship, could I then run it through batch photo to repair the file? I have to rename the .9 to just png to import into photo shop and thats a pain in the ass
bdorr1105 said:
Nevermind Question
I got it all figured out, dude thanks for converting all these, I do know how to do the conversions if you ever need help with picconv....I uploaded a modded SecMms_Cherry.apk in your ROM forum with modified text bubble colors and additionally the preview bubbles to match
---------- Post added at 02:35 AM ---------- Previous post was at 02:04 AM ----------
So what values are you setting that keeps these .9.png's clean, I would like to test that out, if i edit the .9s in photoship, could I then run it through batch photo to repair the file? I have to rename the .9 to just png to import into photo shop and thats a pain in the ass
Click to expand...
Click to collapse
drag png's to batch photo first page. Click next. Then click add filter and choose HUE leave ll values at zero. Click next and select use original folder for output. Then click process. That's it!!
We lucked out on the Galaxy S5.
We have an Android L leak and it still retains the png's.
So even if they decide to compress the final version, we've already gotten a head start.
What are you using to convert these to png then to deodex and zip align? I would like to also work on a bootanimation.qmg and I am not sure how to extract the pngs from the qmg as well as the desc.txt to get the proper frames...any help if you don't mind
You ^^^ back of the bus. It's not polite to ask for updates.
tdunham said:
You ^^^ back of the bus. It's not polite to ask for updates.
Click to expand...
Click to collapse
Who asked for an update?
bdorr1105 said:
Who asked for an update?
Click to expand...
Click to collapse
Sorry about that. Somehow I responded to the wrong thread. My apologies.
tdunham said:
Sorry about that. Somehow I responded to the wrong thread. My apologies.
Click to expand...
Click to collapse
no problem man
EMSpilot said:
These converted system apk's will work with retail or DE. But you will need root first.
Sent from my SM-N910V using Tapatalk 2
Click to expand...
Click to collapse
Hi all friends!
Help me with wbp format i trying everything but cant make transparent background to this format what i should do?
Thx
Breakcore_Rush said:
Hi all friends!
Help me with wbp format i trying everything but cant make transparent background to this format what i should do?
Thx
Click to expand...
Click to collapse
Have you tried converting the file you want to alter to png first?
Requires deleting the original wpb file, inserting the converted one and recompiling the apk so it recognizes the png too.
tdunham said:
Have you tried converting the file you want to alter to png first?
Requires deleting the original wpb file, inserting the converted one and recompiling the apk so it recognizes the png too.
Click to expand...
Click to collapse
Thx mate for fast reply i will try.
UPDATE
yes its works I have no words to express my gratitude to you thanks=))!

Categories

Resources