[MOD] Hacked Gingerbread Camera.apk - updated 5/14/12 - Verizon Droid Charge

This is the Droid Charge Gingerbread Camera.apk with the following modifications:
* Sharpness set to +2 by default--use Camera-5-14-12.apk or Camera-with-2-sharpness.zip. dwitherell had a better idea for how to do this so that doesn't leave the sharpness stuck at +2, so I've updated the attachment to use his instead (thanks!) (added 5/14/12)
* Does not show in call warning--use Camera.apk or Camera-with-normal-sharpness.apk (added 12/20/11)
* Does not show battery warning on <= 15% battery (added 11/6/11)
* Shutter can be activated with either the power button or the search button (although you need to press pause or stop manually in the camcorder) (added 11/6/11)
Requirements:
* You must be running a deodexed Gingerbread Droid Charge ROM. If you have a /system/app/Camera.odex file, you are not running a deodexed ROM, and will need to flash a different one or deodex your ROM before using this mod.
Installation instructions:
1. Back up your Camera.apk by moving it to /system/app/Camera.apk.bak
2. Push one of the attached Camera files to /system/app/Camera.apk with adb or download and copy it there with RootExplorer or ROM Toolbox
Alternatively, flash one of the attached CWM ZIP files from recovery. Thanks to dwitherell for the empty flashable ZIP file, since I could never get them to work correctly when I created them myself.
To use a different version of this mod or revert to the original, download the desired file, rename it to Camera.apk, and then follow the installation instructions above
Known to work on:
Pretty much every Gingerbread (Android 2.3.6) ROM. It is included in Tweaked/TweakStock and InfinityROM.
Feel free to click the "Thanks" button if you like my work

Yeah power button for shutter would be sweet
Sent from my SCH-I510 using XDA App

THANK. YOU. I was trying to get the old one for froyo build's working today & I couldn't, this is exactly what I was looking for.
If you could also add Search Button for shutter, that would be perfect, since it's easier to press & more conveniently located than the power button.
One other request, sort of weird, but when I'm in the camera app, & I press the power button, make it so it actually puts the phone to sleep, not just locks it so you can't do anything but it's still running down your battery.

Haloman800 said:
THANK. YOU. I was trying to get the old one for froyo build's working today & I couldn't, this is exactly what I was looking for.
If you could also add Search Button for shutter, that would be perfect, since it's easier to press & more conveniently located than the power button.
One other request, sort of weird, but when I'm in the camera app, & I press the power button, make it so it actually puts the phone to sleep, not just locks it so you can't do anything but it's still running down your battery.
Click to expand...
Click to collapse
I counter that, I would like to use the power button for shutter. It's easier to use when you take a picture of others and of yourself
Sent from my SCH-I510 using xda premium

Thanks for the feedback! Once I figure out how to change the behavior of keys in the app I could maybe create a couple different versions--one with search for shutter and another for power. I haven't figured out how that code works yet (I'm reading smali code for the most part) but I'll keep you posted.

I can confirm it definitely works on Humble. I used it tonight to take a picture at the Rangers game with about 10% battery left.

Thank you! This is very useful. I was taking off from Puerto Rico to fly back to Florida and I wanted to record the take off. But guess what? My battery was to low!

Doesn't work-humble 4.5. A working version would be sweet... Thanks for the effort.
Sent from my HUMBLE 4.5 using XDA App

andrewjt19 said:
Doesn't work-humble 4.5. A working version would be sweet... Thanks for the effort.
Sent from my HUMBLE 4.5 using XDA App
Click to expand...
Click to collapse
When you replace the Camera.apk in /system/app/, what happens? Does it not show in the app drawer or are you not able to run it? If you PM me the Humble APK I will make the same modification to it as I did to the other one, which should make it work for you.

substanceD said:
When you replace the Camera.apk in /system/app/, what happens? Does it not show in the app drawer or are you not able to run it? If you PM me the Humble APK I will make the same modification to it as I did to the other one, which should make it work for you.
Click to expand...
Click to collapse
I'm running Humble 4.5 as well, it works perfectly for me. He probably tried to install it like a normal app.
p.s. , here's the thread for the guy that hacked the froyo camera, if you want to ask him how he changed the button mappings: http://forum.xda-developers.com/showthread.php?t=1144885
Thanks again, this has already saved me once!

It works for me running stock 2.3.5. If it doesn't work try rebooting.
Sent from my SCH-I510 using XDA App

Works for me. I'm running Humble 4.5. App disappeared when I copied it over to system/app using Root Explorer. Rebooted and now everything is just fine. Thanks!

haza12d said:
Works for me. I'm running Humble 4.5. App disappeared when I copied it over to system/app using Root Explorer. Rebooted and now everything is just fine. Thanks!
Click to expand...
Click to collapse
In general, if you replace a system app it will disappear from your home screen, but will reappear in the app drawer and soon as you put it back in /system/app/. That has been my experience, anyway.

Thanks Substance!!! Been waiting on this for a while! Would love to see a write-up on how you did it. What Smali code you edited etc. I spent some time learning how to turn stuff into smali, but was never able to make the necessary changes. Would love to see your thought process.
Thanks again!!!

tezjet said:
Thanks Substance!!! Been waiting on this for a while! Would love to see a write-up on how you did it. What Smali code you edited etc. I spent some time learning how to turn stuff into smali, but was never able to make the necessary changes. Would love to see your thought process.
Thanks again!!!
Click to expand...
Click to collapse
I'm glad you found this useful
Smali is kind of like a cross between x86 assembly and Java, although it definitely beats the former in terms of being able to understand and code in it easily. I actually just found this thread where someone did essentially the same thing for a different phone, and the author explains the process he used (which looks about the same as mine).
What I did is I pulled out the classes.dex file from Camera.apk and used a tool called dex2jar to generate a .jar file with the "classes" embodied by the .dex file (I say "classes" because most of the generated classes are not actually valid code). I then used jd-gui to examine the classes, which provides a better high-level overview of what is happening than .smali files do. After identifying which methods contained the logic I wanted to modify, I used baksmali to decompile the .dex file into .smali files. Editing the smali files was generally straightforward, since I knew which methods I wanted to edit and I was mostly just removing code or adding a couple lines here and there. The low battery check is in AbstractCameraActivity.smali:handleLowBattery() and the key press logic is in Camera/Camcorder.smali: onKeyDown() and Camera/Camcorder.smali: onKeyUp(). After making the changes I packaged up the .smali files into classes.dex with smali and replaced the classes.dex in Camera.apk.
I'm far from an expert, but if you have any specific questions about smali, send me a PM and I'll try to help.

