Help me removing text on lockscreen - Sony Ericsson Xperia Mini, Mini Pro, Xperia Pro, A

The image below shows some text below the lockscreen slider. How do i remove it? What should i edit JARs or APKs ??? Please Help
{
"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"
}

If you have custom rom, you should ask developer of this rom.

this might be in lockscreen apk. decompile it using apktool.

metalrawk said:
this might be in lockscreen apk. decompile it using apktool.
Click to expand...
Click to collapse
There is no such thing as lockscreen apk..
“It is better to keep your mouth shut and appear stupid than to open it and remove all doubt.” - Mark Twain.
It is in framework-res.apk.. decompile it, in res/values/strings.xml, on the last two lines you will see a lines with
Code:
[B]<string name="text_lock_left">Sony Ericsson</string>[/B]
Code:
[B]<string name="text_lock_right">XperiaMiniPro</string>[/B]
that is where we define what text to show.
In res/layout,
in keyguard_screen_tab_unlock_land.xml <-- line 24 and 25,
the code
Code:
[B]<TextView android:textAppearance="?textAppearanceSmall" android:textStyle="bold" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="5.0dip" android:layout_marginBottom="4.0dip" android:text="@string/text_lock_left" ...[/B]
and
Code:
[B]<TextView android:textAppearance="?textAppearanceSmall" android:textStyle="bold" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginRight="5.0dip" android:layout_marginBottom="4.0dip" android:text="@string/text_lock_right" ...[/B]
and keyguard_screen_tab_unlock.xml, line 20 and 21, the code just the same,
that is where the strings is being called.
If you want to edit the text, just change in strings.xml.
if you want to remove it, 1 way is to remove from those 3 xml files OR just make the text blank
Code:
<string name="text_lock_left"> </string>
in strings.xml..
either way, you need to:
decompile the apk,
make the changes,
recompile back,
use TheGrammarFreak method if you wish, that 2 xml files in res/layout and also the resources.arsc is the one you need to drag and drop into your existing framework-res.apk
good luck..

feed3 said:
There is no such thing as lockscreen apk..
“It is better to keep your mouth shut and appear stupid than to open it and remove all doubt.” - Mark Twain.
It is in framework-res.apk.. decompile it, in res/values/strings.xml, on the last two lines you will see a lines with
Code:
[B]<string name="text_lock_left">Sony Ericsson</string>[/B]
Code:
[B]<string name="text_lock_right">XperiaMiniPro</string>[/B]
that is where we define what text to show.
In res/layout,
in keyguard_screen_tab_unlock_land.xml <-- line 24 and 25,
the code
Code:
[B]<TextView android:textAppearance="?textAppearanceSmall" android:textStyle="bold" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="5.0dip" android:layout_marginBottom="4.0dip" android:text="@string/text_lock_left" ...[/B]
and
Code:
[B]<TextView android:textAppearance="?textAppearanceSmall" android:textStyle="bold" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginRight="5.0dip" android:layout_marginBottom="4.0dip" android:text="@string/text_lock_right" ...[/B]
and keyguard_screen_tab_unlock.xml, line 20 and 21, the code just the same,
that is where the strings is being called.
If you want to edit the text, just change in strings.xml.
if you want to remove it, 1 way is to remove from those 3 xml files OR just make the text blank
Code:
<string name="text_lock_left"> </string>
in strings.xml..
either way, you need to:
decompile the apk,
make the changes,
recompile back,
use TheGrammarFreak method if you wish, that 2 xml files in res/layout and also the resources.arsc is the one you need to drag and drop into your existing framework-res.apk
good luck..
Click to expand...
Click to collapse
you need to see forum rules. dont disrespect me or any other member of forum, its clear that i didn't know much about how to remove it but I tried helping him. by lockscreen apk, i meant that apk in whick lockscreen is contained, that might be home.apk too. and there is no cons in trying, i'm not telling him to brick his phone.
and yeah, i'm currently not active in forum but i replied to his thread because i know him personally.

@feed3 , Thank you very much . It worked . This was the kind of reply i was looking for so that i can change the text my self. I did not need to drag drop any resource.arsc . APK tool took care of it
Yaaaayyyy......

