transparent notification menu - Wildfire Themes and Apps

Hello yo'all
I've searched many times to make my notification pull-down menu transparent, and I've finally managed to get it work. I know that there are lots of themes that do so, but I've choosen to modify the files myself. And I know that there are already tutorials, but I couldn't find one that works with CyanogenMod 7. So here is how I did it (and TBH, it is bloody easy).
screen cap: first image is without the notification drawer, the second is the notification drawer halfway the screen and the third one is the notification drawer totally expanded.
{
"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"
}
Note that I assume you already know the basics on how to work with adb.
Two things most be done to get the background of the notification menu transparent:
1. You must make the background file transparent
2. If necessarily, you must adapt StatusBarService.smali
PART 1: MAKE THE RIGHT FILE TRANSPARENT
Step 1: get SystemUI.apk on your computer
adb pull system/app/SystemUI.apk
Click to expand...
Click to collapse
Step 2: modify/replace shade_bg.png
Open SystemUI.apk in winzip, winrar or 7zip or wathever. WARNING: DO NOT EXTRACT THE APK!
browse to res\drawable-mdpi and look for "shade-bg.png". Copy it manualy out of the apk.
Edit the image with photoshop or gimp or wathever to make it transparent. Save you transparent file as shade-bg.png
Take your new image and put in manualy in the res\drawable-mdpi of the apk, so that it will replace the old one. When asked, choose for "no compression" (like store).
Step 3: put SystemUI.apk back on your phone
Reboot into recovery
go to "mounts an storages"
select "mount /system"
you can now push your new SystemUI.apk to your phone. I always make a backup, for in case I cause a bootloop or something:
adb shell
cd system/app
mv SystemUI.apk SystemUI.bak
exit
adb push SystemUI.apk system/app
adb reboot
Click to expand...
Click to collapse
Your phone should reboot now, and normally you should have your transparent lockscreen. If that isn't the case, you have to adjust StatusBarService.smali
PART TWO: ADJUSTING StatusBarService.smali
Step 1: get SystemUI.apk and framework-res.apk on your computer
adb pull system/framework/framework-res.apk
Click to expand...
Click to collapse
So now framework-res.apk and SystemUI.apk (with the transparent image) are in the same directory.
Step 2: decompile systemUI.apk
Download apktool from the attachment and extract it in the same folder as where framework-res and SystemUI are located.
open the command line and browse to that same directory
install your framework by typing:
apktool if framework-res.apk
Click to expand...
Click to collapse
Decompile SystemUI.apk by typing:
apktool decode SystemUI.apk
Click to expand...
Click to collapse
You will notice that you now have a folder called "SystemUI".
browse to SystemUI/smali/com/android/systemui/statusbar and open StatusBarService.smali in, for example, notepad++.
Search for the line
invoke-direct/range {v0 .. v5}, Landroid/view/WindowManager$LayoutParams;-><init>(IIIII)V
Click to expand...
Click to collapse
Right above that line you can read
const/4 v5, 0x2
Click to expand...
Click to collapse
That should be changed to
const/4 v5, -0x3
Click to expand...
Click to collapse
Save the file.
go back to the folder where you have apktool etc. Rename SystemUI.apk to SystemUI-original.apk.
Open the command line and type
apktool b -f SystemUI SystemUI.apk
Click to expand...
Click to collapse
You will now have your SystemUI.apk
Step 3: put SystemUI.apk back on your phone
Reboot into recovery
go to "mounts an storages"
select "mount /system"
you can now push your new SystemUI.apk to your phone. I always make a backup, for in case I cause a bootloop or something:
adb shell
cd system/app
mv SystemUI.apk SystemUI.bak
exit
adb push SystemUI.apk system/app
adb reboot
Click to expand...
Click to collapse
That's all. Hope I can make someone happy with this

Cool Good job

What is the transparent part? Dont see anything in the screenshot :$ Maybe im blind?
Sent from my HTC Wildfire using XDA App