The remapped buttons don't seem to work on stock 2.3.5 :-(
Sent from my SCH-I510 using XDA App

Chitala383 said:
The remapped buttons don't seem to work on stock 2.3.5 :-(
Sent from my SCH-I510 using XDA App
Click to expand...
Click to collapse
Hmm neither power nor search does anything in the camera or camcorder? Pressing the power button doesn't "lock" the camera like it usually does, right?

Yeah, pressing power locks the camera and pressing search does nothing. I've tried downloading and pushing it over 3 times, rebooting, and the remapped buttons won't work.
Sent from my SCH-I510 using XDA App

Chitala383 said:
Yeah, pressing power locks the camera and pressing search does nothing. I've tried downloading and pushing it over 3 times, rebooting, and the remapped buttons won't work.
Sent from my SCH-I510 using XDA App
Click to expand...
Click to collapse
Since you're still seeing that the power button "locks" the camera, you're definitely on the first version that I posted. With the edits that I made, there isn't any logic in the app that can cause it to lock, so somehow the versions are mixed up for you. I just downloaded the APK attached in the first post and it behaves correctly for me. Can you please try this?
1. Rename Camera.apk in /system/app/ to Camera.bak2 or something
2. Confirm that the camera app is now missing from your home screen and app drawer
3. Copy the Camera.apk from the original post to /system/app/
4. Confirm that the size of Camera.apk is 2.07MB (the initial version shows as 2.06MB for me)
5. Confirm that the modification time on Camera.apk is sometime in the last xx minutes
Let me know how that works for you, thanks!

Yup, this is now the fourth time I've done all of that with still the same results. weird.
{
"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"
}
Sent from my SCH-I510 using XDA App

Related

[MOD] Disable ALL lockscreens for HTC Sense ROMs