metalrawk said:
you need to see forum rules. dont disrespect me or any other member of forum, its clear that i didn't know much about how to remove it but I tried helping him. by lockscreen apk, i meant that apk in whick lockscreen is contained, that might be home.apk too. and there is no cons in trying, i'm not telling him to brick his phone.
and yeah, i'm currently not active in forum but i replied to his thread because i know him personally.
Click to expand...
Click to collapse
Ahhh... No, it is not to disrespect but solely to correcting your statementnd and how do you disrespect my answers in other thread? So, it is totally a fair deal to me. You should read your answers first. Btw, thanks for your kind respond. Will hit thanks for ya, seriously, that is my humble and honest thanks..

Related

Change Carrier Name in AOSP roms

How to create a custom eri.xml files to change the carrier name in AOSP roms.
Instructions lower are for making your own.
{
"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"
}
(((Prerequisites)))
1. Android Device (doesn't have to necessarily be a phone)
2. Root
3. Working adb connection to phone
4. 7zip
5. HxD or another hex editor
(((How To)))
1. Connect your phone and mount your it with adb.
2. use adb to pull the framework-res.apk file from the phone
3. open the framework-res.apk file with 7zip
4. go into the res/xml folder
5. pull eri.xml from the zip file and open with HxD or your favorite hex editor
6. scroll down until you find the provider name (usually sprint)
7. Change the name to whatever you want. WARNING! Depending on your phone you can have as little as 9 characters available all the way to 16. It depends on the phone. I have found that the Hero CDMA only has 9.
8. Save eri.xml, and copy it back into the zip file via drag and drop into 7zip.
9. Using adb, push the file back onto the phone. You may have to reset it to get it to show up.
I used 7zip and deleted the eri.xml file from framework-res.apk. I had found an eri.xml file from another ROM that is viewable in IE; after editing the file I pushed it to /data/. works fine and you don't have to mess with hex editors.
Tried it with my Hero and some of my custom Android 2.2 Froyo,but
don`t find provider name at "eri.xml"
Only this:
VersionNumber...NumberOfEriEntries...EriFileType...EriFile...1357...12...1...Id...CallPromptText...CallPromptId...0...CallPromptId0...CallPromptId1...2...CallPromptId2...RoamingIndicator...IconIndex...IconMode...EriText...AlertId...EriInfo...64...T-CDMA 64...65...T-CDMA 65...66...T-CDMA Ext 66...67...T-CDMA Ext 67...68...T-CDMA Roam 68...69...T-CDMA Ext 69...70...T-CDMA Roam 70...71...T-CDMA Ext 71...72...T-CDMA Ext 72...73...T-CDMA Roam 73...74...T-CDMA Ext 74...75...T-CDMA Roam 75.......`......
Click to expand...
Click to collapse
If you don't see it then it may just not have been set on build time. Did you build it yourself?
Either way it should be at this address in the hex edior:
Line: 000002D0
You have the column space from 02 to 0A to edit.
However I would side with TheDanimal on this. It would be easier to just find the xml that you can open in a text editor and then push to /data but I have never done this. Hey TheDanimal! does there need to be directory structure there like in metamorph?!
here is the contents of my eri.xml:
- <EriFile VersionNumber="1357" NumberOfEriEntries="1" EriFileType="1">
<CallPromptId Id="0" CallPromptText="CallPromptId0" />
<CallPromptId Id="1" CallPromptText="CallPromptId1" />
<CallPromptId Id="2" CallPromptText="CallPromptId2" />
<EriInfo RoamingIndicator="128" IconIndex="1" IconMode="0" EriText="Verizon Wireless" CallPromptId="0" AlertId="0" />
</EriFile>
I guess deleting it from framework-res.apk makes it look elsewhere for the file. I posted the eri.xml I use. I had to zip it because it won't let me upload a .xml
@TheDanimal - Awesome man! And this also lifts the 9char restriction! 10chars+ for u!
Now if I could just find out where to change the word 'Phone' for the center rosie button...
Hm,deleted "eri.xml" from framework and pushed framework back to
phone,then used attached "eri.xml" and pushed to /data/ but nothing.
Only deleting "eri.xml" the same,still T-Mobile there
You may have to use a hex editor then. I deleted the eri.xml out of framework before i zipped and signed my ROM. I'm also using an AOSP 2.1 build.
That works fine for a sprint phone. Any idea where Verizon is hiding the carrier name? Its not in eri.xml, I've looked.
sent by an Epic4g through the cosmos
@raiderep - AOSP is not carrier specific. Actually the carrier name is something of just a stickit really. I am on cellular south but it will say sprint by default cause thats what the builder put as the carrier name. Maybe the version your running is modified to have it shown somewhere else?
This method will work on European Milestone?
yurasts said:
This method will work on European Milestone?
Click to expand...
Click to collapse
Damn dude, sorry so late on posting, but yeah I think so.... I would definitely do a nandroid first before trying it
Followed ur method to a "T". reboot and its black. after unlocking the phone it just comes up with a bunch of forcloses.
May be something odd on that specific phone... Just to ask (cause I am sorry I didn't earlier) but are you runnin aosp or sense rom? I have never tried it with a sense rom so cannot confirm that it works....
This method doesnt work on milestone =[
hexskrew said:
May be something odd on that specific phone... Just to ask (cause I am sorry I didn't earlier) but are you runnin aosp or sense rom? I have never tried it with a sense rom so cannot confirm that it works....
Click to expand...
Click to collapse
Aosp 0992
10 Char
just edit /system/etc/spn-conf.xml.Change the name to whatever u want and adb shell stop then adb shell start
This method i guess will not work on GSM Phone but only CDMA Phones

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

[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

[GUIDE]How to Create your own theme for android apps[GUIDE]

Android App Theming Guide(Self)​
This is my guide on how to create themes for Android Apps.
First lets start with desktop preparation.
Tools you need
Decompiling tool : apktool
Image Editor : Adobe Photoshop(paid) or Photoscape(Free)
IDE : Notepad++ (one of the best code reading tool)
Tools and SDK : Android SDK with any API(API-10 if you want to theme only for SGY)
1.Download apktool and extract the files in windows root directory (windows) or add the directory where aptool files are in to PATH
2.Navigate to directory where the apk file is using cmd and type
Code:
apktool -v d filename.apk destinationdir
4.Now you have the folder with all the xml files and images which are now in human readable format.
Reserved
Image files​
First, Lets start with editing the image files..
Before that android uses png image files mostly as this format contains transparency and alpha stored in image and it is light.
The two most used image files are .png and .9.png.
The file .png can be edited by the photo editor i have posted but the .9.png requires a seperate care.
For editing .9.png first you have to use normal photo editor to edit the image and then drag the resulting png image into the draw9patch file in sdkdirectory/tools.
So What is this .9.png????
Unlike normal png files this .9.png files contain information for expansion of the image according to the content inside.
With the draw9patch draw black borders to the edges what you feel that has to be expanded.
This is how the draw9patcher screen looks like
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
XML Files ​
Now the second part is the xml files..
These are present in res folder.
Android uses xml files for the user interface part of the app and Java for the logic.XML files are the very important files used by an Android App.
XML files are for Layout,Manifest values..etc
We are not going to tamper with these xml files a lot.
The basic operations using XML files are editing the layout and animations or drawables etc.Also Xml editing is used to change string values in APP.
You can also add additional image to android apps.This can be exactly done by,
Choose the required image and put it in /res/drawable folder.
Now open the folder values inside res and open public.xml using Notepad++ and go to the last line of type drawable (incase of image) or any other depending on resource and create a new line like
HTML:
<public type="drawable" name="imagename" id="" />
In the place of id put the id of your previos line incremented by 1.It is in HEX so for example if my previous line ID is 0x750395f then the id for this line will be 0x7503960
SMALI FILES
smali files are present in the folder src.This is somwhat tricky part as these are dalvik-bytecodes which are of low level language and are similar to the java files you write.These are the files you have to modify in order to change the app permissions or if you want to mod the app by customising features and adding additional features.You can find more information of smali here
Tip:If you find smali difficult just write your code in java and build it.After that decompile the resulting apk and take the smali code from it...
Now once you are ready with all just build app by
Code:
apktool b WorkingFolderName appname.apk
Pls dont forget to sign your app
Press Thanks is this was helpfulll :good:
Thanks and Gud luck
optimus
Nice guides
ROM EVOLUTION X3
KERNEL HELL FUSION
ALINS JB THEME + EVOLUTION S3 STATUS BAR.
Thanks
Really needed it.
Sent from my GT-S5360 using xda app-developers app
Nice guide
PHONE SLOW CLICK ME?
_____________________________________
"No one lives in the slums because they want to. It's like this train. It can't run anywhere except where its rails take it."- Cloud[FFvii]"​
Is there a more simpler way of creating themes? Like using drag and drop method? Can someone provide a link?
nice, will try it on my phone but it is s6312
hope that it works
So, if I want to change my stock ROM pop up look like ICS, I must edit 9.png ?
metalhead\m/ said:
nice, will try it on my phone but it is s6312
hope that it works
Click to expand...
Click to collapse
Nice Guide

[Tutorial][VIDEO] Add/integrate apps into Settings app!

Hello!
I wanted to make this little tutorial since many people wounder how to add certain apps to settings app
Things you will need
Apktool: http://forum.xda-developers.com/showthread.php?t=1755243
Notepad++: http://notepad-plus-plus.org/download/v6.3.2.html
The procedure
Video tutorial http://www.youtube.com/watch?v=75ZzDs3seqw
1: Download and extract apktool into a folder
{
"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"
}
2: Extract Settings.apk and framework-res.apk from your ROM to the apktool folder
3: Open up cmd and go to the APKtool folder
4: Install the framework
5: Put the app you want to add in the apktool folder then decompile Settings and the app
6: Open the settings folder and navigate to /res/values and open Strings.xml with notepad++
7: Add the name of the app furthest down
8: Navigate to /res/xml and open settings_headers.xml
9: Add this
Code:
<header android:icon="@drawable/..." android:title="@string/...">
<intent android:targetPackage="..." android:action="android.intent.action.MAIN" android:targetClass="..." />
</header>
10: navigate to the decompile app you want to add and open androidmanifest.xml
11: Copy the name at the top
12: Then paste here
13: Hold on your screen and select shortcuts
14: Choose activities
15: Scrool to the app and then press it
16: Enter what you found there here
18: Choose a name for the icon you will be using
19: Go to the app you will be adding and navigate to /res/drawable-****
20: Copy the icon to Settings/res/drawable-**** and rename it to what you put in the XML file
21: And now lets build it
22: When the building is done navigate to Settings/dist/ adn there is you new Settings app
I will add a zip in the attachments, just put the Settings app in /system/app/ folder in the zip then move it to your phone and flash it
Thanks alot.
Apps/Setting Tutorial
Excellent work RomWiz
Found this to be a very helpful tutorial - cheers for the info
TheCrazyClub - Xperia Arc S
Nice!
Its great to have people like you sharing skills in a simple way. I think some people make it overtly complicated to keep some mystique about such things,or they are useless at communication skills
Sent by backwards engineered alien technology.....
Video is up
One thing I want to know is how do I remove the app icon from my drawer, I don't want it hidden by means of a launcher options, I want it completely removed from the drawer, now I found a tutorial on how to do it and I successfully removed DSPManager's icon, however, I came across an error when I tried to remove the icon of Superuser, apktool gives me error during repacking proccess. Can anyone help me?
annson08 said:
One thing I want to know is how do I remove the app icon from my drawer, I don't want it hidden by means of a launcher options, I want it completely removed from the drawer, now I found a tutorial on how to do it and I successfully removed DSPManager's icon, however, I came across an error when I tried to remove the icon of Superuser, apktool gives me error during repacking proccess. Can anyone help me?
Click to expand...
Click to collapse
Post the error.
Skickat från min GT-P1000 via Tapatalk 2
RomWiz said:
Post the error.
Skickat från min GT-P1000 via Tapatalk 2
Click to expand...
Click to collapse
Here sir.
annson08 said:
Here sir.
Click to expand...
Click to collapse
There is a error in layout folder
Redo it and try again, if it wont work just send me the apk.
Skickat från min GT-P1000 via Tapatalk 2
RomWiz said:
There is a error in layout folder
Redo it and try again, if it wont work just send me the apk.
Skickat från min GT-P1000 via Tapatalk 2
Click to expand...
Click to collapse
It really doesn't work, I even trien to decompile it then recompiling it without changing anything, still the same.
Here's the file, thanks.
annson08 said:
It really doesn't work, I even trien to decompile it then recompiling it without changing anything, still the same.
Here's the file, thanks.
Click to expand...
Click to collapse
Will send you the apk when its fixed.
Edit: Check PM
Skickat från min GT-P1000 via Tapatalk 2
great tutorial..
helped me a lot.
is it possible to an applications activity to checkbox...
Added a new flasher, you should see the Settings app after flashing now.
Get value for setting
Hello! Thank you for the tutorial. Is there any way to access the setting from another application? For example, if I added something with a key "my_new_pref", could I get it's value anywhere outside of Settings.apk?
tnx

Categories

Resources