tobitronics said:
What is the transparent part? Dont see anything in the screenshot :$ Maybe im blind?
Sent from my HTC Wildfire using XDA App
Click to expand...
Click to collapse
What you see is the general settings menu, with the notification menu on top of it. But i myself was doubting if it was clear I will add more screenshots tomorrow!
Erwin
EDIT: better screen caps in the original post!

Related

Basic Framework Edits

this is a very basic guide to change colors and maybe icons if you've suitable icons..
I don't know anything about signing apks and stuffs but I did the following steps and it worked for me...
THINGS YOU'LL NEED :
7zip
Any Imaging Software that can handle PNG files(I use PHOTOSHOP)
FRAMEWORK-RES.APK file
STEPS :
Right Click on your framework-res.apk
Click 7-zip->Open Archive
go to res folder
Extract drawable-mdpi anywhere on your pc
edit the files you want with your imaging software and save them
now drag the modified files to the drawable-mdpi folder in the zip file
Open the drawable-mdpi folder in your zip file
select the modified files, hold and drag to the zip archive and leave it
it will ask you to add the files or not
just click yes
Click to expand...
Click to collapse
Close the file
Push your framework into your phone
(I use Xrecovery mode for pushing it, cuz its safe)
Code:
[B]busybox cp /sdcard/framework-res.apk /system/framework/framework-res.apk[/B]
---------------------------END------------------------------------------
IMPORTANT TIPS
if you're upto modifying colors than you may notice that some files have extension .9.png they need special way to edit (actually not so special lol)
just open them in your imaging program
you'll notice few black dots and black border
something like this
{
"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"
}
keep those black things as they are, and mess around with the other colors
-----------------------------END QUOTE----------------------------------
for now I've just tested this with colors and few icons and it works
-------------------------------------------------------------------------------------
if anyone needs this framework (I changed the green color to orange, changed the lock symbol to stock it was too small and colored some of the network indicators from white to green lol)
FRAMEWORK-RES.APK.7z
Good. i tried to change the xml files. but the process needed me to use apktool to decompile the framework-res.apk.
when i used original framework-res-apk, it decompiled successfully, but when I used gingerbread framework-res.apk by pulpoff, errors about the .9.pngs occur.
propc said:
Good. i tried to change the xml files. but the process needed me to use apktool to decompile the framework-res.apk.
when i used original framework-res-apk, it decompiled successfully, but when I used gingerbread framework-res.apk by pulpoff, errors about the .9.pngs occur.
Click to expand...
Click to collapse
xml is just too advance for me lol
yes for editing xml files it needs to be decompiled....
maybe you need to edit 9.png files the way I did
why dont you give it a try
Thx
I searched for a TuT
Now i can give my cellphone my own looking
A question can i replace icons white icons form a X10 theme or so?
KINGMANI said:
Thx
I searched for a TuT
Now i can give my cellphone my own looking
A question can i replace icons white icons form a X10 theme or so?
Click to expand...
Click to collapse
yeah.. i used gingerbread theme's icons and they worked however you can only replace those which have the exact same name you know not everything is possible lol
nice work. can you explain how to change battery icon, i want it show percent, like 58% in front of the icon. i think that's what people need most
I see now, that in framework 'res' folder, in 'drawable-land-mdpi', we have stock layouts of Lock Screen (i mean, stock bar for unlock move and sound).
How can I set it to default? I don't like that SE original LockScreen theme...
Find all the icons named as SEMC_slidingtab and replace them the way you want
mercury_beta said:
nice work. can you explain how to change battery icon, i want it show percent, like 58% in front of the icon. i think that's what people need most
Click to expand...
Click to collapse
Most people use widgets for that.. lol
please follow the tutorial
how change icons
mislatero said:
please follow the tutorial
how change icons
Click to expand...
Click to collapse
use desktop visualizer for that.. its available for free in market

[THEME]Xperia theme for OpenSwift