Do you find the screen on/off button at the top of your EVO adequate for locking/unlocking your phone and don't want to be bothered with the additional steps for unlocking the screen after pressing the on/off button? If you answered yes, this mod is for you.
Disclaimer: Attention all "Billy Buzzkills", yes, I know there are third party apps that can do this. I don't want to install them to do so. I wanted to accomplish this at the framework level. Yes, I know you can toggle this on/off via the CM ROM widget. I don't currently use that ROM, and further more, this mod is "persistent", i.e. it survives a reboot, and can be turned on/off manually via a mechanism I've built-in to the mod, which is explained below, all w/o installing any third party app or widget.
This mod is accomplished via edits to the 'services.jar' framework file, so if you are already running various mods that you've manually applied to your services.jar file, this will undo them, and you will have to re-do them after applying this mod in the same manner previously.
When you flash the mod zip provided below, it will remove your HtcLockScreen.apk, if currently present, replace your current services.jar file, and, most importantly, place a "dummy" file named 'nolock.txt' in your '/system/customize' folder.
Upon bootup, when/if the '/system/customize/nolock.txt' file is present, your Vanilla Lockscreen will be disabled, meaning as soon you press the power button on your EVO, you will be taken directly to your homescreen.
This mod is based on the most current 'services.jar' file as distributed via the Sprint OTA update 3.30.651.2, and also has the 'translucency' mod built-in for the notifications window (thanks to xeudoxus & fxn).
Disable All Lockscreens for HTC Sense ROMs <--- Flash via recovery
As with replacing any framework file on your phone, your dalvik cache will get rebuilt on the initial boot, causing an extended reboot time. Don't panic, your phone will come up, eventually. While waiting, grab a coffee, get re-acquainted with your wife, say hello to your neighbor, solve world hunger, etc, etc.
Want your Vanilla Lockscreen back, or want to toggle this feature on/off in a persistent manner? Via ADB, simply shell in to your phone and rename the 'nolock.txt' file:
Code:
adb remount
adb shell
cd /system/customize
mv nolock.txt nolock.txt.bak
reboot
When your phone comes back up, your Vanilla Lockscreen will return. You can accomplish the same steps above via 'root explorer' by simply navigating to the referenced folder and renaming the file.
Want to disable again?
Code:
adb remount
adb shell
cd /system/customize
mv nolock.txt.bak nolock.txt
reboot
If you deleted the file, rather than renaming it, just re-create the dummy file using:
Code:
adb remount
adb shell
cd /system/customize/
touch nolock.txt
reboot
And when the phone comes back up, the lockscreen will be disabled once again.
Not comfortable with the manual approach? I've included 2 flashable zip files below that, after applying this mod, you can simply boot into recovery and flash to enable/disable the Vanilla Lockscreen as desired.
Flash to turn off lockscreen <--- Flash via recovery
Flash to turn on lockscreen <--- Flash via recovery
Note: Unfortunately, this does NOT work in conjunction with the keypattern unlock. When / if you are using the keypattern, it forces the lockscreen first, followed by the keypattern entry, so if you want keypattern ONLY, w/o the lockscreen, this will not accomplish this goal, though I will look into it. I just wanted to get this out there as version 1.0.
After flashing this, can you then just use the pattern lock screen and bypass the htc slide down and vanilla lock screens or will the pattern lock be disabled too?
Sent from my PC36100 using XDA App
dianneeraser said:
After flashing this, can you then just use the pattern lock screen and bypass the htc slide down and vanilla lock screens or will the pattern lock be disabled too?
Sent from my PC36100 using XDA App
Click to expand...
Click to collapse
It's a good question, and I'll forgive you for missing the very last paragraph in the OP :
JsChiSurf said:
Note: Unfortunately, this does NOT work in conjunction with the keypattern unlock. When / if you are using the keypattern, it forces the lockscreen first, followed by the keypattern entry, so if you want keypattern ONLY, w/o the lockscreen, this will not accomplish this goal, though I will look into it. I just wanted to get this out there as version 1.0.
Click to expand...
Click to collapse
The way the keypattern works, it forces the Vanilla screen back on. This wasn't my primary goal when doing the mod, so, no currently, it won't work that way, but as mentioned, it's something I'll look into to see if there is a way...
Just an update. Had a chance to look closer at the keypattern files, and I have a few ideas that "may" enable keypattern ONLY. Stay tuned...
what about roms with white taskbar?, the clock is white...can you make a version of services.jar with black font for the clock in the taskbar?...pattern would be sweet too
snandlal said:
what about roms with white taskbar?, the clock is white...can you make a version of services.jar with black font for the clock in the taskbar?
Click to expand...
Click to collapse
My main goal is the put this base mod out there. People can certainly take it, as mentioned, and modify to tweak for their other configurations as desired, given that those types of things are small edits in comparison.
Having said that, I see this as a common request, and as such, below is a link to the same mod with the clock font modded to black from white, for those running a white taskbar.
Disable All Lockscreens for HTC Sense ROMs - Black Clock <--- Flash via Recovery
Thanks so much..now we dont need a stupid app running a process all the time. Sweet mod
good stuff u giving us... and u never stop.
thank you.
two quick question/requests... that i think was asked before... but im not sure if u had a chance to check it out.
i know that u made the rotary vanilla lock screen work on 2.1 roms before... maybe a mode for the new 2.2 would be nice.
and the biggest one... losing the htc slide-to-answer and getting the vanilla lockscreen would be freaking sweet also.
sorry for throwing requests at u man... but it seems like u have the best understanding of how to do things with the smali code.
Works great! I love not having to unlock two or three things to switch the pandoria song wile im driving
Sent from my PC36100 using XDA App
JsChiSurf said:
Just an update. Had a chance to look closer at the keypattern files, and I have a few ideas that "may" enable keypattern ONLY. Stay tuned...
Click to expand...
Click to collapse
thanks for the quick response earlier...sorry I missed the last part of your op, I was reading it off the xda app and it was a late night early morning! If you could work out the keypattern only lock you would be my hero!
It should also be mentioned that this will also prevent your phone from going to sleep.
Sent from my PC36100 using Tapatalk
antiphon said:
It should also be mentioned that this will also prevent your phone from going to sleep.
Sent from my PC36100 using Tapatalk
Click to expand...
Click to collapse
It would be mentioned if that were the case, but since it's not, it wasn't. My phone sleeps just fine. This mod uses standard android libraries for simply disabling the keyguard.
Here's a screen capture a few hours after a reboot, where I answered a few emails, then turned the screen off while using this mod. 12 mins of wake time after 1 hour, 16 mins of uptime w/o being plugged in:
{
"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"
}
JsChiSurf said:
Just an update. Had a chance to look closer at the keypattern files, and I have a few ideas that "may" enable keypattern ONLY. Stay tuned...
Click to expand...
Click to collapse
Thank you for your work so far.
I am VERY interested in keypattern only unlock, so ill be checking here often in the hopes that you figure it out. Just want to let you know that some of use are definitely interested in it.
I am definitly interested in this option as well to only have key pattern only unlock as well
Great work!!!
Once (if you plan to) you make to where I don't have to slide and all I do is enter my password, ill flash. But this is exactly what my buddy has wanted.
Sent From My HTC Evo 4G Using Tapa Talk Pro!
Rydah805 said:
Great work!!!
Once (if you plan to) you make to where I don't have to slide and all I do is enter my password, ill flash. But this is exactly what my buddy has wanted.
Sent From My HTC Evo 4G Using Tapa Talk Pro!
Click to expand...
Click to collapse
Unfortunately, this is one in the same as pulling off the pattern unlock only, which is kicking my butt right now. These are on my "to look at" list, but, in all honesty, a little lower than some higher priority stuff (notifications power widget / rotary lock / phone slide to answer, etc).
Good work with this.
Sent from my PC36100 using Tapatalk
hey john,
can you share what changes need to be made to services.jar? im trying to do Windows 7 look and need to remove both lockscreens to use widgetlocket instead.
but as you know i've modified things quite a bit and can't flash over everything else. i'll make the necessary .smali edits if you tell me what file to edit
Max_Pain said:
hey john,
can you share what changes need to be made to services.jar? im trying to do Windows 7 look and need to remove both lockscreens to use widgetlocket instead.
but as you know i've modified things quite a bit and can't flash over everything else. i'll make the necessary .smali edits if you tell me what file to edit
Click to expand...
Click to collapse
This mod is a little (actually a lot) more intensive that commenting out a few lines of code, etc, and it's not practical, IMHO, to try and post up (nor do I have the time), instructions on something like this.
It'd be easier, quite frankly, if you want, to just PM be your jar file and I'll take the time to work through / integrate for you (note, Max makes an effort and thus why I'm willing to do so for him).
well i currently have removed HtcLockScreen.apk and have WidgetPro set to disable the lockscreen. this works well in combination with WidgetLocker...
is it going to be much better with this modification? i dont want to trouble you with extra work. i'd rather have you developing new things

[Mod\Theme] Xperia Theme & Accurate Battery Mods for Eagleblood V105 Froyo

"True" Xperia Theme for EagleBlood v105 Froyo
I personally feel the Gingerbread look is getting a little moldy, so here is a basic Xperia theme for EBv105 Froyo.
Install Instructions:
Make a nandroid backup (optional but highly recommended)
Flash using Clockwork Recovery
Reboot
Enjoy!
Features:
Themed Framework
Themed MMS
Themed Contacts
Themed Phone
Themed Calculator
Themed PowerWidget
Themed News & Weather
AppWidgetPicker
Xperia Font
Pictures 4 thru 7 attached
Download Link
With Green Horizantal Battery Mod
Download Link
My personal "PhishMonged" Xperia Theme for EagleBlood v105 Froyo
I also will post a customized framework that I assembled for my own use. Sorry, but no modifications for this one......just sharing It is based off the Xperia theme with a ton of modifications.
Pictures 1 thru 3 attached
Download Link
With Green Sense Battery Mod
Download Link
-------------------------------------------------------------------------------------------------------------------------
Accurate Battery Mods for EB105 Froyo
These are a few basic Battery Mods made from EagleBlood V105 Froyo. Although they were specifically created for that build, some testers have reported it working on other 2.2.2-based builds (aka anything using the LG stock Froyo as a base). This mod replaces the entire framework-res.apk file, so you will loss any previous theming.
Gingerbread-style Vertical Green : Download Link
Green Segmented Circle : Download Link
Circular Blue Battery: Download Link
Vertical Blue Battery: Download Link
Credits:
webstar1 for UltimateG2x ROM (Pulled a lot of gfx from it)
Online Theme Kitchen (UOT) from providing an AWESOME image database, even if its cracks out every once and a while.
@JaiThemes for providing dedicated hosting for themers such as myself, and for his work on UncutAndroid
Doniqcc and the rest of Team Shockwave team for a great base build to work with.
@HTCClay, @anderwebs, and @JAguirre1231 for their assistance tracking down the "white menu" bug.
No thanks to all you devs who still reference mdpi folders on an hdpi device. You make my head hurt
Enjoy!
zimphishmonger said:
Battery Mods for Eagleblood V105 Froyo (Only for this build)
Accurate Battery Mods for EB105 Froyo
Gingerbread-style Vertical Green : http://www.mediafire.com/?1nbdcgkmsrd1qlb
Green Segmented Circle : http://www.mediafire.com/?5g83fq830puskh9
Circular Blue Battery: http://www.mediafire.com/?0zmvxnypci5u7f2
Vertical Blue Battery: http://www.mediafire.com/?fe9w61sz452jwm3
Enjoy!
Click to expand...
Click to collapse
Decided to get adventurous and test this out on Ultimate G2X ROM and to my amazement....IT WORKS!!!
solrac.dc said:
Decided to get adventurous and test this out on Ultimate G2X ROM and to my amazement....IT WORKS!!!
Click to expand...
Click to collapse
Nice, thanks for testing,...
zimphishmonger said:
Nice, thanks for testing,...
Click to expand...
Click to collapse
May you be a gent and hit the "thanks" button. Trying to get all I can get and you are most welcome!!
I read that you wanted to make a battery mod it two for Ultimate and I will have to say the one I chose for it look REALLY nice
Im trying to use file expert to install it but it wont let me overwrite the files. Do i really need root explorer?
raz1337 said:
Im trying to use file expert to install it but it wont let me overwrite the files. Do i really need root explorer?
Click to expand...
Click to collapse
Try flashing via CWM recovery. Worked like a charm for me!
Converted thread to serve as home to both EB battery mods and Xperia theme.
haha, finally, Z. Downloading it right now. Darn my slow internet >"< Can't wait to test it...
Oh btw, if I flashed the theme already, now I wanna use the Battery Mod, will the Battery Icon change?
vn00914361 said:
haha, finally, Z. Downloading it right now. Darn my slow internet >"< Can't wait to test it...
Oh btw, if I flashed the theme already, now I wanna use the Battery Mod, will the Battery Icon change?
Click to expand...
Click to collapse
Ya, but I will be putting together a few more battery mods when I have time. Just went a lil crazy today haha.
As another method, you can TRY feeding the framework-res.apk back into the Online Theme Kitchen, but it doesnt always work right. Sometimes it errors out, or causes a bootloop, but its a great resource for images.
PS WIll be adding more images soon, especially for the True Xperia
zimphishmonger said:
Ya, but I will be putting together a few more battery mods when I have time. Just went a lil crazy today haha.
As another method, you can TRY feeding the framework-res.apk back into the Online Theme Kitchen, but it doesnt always work right. Sometimes it errors out, or causes a bootloop, but its a great resource for images.
Click to expand...
Click to collapse
naah, I will just wait for your updates
btw, I still have the dang white background bug as we usually have though
{
"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"
}
vn00914361 said:
naah, I will just wait for your updates
btw, I still have the dang white background bug as we usually have though
Click to expand...
Click to collapse
That bug is DEF fixed if you used the above links, I flashed that sucker a few times to make sure. I also bundled in all the themed apps to make it easier, so we are def talking about the same file. Try flashing it, clearing your dalvik-cache, fix permissions, and reboot. Let me know.
Attached the "offending" file
Thought I'd share a screenshot of the blue circular battery mod and how cool it looks with it!!! Also I found that the sliders color have changed as well as the position of the sliders which I am digging cause it suits the ROM!
Sent from my LG-P999 InJected w/Ultimate!!
The .pngs for the power control widget in picture 3 aren't showing up when I flash either .zip, after wiping dalivk and cache. What am I doing wrong?
Great theme but I'm still seeing the white menu bug in Root Explorer and others. I wiped cache and dalvik and used your latest link.
Thanks
Sent from my LG-P999
kev0153 said:
Great theme but I'm still seeing the white menu bug in Root Explorer and others. I wiped cache and dalvik and used your latest link.
Thanks
Sent from my LG-P999
Click to expand...
Click to collapse
Thats REALLY strange as the image has DEF been replaced with the proper one, and I combed through the framework pretty well to make sure I didnt miss anything else. Also, I flashed both my version and the Xperia version a few different times to make sure.
EDIT:
Okay, just tried Root Explorer, and I think it may be a app issue, cause that image doesnt exists in the framework. If an app uses its own png file instead of the one in the framework, then the dev needs to update the app with a GB style menu. Just curious, what other apps do that?
See pic below, this is from the Browser although MOST other apps should have a similar menu.
ryan75 said:
The .pngs for the power control widget in picture 3 aren't showing up when I flash either .zip, after wiping dalivk and cache. What am I doing wrong?
Click to expand...
Click to collapse
That power widget is from my personal "phishmonged" theme, make sure you arent flashing the True Xperia theme. Also, just to confirm, you are running EagleBlood V105 Froyo, correct?
I attached the Settings.apk file, which has all the mods for the settings menu and Power Widget, as another method. You can try pushing it to /system/app or copy\paste it to /system/app using Root Explorer or SUFBS.
I thought maybe I saw this problem before I installed your theme but my memory was fuzzy. After your statement, I'm sure now I saw this with the original ROM. I agree it is a ROM problem. I see it with Root Explorer and my exchange email app Touchdown.
Sent from my LG-P999
kev0153 said:
I thought maybe I saw this problem before I installed your theme but my memory was fuzzy. After your statement, I'm sure now I saw this with the original ROM. I agree it is a ROM problem. I see it with Root Explorer and my exchange email app Touchdown.
Sent from my LG-P999
Click to expand...
Click to collapse
No, I dont think its a rom problem, I think its an app problem. Android has a LARGE set of images that apps can use (which is why the "Settings" button looks the same for most apps, as it simply borrows Androids icon for settings). From Froyo to GB, The menu changed from white to black and the text inverted colors as well. If an app developor decides to use his own image (included in the app apk) instead of using Android's images (from the framework, which the theme modifies), then that would explain why certain apps have the white menu bug while others dont.
zimphishmonger said:
No, I dont think its a rom problem, I think its an app problem. Android has a LARGE set of images that apps can use (which is why the "Settings" button looks the same for most apps, as it simply borrows Androids icon for settings). From Froyo to GB, The menu changed from white to black and the text inverted colors as well. If an app developor decides to use his own image (included in the app apk) instead of using Android's images (from the framework, which the theme modifies), then that would explain why certain apps have the white menu bug while others dont.
Click to expand...
Click to collapse
I see, so one could potentially modify the app to solve the problem.
Sent from my LG-P999
zimphishmonger said:
That power widget is from my personal "phishmonged" theme, make sure you arent flashing the True Xperia theme. Also, just to confirm, you are running EagleBlood V105 Froyo, correct?
I attached the Settings.apk file, which has all the mods for the settings menu and Power Widget, as another method. You can try pushing it to /system/app or copy\paste it to /system/app using Root Explorer or SUFBS.
Click to expand...
Click to collapse
I just checked to be sure, and yes I'm running EB1.0.5 Froyo. Thanks for the settings.apk, I'll push it now.

[THEME]**FROST*BITE**V1.1 Honeycomb AOSP bark...look great!!! :D

{
"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 present to you my AOSP Honeycomb theme (**FROST**BITE**V1.0) for p6200 and p6200L (let me know if it work on any other)
I have had the day off college so i decided it was time to get to grips with my tab as we don't always see eye to eye. haha. iv modded what ever i could find in framework & system Ul. although it looks cool now just give me some time to work on this baby
what is themed?
well....
.system ul
.notification box with transparent backing
.power control themed gray
.lock screen
.clock
.settings icon (will theme setting ASAP in black)
.messaging icon (will theme message .apk ASAP)
.notification bar is now stock black with stock 3.0 soft keys in gray/white
.battery is themed but needs work sizing etc (I may add a circle mod hmmm..)
.signal bar ripped from XOOM stock 3.1 honeycomb ROM
.launcher is themed with stock honeycomb app key but still TW (i will add the option of a stock AOSP launcher.zip but you can not add widgets
to be continued.......
what is stock?......
well....
.camera is stock AOSP with stock icon.
.browsed is stock AOSP
.gallery is stock AOSP
.music is the latest AOSP version (sooo cool)
.clock widget is stock AOSP.
extras...
you will also get in the .zip....
asus weather widget
XOOM clock widget
movie studio XOOM
Toshiba media player
and a selection of stock honeycomb wallpapers
installation.
0.nandroid then check if you have a nandroid back up then check agen haha...
1. clear data on the following before install....Browser/ clock/ launcher (it just helps prevent issues and damn force closes)
2. make sure you are deodexed and rooted
3.place **FROST**BITE**V1.1.zip on to your external SD card navigate to choose zip for SD and flash....BANG!!!....your in **FROST**BITE**V1.0
thanks me or buy me a beer
Download here: http://dl.dropbox.com/u/8623715/FROST_BITE_V1.1 beta.zip
the setting will come in a update.zip also with the soft keys you see now
updates:
v1.1 beta:....uploading now
whats changed?...A) soft keys are more stock with matching screen capture and a very nice purple battery mod. you will also get AOSP stock setting with TW feel.
AOSP wallpapers are attached at the bottom to install but a faulty install in the .zip may mean you need to go to root explorer and uninstall the other one if it does not work let me know.
Disclaimer: i am not responsible if you brick your device under Google's open sauce licence. i will help you if you do something wrong but its not my fault.
if you do decide to blame me i will simply giggle at your expense haha then suggest ways for you to use your tab...drinks tray, diner mat, roofing slate...haha
Went a head and flashed your ROM on the T869 device (running deodexed rom). Screen cap below. It was charging at time of screen cap. I changed wallpaper immediately because the one the theme was very odd and very "zoomed in" looking.
I know this was not meant for this device...but its fun to try right?
Few things that don't look right.
-Lock screen orbit is a small square...that's it. You can still unlock though.
-Battery icon when device is not charging is off. It turns it into a gray spiral type icon.
-Get 3g icon instead of 4g (obvious reason why)
Again, not a problem report...just letting those know who want to play with the t869 device. I'm finding these themes are almost do-able on the T869.
aaronuser said:
Went a head and flashed your ROM on the T869 device (running deodexed rom). Screen cap below. It was charging at time of screen cap. I changed wallpaper immediately because the one the theme was very odd and very "zoomed in" looking.
I know this was not meant for this device...but its fun to try right?
Few things that don't look right.
-Lock screen orbit is a small square...that's it. You can still unlock though.
-Battery icon when device is not charging is off. It turns it into a gray spiral type icon.
-Get 3g icon instead of 4g (obvious reason why)
Again, not a problem report...just letting those know who want to play with the t869 device. I'm finding these themes are almost do-able on the T869.
Click to expand...
Click to collapse
thanks mate for you reply as you sed this is not for your device you were lucky not to soft brick it it only looks funny on your device as the framework files are quite different from the ones on your device so you have most probably entered a different file when it flashed hence the freaky wallpaper p.s. my new update it being uploaded in second so feel free to give it a go my friend its so much better that the older version and the battery looks cool to made it myself
i am planning on making some battery mod.zips with a big selection and next week after making this theme black i will defo start a new
Which model does this theme works for? Does it work on my P6200? Anyway great theme!
leviathian said:
Which model does this theme works for? Does it work on my P6200? Anyway great theme!
Click to expand...
Click to collapse
yes it will work just fine on your device my friend and thanks haha
p.s. thanks so much for the donations guys very much appreciated glad you all like my work
i will be working on a new theme this week but i need ideas from you all
In regards to me flashing this on T869 Device (which it was not made for)
I knew it wouldn't soft brick...been playing with the current themes offered and have flashed before. Most of the framework and system are similar enough it will boot every time...just may not look right on some things. Ive owned and flashed many android devices...so very comfortable with it.
Im in no way a dev...very wet behind the ears when it comes to theming. But the T869 device needs some love so im trying my best to learn how I can do just that...give it some love.
I greatly appreciate your work.
aaronuser said:
In regards to me flashing this on T869 Device (which it was not made for)
I knew it wouldn't soft brick...been playing with the current themes offered and have flashed before. Most of the framework and system are similar enough it will boot every time...just may not look right on some things. Ive owned and flashed many android devices...so very comfortable with it.
Im in no way a dev...very wet behind the ears when it comes to theming. But the T869 device needs some love so im trying my best to learn how I can do just that...give it some love.
I greatly appreciate your work.
Click to expand...
Click to collapse
thank you very much im pleased with that.
what tools are you using to theme at this moment?
Just picked up a 6 core system last night to run Linux on. Probably try setting up the kitchen once I finish building the system.
Any tips you could help me with would be appreciated.
Sent from my SGH-T989 using xda premium
aaronuser said:
Just picked up a 6 core system last night to run Linux on. Probably try setting up the kitchen once I finish building the system.
Any tips you could help me with would be appreciated.
Sent from my SGH-T989 using xda premium
Click to expand...
Click to collapse
ohhh...cool man what possessor u using?
the best software to theme is something as simple as 7-zip for opening apks and PAINT.NET for coloring and re-sizing or Photoshop for high quality themeing
AMD Phenom II X6 3.3 GHz, 10g mem
I'm very fluent in Photoshop, so I will be using that for "theming". Very familiar with 7zip.
aaronuser said:
AMD Phenom II X6 3.3 GHz, 10g mem
I'm very fluent in Photoshop, so I will be using that for "theming". Very familiar with 7zip.
Click to expand...
Click to collapse
very nice...
well when you get the hang of all the framework etc im sure we will have an amazing themer on our hands ill be of some support for you
jmar8124 said:
very nice...
well when you get the hang of all the framework etc im sure we will have an amazing themer on our hands ill be of some support for you
Click to expand...
Click to collapse
Appreciate the encouragement. I just need to do some reading and figure out all the details of doing theming.
My only thing im very unsure of yet is creating update.zips. Still have plenty of reading to do...
aaronuser said:
Appreciate the encouragement. I just need to do some reading and figure out all the details of doing theming.
My only thing im very unsure of yet is creating update.zips. Still have plenty of reading to do...
Click to expand...
Click to collapse
its very easy all you have to do is set up the kitchen you require and select the option fill in the information you want to show in the recovery log add change log and fill with apks etc... haha but you do have to write the paths out e.g. if you want something going in to system, app make a system folder and put app folder in to that one then place your required file in to it and it will pop it in their when flashed. A very easy cheats way is to copy someones META-INF file and place it in to a .zip then fill in your paths described above easy!....when you get going
think this will work on mywifi only device? I think its p6210
Macros617 said:
think this will work on mywifi only device? I think its p6210
Click to expand...
Click to collapse
no sorry mate but you can send me your system app folder and framework apk i will be more than happy to make it for you lot with the wifi only device
aaronuser said:
AMD Phenom II X6 3.3 GHz, 10g mem
I'm very fluent in Photoshop, so I will be using that for "theming". Very familiar with 7zip.
Click to expand...
Click to collapse
nice set up, Im drooling. perfect for making ICS builds.
jmar8124 said:
no sorry mate but you can send me your system app folder and framework apk i will be more than happy to make it for you lot with the wifi only device
Click to expand...
Click to collapse
errr how would I do that?
Macros617 said:
errr how would I do that?
Click to expand...
Click to collapse
well providing you are rooted and have root explorer installed you also u will need to be deobexed to install it to ...easy to do open root explorer navigate to system open it then in system folder it will have the folders app (copy it to sdcard) and copy the framework folder and save to sdcard after that put them on to a pc and upload them to bropbox if you you have it and up the download link in this thread for me and then il get to work on it haha
jmar8124 said:
well providing you are rooted and have root explorer installed you also u will need to be deobexed to install it to ...easy to do open root explorer navigate to system open it then in system folder it will have the folders app (copy it to sdcard) and copy the framework folder and save to sdcard after that put them on to a pc and upload them to bropbox if you you have it and up the download link in this thread for me and then il get to work on it haha
Click to expand...
Click to collapse
App
http://dl.dropbox.com/u/6826048/app.zip
Framework
http://dl.dropbox.com/u/6826048/framework.zip
Hopefully you'll be able to port it thanks!

Core Droid Theme for FP1 Deodexed/Debloated with Eclipse AOSP apps

First of all major credit goes to:
Ronnie8890
nitroglycerine33
dwitherell
PaulN64007
ForeverSupra
Thanks for all your help
Many images in this theme were ported from here: http://forum.xda-developers.com/showthread.php?t=1336943
This is the Core Droid Theme for FP1 Deodexed/Debloated with Eclipse AOSP apps
The ROM can be found here: http://eclipserom.com/vforum/showthread.php?658-ROM-FP1-Deodexed-Debloated-with-Eclipse-AOSP-apps
Currently Themed:
Framework
Twframework
System-UI
EclipseLauncher
Browser
Contacts
Dialer
Gmail
Mms
Settings
Eclipse Wallpapers
SuperUser
LatinIME(keyboard)
More to come in future releases
The usual disclaimer first I am not responsible for anything that happens to your phone as a result of flashing any files. All files have been tested and are working on my phone.
Now that we have that out of the way instructions to install the Core Droid theme are as follows:
Save to SD Card
Mount System, wipe cache and dalvik cache
Flash Core Droid theme
Reboot phone
Download Link:http://www.mediafire.com/download.php?qq3647ofttw916k
If you lose root after installing the theme mount system and flash this: http://downloads.androidsu.com/superuser/su-bin-3.0.3.2-efghi-signed.zip
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"
}
Like my work buy me a 5 dollar footlong
I've always liked this theme. If I decide to give FP1 another chance, I'll definitely be giving this one a spin.
Is it possible you can make an ICS theme for FP1 rom without the AOSP stuff? I found that custom rom does have a "break in" period, where there're bugs. Until then I will stay on stock with a nice theme. My wife almost divorce me when I flashed the eclipse rom to her phone!!LOL and thanks.
Sweet thanks for your work man!
Can you include the wallpaper/background from the first image of the link you provided, or tell me how to?
buhohitr said:
My wife almost divorce me when I flashed the eclipse rom to her phone!!LOL and thanks.
Click to expand...
Click to collapse
LOL I take it she doesn't like change?
But yes would def would like to see ICS theme on the stock debloat/deoxed w/o exlipse AOSP apps...
pizzle11 said:
Sweet thanks for your work man!
Can you include the wallpaper/background from the first image of the link you provided, or tell me how to?
Click to expand...
Click to collapse
From homescreen go to settings wallpapers eclipse papers its in, there
Sent from my SCH-I510 using xda premium
was curious how to theme, just installed apkmanager and changed default wallpapers out. gonna keep learning. is it pretty safe without bricking your phone? Can you always just odin stock if you mess up?
Awesome man! Flashing now. Was just about to switch off of FP1 this weekend(flashaholic) but this will definitely feed my addiction and keep me on for now. Great work!
Way better than the TouchWiz poop brown
Sent from my SCH-I510 using XDA
Everytime I try to go into my verizon app it force closes and my data widget wont load... Any advice....? @ztkryan
Sent from my SCH-I510 using XDA
I remember this theme.
Though I always found it funny the "vibrate" icon was an HTC phone.
-edit- the only thing I don't necessarily like is that it changed the browser. Any way I can get the TW browser back?
Sent from my SCH-I510 using xda premium
stebomurkn420 said:
Everytime I try to go into my verizon app it force closes and my data widget wont load... Any advice....? @ztkryan
Sent from my SCH-I510 using XDA
Click to expand...
Click to collapse
Thats odd myverizon works fine on my phone try this uninstall and reinstall there app and see if that fixes it
Sent from my SCH-I510 using xda premium
DirgeExtinction said:
I remember this theme.
Though I always found it funny the "vibrate" icon was an HTC phone.
-edit- the only thing I don't necessarily like is that it changed the browser. Any way I can get the TW browser back?
Sent from my SCH-I510 using xda premium
Click to expand...
Click to collapse
Sure I will make a cwm zip and pm it to you
Sent from my SCH-I510 using xda premium
buhohitr said:
Is it possible you can make an ICS theme for FP1 rom without the AOSP stuff? I found that custom rom does have a "break in" period, where there're bugs. Until then I will stay on stock with a nice theme. My wife almost divorce me when I flashed the eclipse rom to her phone!!LOL and thanks.
Click to expand...
Click to collapse
sure I can make an ics theme happen
Sent from my SCH-I510 using xda premium
ztkryan said:
Sure I will make a cwm zip and pm it to you
Sent from my SCH-I510 using xda premium
Click to expand...
Click to collapse
Thanks!
Sent from my SCH-I510 using xda premium
That did the trick man... Lol... Wierd how these things ddownload wrong sometimes... THANKS!!!! @ztkryan
Sent from my SCH-I510 using XDA
Love this theme! - possible problem found
First of all... kudos to you sir! Thank you for all of your time and hard work. This is a gorgeous theme!
I'm wanting to install this over Nitro's [ROM][FP1] Eclipse Charge v2.0 (4/3/12).
I've installed this on my and my wife's phone. Everything was beautiful and working great until I did one thing... on each phone. If I long press on the power button to bring up the reboot options screen, nothing happens right away. A couple of seconds later, a single "haptic feedback" vibrate is felt, followed momentarily by a launcher F/C message and then the phone reboots. Once it reboots, the "themed" GMail icon is gone, GMail doesn't appear to be installed any longer. Also, pressing on the menu button from the Home screen brings up a menu, but the menu does not contain a "Settings" icon. The "Settings", and "GMail" icons are also missing from the application drawer. At this point any attempt to open anything is a trip to Force Close city. I had no choice but to revert back to Nitro's ROM, (which is great itself! Thanks Nitro!).
I noticed that Nitro has redone the "reboot options" screen to include some extras for those of us who use them. Could this be causing a problem with this theme? I was wondering if since his screen, layout and icons are different, could this be what is causing the problem? The problem I'm experiencing is duplicated exactly on two different Charges. One of them is less that one week old and the other is about 4 months old.
Like I said earlier, this theme is beautiful. My wife and I both want to use it. I'll be glad to trash my phone a few times to help figure it out. I'll be glad to donate as well. I know how much time this stuff takes.
Bryan
Carbide58 said:
First of all... kudos to you sir! Thank you for all of your time and hard work. This is a gorgeous theme!
I'm wanting to install this over Nitro's [ROM][FP1] Eclipse Charge v2.0 (4/3/12).
I've installed this on my and my wife's phone. Everything was beautiful and working great until I did one thing... on each phone. If I long press on the power button to bring up the reboot options screen, nothing happens right away. A couple of seconds later, a single "haptic feedback" vibrate is felt, followed momentarily by a launcher F/C message and then the phone reboots. Once it reboots, the "themed" GMail icon is gone, GMail doesn't appear to be installed any longer. Also, pressing on the menu button from the Home screen brings up a menu, but the menu does not contain a "Settings" icon. The "Settings", and "GMail" icons are also missing from the application drawer. At this point any attempt to open anything is a trip to Force Close city. I had no choice but to revert back to Nitro's ROM, (which is great itself! Thanks Nitro!).
I noticed that Nitro has redone the "reboot options" screen to include some extras for those of us who use them. Could this be causing a problem with this theme? I was wondering if since his screen, layout and icons are different, could this be what is causing the problem? The problem I'm experiencing is duplicated exactly on two different Charges. One of them is less that one week old and the other is about 4 months old.
Like I said earlier, this theme is beautiful. My wife and I both want to use it. I'll be glad to trash my phone a few times to help figure it out. I'll be glad to donate as well. I know how much time this stuff takes.
Bryan
Click to expand...
Click to collapse
My guess is because of the framework changes between fp1 stock and eclipse 2.0 I should have time after Easter to get the Theme ported
Sent from my XT875 using xda premium
OK, thanks. That was the best guess I could come up with.
We're really looking forward for more to come. With your theme, this phone finally looks as it should have to begin with. The icons are the best quality I've seen to date. Please keep up the great work!
ztkryan said:
My guess is because of the framework changes between fp1 stock and eclipse 2.0 I should have time after Easter to get the Theme ported
Sent from my XT875 using xda premium
Click to expand...
Click to collapse
This is what I am waiting for before I jump to Eclipse 2.0! And the center clock option! Looking forward to your work, and thanks!

[App] Updated 11.28.12 AOSP MMS/Inverted Mms.apk with WORKING MMS messages!!!!

Here is the first known working AOSP MMS with Emoji support, 160 character split, gesture support, full timestamps, etc.
All other MMS apk's seem to crash when sending/receiving MMS messages. This one has been tested working with Jellywiz (a JB TW based ROM). It should work with all ICS/JB TW ROM's, but I need your help to test others.
Instructions to install:
- Download file
- Make a backup of your TW mms.apk (this is usually named SecMMS.apk) by adding ".bak" without the quotes, at the end of the filename.
- Using your favorite file explorer with root capabilities, copy the Mms.apk into the /system/app folder.
- Change permissions (I didn't when I was testing, but you should anyway) as follows: rw-r--r--
- Reboot phone.
- WIN.
All credit for the file goes to beanstown106. This was an apk in his awesome Custom ROM builds. I simply had the good idea to extract it and see if I could get it working with any JB-based TW builds.
Update: Uber, the man with the theming hand, helped me get a themed version based on this file. It was still in testing because I noticed a few glitches when he went radio silent. So, I will release what he had until then for you guys. I tried themeing it further, but I'm nowhere near his level of talent. That being said, it's not perfect, but it's pretty good. Enjoy.
Without further ado, enjoy.
Tested working on:
Jellywiz RLS8
CleanROM 2.5
I used this on my CleanRom 2.5 install working great.
Sent from my SCH-I535 using xda premium
Perfect. Thanks for the reply.
The pop up isn't working for me. I'm using frosty jb
Sent from my SGH-T999 using xda premium
I've actually been using an AOSP messaging apk for about 3 weeks now without any problems whatsoever. Wish I would've known you were looking for this, I'd have hooked a brother up
The quick reply is not working?
Sent from my GT-I9300
BelJanss said:
The quick reply is not working?
Sent from my GT-I9300
Click to expand...
Click to collapse
If you mean the quick message or the quick reply in the pulldown is part of Cyanogen Framework i assume.
Anyways I was called upon the OP to invert and theme the MMS I will post it when im finished and the OP is done testing it :good:
nayoung802 said:
The pop up isn't working for me. I'm using frosty jb
Sent from my SGH-T999 using xda premium
Click to expand...
Click to collapse
The pop up being the quick reply in the notification bar or a separate deal???? If youre referring to the former, that is a JB feature. Unfortunately, this is an ICS based mms,apk.
TechSavvy2 said:
I've actually been using an AOSP messaging apk for about 3 weeks now without any problems whatsoever. Wish I would've known you were looking for this, I'd have hooked a brother up
Click to expand...
Click to collapse
Are you using a JB version or an ICS based mms.apk????
Thanks either way though, wish i would have known =/
ÜBER™ said:
If you mean the quick message or the quick reply in the pulldown is part of Cyanogen Framework i assume.
Anyways I was called upon the OP to invert and theme the MMS I will post it when im finished and the OP is done testing it :good:
Click to expand...
Click to collapse
Cant wait
mexiken said:
Cant wait
Click to expand...
Click to collapse
I meant the pop up quick message. But I just found out that's a jb feature. Thanks anyway
nayoung802 said:
I meant the pop up quick message. But I just found out that's a jb feature. Thanks anyway
Click to expand...
Click to collapse
It pops up on the screen ???? I have JB on my Galaxy Nexus and am running an AOSP MMS, and I don't have this feature. Is it specific to CM10/AOKP ????
mexiken said:
Here is the first known working AOSP MMS with Emoji support, 160 character split, gesture support, full timestamps, etc.
All other MMS apk's seem to crash when sending/receiving MMS messages. This one has been tested working with Jellywiz (a JB TW based ROM). It should work with all ICS/JB TW ROM's, but I need your help to test others.
Instructions to install:
- Download file
- Make a backup of your TW mms.apk (this is usually named SecMMS.apk) by adding ".bak" without the quotes, at the end of the filename.
- Using your favorite file explorer with root capabilities, copy the Mms.apk into the /system/app folder.
- Change permissions (I didn't when I was testing, but you should anyway) as follows: rw-r--r--
- Reboot phone.
- WIN.
All credit for the file goes to beanstown106. This was an apk in his awesome Custom ROM builds. I simply had the good idea to extract it and see if I could get it working with any JB-based TW builds.
As a request, if there is anyone who is any good at theming, I would GREATLY appreciate if we could get this file inverted.
Without further ado, enjoy.
Tested working on:
Jellywiz RLS8
CleanROM 2.5
Click to expand...
Click to collapse
Works on Stock Rooted 4.0.4 TouchWiz
Has anyone found that adding a photo that you took vertically on the camera as an MMS only adds it as horizontally? The receiver confirmed receiving it horizontally as well. Using this on Stock Rooted TouchWiz VRALHE.
open1your1eyes0 said:
Has anyone found that adding a photo that you took vertically on the camera as an MMS only adds it as horizontally? The receiver confirmed receiving it horizontally as well. Using this on Stock Rooted TouchWiz VRALHE.
Click to expand...
Click to collapse
Happens with GoSMS as well, and if you plug your phone into your computer, the images you took vertically will display horizontally in the Windows photo viewer. I believe the pictures are all rotated the same way regardless of how you orient your phone for the picture, and then Samsung is using some kind of proprietary data attached to the image to tell apps what way to orient the photo. The problem is, only Samsung apps read this information.
pdykstra said:
Happens with GoSMS as well, and if you plug your phone into your computer, the images you took vertically will display horizontally in the Windows photo viewer. I believe the pictures are all rotated the same way regardless of how you orient your phone for the picture, and then Samsung is using some kind of proprietary data attached to the image to tell apps what way to orient the photo. The problem is, only Samsung apps read this information.
Click to expand...
Click to collapse
You're right. I believe the main issue is the TouchWiz camera because I tested even CameraZoom app has the same issue but it most likely is tunnel through some TouchWiz framework to function so that's why. My guess is AOSP camera would work fine if only it was possible to get it working on a TouchWiz ROM however.
A few MMS apps work with emoji. Make sure you are rooted, push it to your system apps, and fix permissions. Reboot and done.
Sent from my SCH-I535 using xda premium
Yes it pops up on the screen like quick reply style. I'm not really sure wat roms carry em but I'm using liquid smooth and I have a galaxy 3. I'm not sure which other ones have the feature
Sent from my SGH-T999 using xda premium
Thanks for uploading this for us.
I also extracted the MMS.apk from CM10 because I also wanted the quick reply feature and it worked, but after a while I kept getting FC.
Here is a screenshot of the quick reply in the notification bar:
{
"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"
}
Here is a screenshot of the pop up:
phillysdon04 said:
Thanks for uploading this for us.
I also extracted the MMS.apk from CM10 because I also wanted the quick reply feature and it worked, but after a while I kept getting FC.
Here is a screenshot of the quick reply in the notification bar:
Here is a screenshot of the pop up:
Click to expand...
Click to collapse
you probably recieved a picture message. If you have a picture in the thread and you try to see it, the app will close unfortunately.

Categories

Resources