I've just finished making the first version of my theme. Note that this is a very early version of the theme.
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"
}
How to install it:
There are two ways of putting the theme:
1. With Root Explorer
2. With ADB
Tutorial for Root Explorer:
1. Download the theme and place it on your SD card
2. Copy it to /system/framework/ and replace the existing framework-res.apk
3. Reboot your phone
Tutorial for ADB:
1. Download Android SDK and put it in C:\
2. Change your cmd destination to C:\android-sdk-windows\platform-tools
3. Put the framework-res.apk in C:\android-sdk-windows\platform-tools
3. Connect your phone(make sure USB debugging is turned on)
4. Open cmd
5. Type in order:
-adb remount
-adb push framework-res.apk /system/framework/framework-res.apk
-adb reboot
Click here to download the theme!
Thanks for the theme! btw, wats the dark blue space in the taskbar?
AntonJrL said:
Thanks for the theme! btw, wats the dark blue space in the taskbar?
Click to expand...
Click to collapse
The background of the taskbar icons is blue.
How do I get them ????? please tutorial.....
pekmezz said:
How do I get them ????? please tutorial.....
Click to expand...
Click to collapse
There are two ways of putting the theme:
1. With Root Explorer
2. With ADB
Tutorial for Root Explorer:
1. Download the theme and place it on your SD card
2. Copy it to /system/framework/ and replace the existing framework-res.apk
3. Reboot your phone
Tutorial for ADB:
1. Download Android SDK and put it in C:\
2. Change your cmd destination to C:\android-sdk-windows\platform-tools
3. Put the framework-res.apk in C:\android-sdk-windows\platform-tools
3. Connect your phone(make sure USB debugging is turned on)
4. Open cmd
5. Type in order:
-adb remount
-adb push framework-res.apk /system/framework/framework-res.apk
-adb reboot
When giving theme to people then you must package in a more normall fashion. adb pushing is a method used when developing the theme
pashinator said:
When giving theme to people then you must package in a more normall fashion. adb pushing is a method used when developing the theme
Click to expand...
Click to collapse
Yes, but I don't know how to make update.zip files, which can be installed via recovery. Can you tell me how to do that please?
how to change the destination in cmd ... pls tell me
pekmezz said:
how to change the destination in cmd ... pls tell me
Click to expand...
Click to collapse
I have a video about that on YouTube. Check it out: http://www.youtube.com/watch?v=3bBSVXAdeXg
can I ask you something ...... when I put the topic on the sd cad and when I go to root and install the theme only when I reboot it appears to me some mistakes ....... would it be better to put it through cmd .....??????
pekmezz said:
can I ask you something ...... when I put the topic on the sd cad and when I go to root and install the theme only when I reboot it appears to me some mistakes ....... would it be better to put it through cmd .....??????
Click to expand...
Click to collapse
Did you set the permissions of the framework-res.apk file to rw-r-r?
I tried my theme with cmd. It worked well.
To improve the xperia-effect there is a launcherhttp://forum.xda-developers.com/showpost.php?p=11856283&postcount=43
Sent from my GT540 using XDA Premium App
pekmezz said:
can I ask you something ...... when I put the topic on the sd cad and when I go to root and install the theme only when I reboot it appears to me some mistakes ....... would it be better to put it through cmd .....??????
Click to expand...
Click to collapse
Yes, I think. I tested it with cmd, worked like a treat!
meddistar said:
To improve the xperia-effect there is a launcherhttp://forum.xda-developers.com/showpost.php?p=11856283&postcount=43
Sent from my GT540 using XDA Premium App
Click to expand...
Click to collapse
Thanks for the launcher!
Search username daneshm90 on xda
He haz loads of scripts and one that makez update zip and signs them
Mark
I will try to make ur theme for 2.3 cm7
Mark
So i found the frameworks for xperia x8 and started work and made this
Its finished but some things look bad so will fix and upload tomorrow. Update.zip format.
Mark
pashinator said:
So i found the frameworks for xperia x8 and started work and made this
Its finished but some things look bad so will fix and upload tomorrow. Update.zip format.
Mark
Click to expand...
Click to collapse
This is for Gingerbread, right?
it will work on gingerbread
Yes man i also needed to patch up today so later tonight i will upload
Mark

[GUIDE][ICS]Use PNG Images as Notification Background for Stock / Stock Based ROM

Now here's tutorial on how to put any PNG image as notification pulldown background..
Here I'm using lidroid's modified SystemUI, should work on other stock based SystemUI
First you need to decompile your SystemUI.apk
Open res/values/drawable.xml with any good xml editor (here I'm using NP++)
Delete this line:
Code:
<item type="drawable" name="notification_tracking_bg">#xxxxxxxx</item>
the #xxxxxxxx value maybe vary in each ROM, just delete the whole line )
Save
Prepare your desired .png file, can be opaque or transparent, and can be in any size/dimension (the system will resize it to match the screen)
Rename it to notification_tracking_bg.png and put it in res/drawable-hdpi
Recompile your SystemUI.apk, push to your phone and you are.......
Done !!
The result will be looked like these :
{
"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"
}
Remember to
ALWAYS MAKE BACKUP !!
before doing anything above..
I don't responsible of any negative things like bootloop, bricked device, burned SD card, you late to go to school, or the third world war caused by the guide above..
You have been warned !!
Click to expand...
Click to collapse
Good luck..
iiandskater said:
Now here's tutorial on how to put any PNG image as notification pulldown background..
Here I'm using lidroid's modified SystemUI, should work on other stock based SystemUI
First you need to decompile your SystemUI.apk
Open res/values/drawable.xml with any good xml editor (here I'm using NP++)
Delete this line:
Code:
<item type="drawable" name="notification_tracking_bg">#xxxxxxxx</item>
the #xxxxxxxx value maybe vary in each ROM, just delete the whole line )
Save
Prepare your desired .png file, can be opaque or transparent, and can be in any size/dimension (the system will resize it to match the screen)
Rename it to notification_tracking_bg.png and put it in res/drawable-hdpi
Recompile your SystemUI.apk, push to your phone and you are.......
Done !!
The result will be looked like these :
Good luck..
Click to expand...
Click to collapse
when i finished modifying and pushed the new systemui.apk to my phone, i lost my statusbar. which step i was wrong in ? i'm using JJ rom. Need your help to do this guide course im' very like this mod.
Jellybread v2 ROM systemUI.apk doesnt need to be modified, only change the background png, but thanks anyway
Oohhlala said:
when i finished modifying and pushed the new systemui.apk to my phone, i lost my statusbar. which step i was wrong in ? i'm using JJ rom. Need your help to do this guide course im' very like this mod.
Click to expand...
Click to collapse
Did you just recompile and push? Or did you do something between those?
Ticklefish said:
Did you just recompile and push? Or did you do something between those?
Click to expand...
Click to collapse
recompile then using winrar to extract .arsc file and add it back to recompiled apk with " store" option, copied to sdcard and using rootexplorer to move to system/app, reboot and lost the statusbar
Oohhlala said:
recompile then using winrar to extract .arsc file and add it back to recompiled apk with " store" option, copied to sdcard and using rootexplorer to move to system/app, reboot and lost the statusbar
Click to expand...
Click to collapse
You need to make sure the new apk is signed. Easiest way of doing this is copy the META-INF folder from the original into the new one.
Android won't run unsigned apps, you see.
Ticklefish said:
You need to make sure the new apk is signed. Easiest way of doing this is copy the META-INF folder from the original into the new one.
Android won't run unsigned apps, you see.
Click to expand...
Click to collapse
use winrar to add META folder ? which option of " compression method " have to chose ? " store " is right ?
when i dit it again, after modified i tried to compile but i had got this error ? can you tell me what wrong with me ? thanks
I'm able to do everything right up to recompile I always come up with an error could somebody help
Sent from my LT18i using xda premium

[MOD]Tutorial How to change LockScreen Clock Font EASY

Hey Guys
I discovered this
This time I bring a way to change the clock style from Xperia STOCK to ICS clock font
It is VERY EASY
ICS LOCK SCREEN CLOCK XPERIA STOCK LOCK SCREEN CLOCK
{
"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"
}
REQUERIMENTS:
1. Extracted Framework.jar from your Android (/system/framework) and copy in your PC
2. smali.jar and baksmali.jar (Into a new folder on PC) See attachments Or Download Here View attachment 1849757
3. 7zip or WINRAR
4. Notepad ++ or any text editor (recomended notepad++)
5. cmd in Windows
HERE WE GO!
1. COPY framework.res into extracted folder decomjar (with smali.jar and basksmali.jar)
2. extract classes.dex from framework.jar using 7zip or Winrar
3. Is time to open the terminal... Go to the directory where the FOLDER decompjar is content.
4. Press Shift button and right-click. select open a command window here
5. After open the terminal Write this comand:
java -jar baksmali.jar -o classout/ classes.dex
It is for Decompile the file
6. find this file DigitalClock.SMALI in this directory: \decomjar\classout\com\android\internal\widget
7. open the file and edit
a. find
.field private static final SYSTEM_FONT_TIME:Ljava/lang/String; = "/system/fonts/SoMADigitLigth.ttf"
b. and change for this .
.field private static final SYSTEM_FONT_TIME:Ljava/lang/String; = "/system/fonts/AndroidClock.ttf"
8. after change
a. find:
.prologue
.line 68
const-string v0, "/system/fonts/SoMADigitLigth.ttf"
b. Change for this:
.prologue
.line 68
const-string v0, "/system/fonts/AndroidClock.ttf"
9. SAVE THE CHANGES
10. time to recompile te file Write in the terminal this command:
java -Xmx512M -jar smali.jar classout/ -o new-classes.dex
11. Wait a Few Moments an rename "new-classes.dex" to "classes.dex"
12. Delete classes.dex from framework.jar and Repack the Modded classes.dex
13. Flash into Recovery or replace the file.
ENJOY !!!!
---------------Press THANKS :good: if your like My contribution
Change System/fonts/Somadigilight.ttf
Orochixxx said:
Change System/fonts/Somadigilight.ttf
Click to expand...
Click to collapse
How to Make Clock Font Like This?
undisputedpro said:
How to Make Clock Font Like This?
Click to expand...
Click to collapse
you would need to find line where hours are showed and add bold tag
you can ask mr.tapa to tell you
undisputedpro said:
How to Make Clock Font Like This?
Click to expand...
Click to collapse
add 2 Font Bold Thin + Thin + new style Hour & date bold thin , Minute thin Font
Orochixxx said:
add 2 Font Bold Thin + Thin + new style Hour & date bold thin , Minute thin Font
Click to expand...
Click to collapse
please elaborate, am interested... but am using a CM9.1 rom, hope it will work?
Orochixxx said:
Change System/fonts/Somadigilight.ttf
Click to expand...
Click to collapse
Yes you're right That's much more simpler than the OP
via XDA for Timescape™
how could you get
that effect on the lock screen
Font in lockscreen
Nice TUT but I need a little help.
How do you disable ALL caps in lock screen? Like the Date, Emergency call, charging, etc... I got a framework-res.apk file from FB group and modified it to disable auto-rotate in lockscreen. Was able to correct it by editing bools.xml and set
<bool name="config_enableLockScreenRotation">false</bool>
Also found, all caps tag so set it to false like the one below. (Still under bools.xml)
<bool name="config_actionMenuItemAllCaps">false</bool>
It seems to have no effect... Rotation issue is resolved but I don't like the text to be all caps.. Date, Emergency call, charging, etc... are still showing all caps.. Can someone please guide me where I can disable this ALL CAPS settings for the lockscreen?
Here's a screenshot of what I mean. Hope someone can help.
http://i43.tinypic.com/11ifypw.png
Siddhesh said:
How to Make Clock Font Like This?
Click to expand...
Click to collapse
Spex said:
you would need to find line where hours are showed and add bold tag
you can ask mr.tapa to tell you
Click to expand...
Click to collapse
Whos Mr.Tapa ... I did do all the process of decopiling the framework but now i dont know exactly where to place the "bold tags" and what the syntax for the tags would be.
How do I change the font of this from bold to regular text like previous lollipop releases?

[TIP] How to remove an app's icon from the app drawer of a launcher

This is useful if you're trying to create a shortcut in Settings for a certain app and don't want yet another app in the app drawer or you want something running in the background......
1. First off, go ahead and setup apktool in ubuntu
Link to apktool found http://forum.xda-developers.com/showthread.php?t=1755243 Follow the instructions in that thread
2. Create a folder on your desktop (for the purpose of this guide, name it "folder")
3. Move your apk to your newly created folder, called folder
4. Assuming you've followed the steps in the apktool thread and setup it up correctly, open up a terminal and type in the following commands
Code:
cd Desktop/folder
then
Code:
apktool d yourapp.apk
If you decompiled correctly, you will see something similar to this....MAKE SURE YOU LEAVE YOUR TERMINAL OPEN, DO NOT CLOSE IT OUT!!
{
"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"
}
5. Now, navigate inside your app's decompiled folder and find the AndroidManifest.xml
6. Open the AndroidManifest.xml with any text editor
7. Find the highlighted line as pictured below....
8. Go ahead and remove that line from the AndroidManifest.xml and save/exit out of that
9. Press and hold Ctrl and H
10. Delete the file called "AndroidManifest.xml~"
11. Assuming you paid attention and didn't close out your terminal, go back to it and type in the following
Code:
apktool b yourapp
12. You should see something like this if you followed instructions correctly....
13. Now navigate inside your app's decompiled folder and you should find a folder called "dist". Inside of that, you should see your compiled apk with the change made and ready to be pushed to your device.
Here's a screenshot of a before and after
Just in case, who knows....
Mazda said:
Just in case, who knows....
Click to expand...
Click to collapse
Thanks for this helpful post!!! I needed something like this. Goomanager was getting on my nerves
I need help with deleting multiple icons from one single apk
I want to delete he camcorder and mirror on the evo 3d HTCCamera.apk
I followed your directions, but after I push apk and reboot it doesnt show up at all
mauricio.valladolid said:
I need help with deleting multiple icons from one single apk
I want to delete he camcorder and mirror on the evo 3d HTCCamera.apk
I followed your directions, but after I push apk and reboot it doesnt show up at all
Click to expand...
Click to collapse
For sense ROMs, you'll need to install the framework-res.apk and also the com.htc.resources.apk using apktool before you decompile/compile apks such as the HTCCamera.apk
Mazda said:
For sense ROMs, you'll need to install the framework-res.apk and also the com.htc.resources.apk using apktool before you decompile/compile apks such as the HTCCamera.apk
Click to expand...
Click to collapse
I have them installed, I already made changes to other apks, but its my first time trying to delete the icons and no luck
@Mazda
thx for this thread :good: It works even on windows but new apk needed a new sign (META-INF)
This was pretty helpful, thank you.
Thanks
app is not longer starting after boot completed
Hi,
thank you for the nice tutorial! The problem I have right now with an app where I removed “….category.LAUNCHER” is that the app is not starting at boot completed anymore. When I first install the unmodded app, and thereafter I install my created app without icon, the app is starting after boot completed. Do you know why the modded app is not starting after boot completed?
stan210 said:
Hi,
thank you for the nice tutorial! The problem I have right now with an app where I removed “….category.LAUNCHER” is that the app is not starting at boot completed anymore. When I first install the unmodded app, and thereafter I install my created app without icon, the app is starting after boot completed. Do you know why the modded app is not starting after boot completed?
Click to expand...
Click to collapse
If you're rooted,
Use Leedroid Tweaks to block apps in drawer
Sent from above using Xparent Tapatalk Blue

Categories

Resources