[TIP] Easily customize EQS toggles Sense 5 - HTC One X

Thanks to @langer hans tutorial for HTC One, I was able to easily customize EQS toggles with ES File Explorer. Note that the first 5 quick settings will be the ones displayed on the minor/horizontal QS. Root is required, but the CID part can be overlooked I guess.
All credits go to him. Thank his post here.
langer hans said:
Okay first things first: Huge thanks to @descenpet who brought up this idea again. I myself did this in code, but this one is way easier, so I'll write it up for you.
I'll describe two methods. It's up to you which one you want to use.
The ADB Method:
What you need:
A working adb and a texteditor like Notepadd++ (Not windows notepad! Get a decent editor!)
1.
Get your CID:
Code:
adb shell getprop ro.cid
2.
Pull the needed file from your device:
If your CID is one of the following, pull the file that matches your CID. Only that one, leave the others.
Code:
adb pull /system/customize/ACC/HTC__032.xml
adb pull /system/customize/ACC/HTC__A07.xml
adb pull /system/customize/ACC/HTC__J15.xml
If your CID is not one of the three above:
Code:
adb pull /system/customize/ACC/default.xml
3. Open the pulled file. You find it in the same folder as your adb.
4. Around line 400 you will find the following snippet:
Code:
<item type="integer-array" name="quick_setting_items">
<int>0</int>
<int>1</int>
<int>2</int>
<int>3</int>
<int>4</int>
<int>5</int>
<int>6</int>
<int>7</int>
<int>8</int>
<int>9</int>
<int>10</int>
<int>11</int>
</item>
These are the EQS toggles with the default order. Now look at the following to get an idea what number is what toggle:
Code:
0 "user_card"
1 "brightness"
2 "settings"
3 "wifi"
4 "bluetooth"
5 "airplane"
6 "power_saver"
7 "rotation"
8 "mobile_data"
9 "sound_profile"
10 "wifi_hotspot"
11 "screenshot"
12 "gps"
13 "roaming"
14 "media_output"
15 "auto_sync"
16 "roaming_setting"
17 "music_channel"
18 "ringtone"
19 "timeout"
20 "syn_all_fake"
21 "apn"
Note that not all of the toggle are actually working. 0-12 are tested by me. Be careful with the others...
5. Now it is up to you. You can reorder the single "<int>X</int>" entries, remove some you don't need, and maybe add a GPS toggle. Following is an example:
Code:
<item type="integer-array" name="quick_setting_items">
<int>3</int>
<int>4</int>
<int>2</int>
<int>12</int>
<int>5</int>
<int>9</int>
<int>10</int>
<int>7</int>
<int>11</int>
</item>
Note how I removed three. This will give you the following look of the EQS:
{
"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"
}
6. Save the file
7. Push it back to the device: Remeber Step 2. Use the actual filename you pulled for the 2nd command
Code:
adb remount
adb push default.xml /system/customize/ACC/
8. Reboot youre phone:
Code:
adb reboot
Done, you have successfully reordered your EQS!
The ES File Explorer Method:
What you need:
ES File Explorer and CID Getter from Playtore
1.
Get your CID and remember it with CID Getter.
2.
Open the left menu in ES. (The globe and phone icon)
Go to Root-Explorer under Tools.
Tap Mount R/W
For "/system" tick the RW box.
Save, grant root if requested.
3.
Go into the following folder:
Code:
/system/customize/ACC/
4.
Note the 4 files there.
If the CID you read in step 1 matches one of the filenames: Open that file.
If you have a CID with no corresponding file: Open default.xml
Open with ES Note-Editor, if asked.
5. Scroll to about 95% with the bottom slider. You will find the following snippet:
Code:
<item type="integer-array" name="quick_setting_items">
<int>0</int>
<int>1</int>
<int>2</int>
<int>3</int>
<int>4</int>
<int>5</int>
<int>6</int>
<int>7</int>
<int>8</int>
<int>9</int>
<int>10</int>
<int>11</int>
</item>
These are the EQS toggles with the default order. Now look at the following to get an idea what number is what toggle:
Code:
0 "user_card"
1 "brightness"
2 "settings"
3 "wifi"
4 "bluetooth"
5 "airplane"
6 "power_saver"
7 "rotation"
8 "mobile_data"
9 "sound_profile"
10 "wifi_hotspot"
11 "screenshot"
12 "gps"
13 "roaming"
14 "media_output"
15 "auto_sync"
16 "roaming_setting"
17 "music_channel"
18 "ringtone"
19 "timeout"
20 "syn_all_fake"
21 "apn"
Note that not all of the toggle are actually working. 0-12 are tested by me. Be careful with the others...
6. Tap the top right icon, then "Edit".
7. Now it is up to you. You can reorder the single "<int>X</int>" entries, remove some you don't need, and maybe add a GPS toggle. Following is an example:
Code:
<item type="integer-array" name="quick_setting_items">
<int>3</int>
<int>4</int>
<int>2</int>
<int>12</int>
<int>5</int>
<int>9</int>
<int>10</int>
<int>7</int>
<int>11</int>
</item>
Note how I removed three. This will give you the following look of the EQS:
8. Save the file with tapping the top left arrow and confirm.
9. Reboot youre phone
Done, you have successfully reordered your EQS!
Of course it is advised to save your editied file somwhere, so you can put it back again after you flashed a new version of the ROM
Click to expand...
Click to collapse

Just a note: On different phones you may find different files in /system/custimze/ACC. So even if your CID is one of the 3 I mentioned there, you still want to pull the default file. AFAIK the One X has only the default file anyway.
So the rule is: If you have a file that matches your CID use it, if not use the default.
Gesendet von meinem GT-N5100 mit Tapatalk 4

Nice. Allow me to add little something..
stumble upon and accidentally found an easy way to switch back to aosp style recent app while tweaking on EQS.
1. It's generally is the same as tweaking EQS. Follow the steps provided in OP to grab 'system/customize/ACC/Default.xml'.
2. Find the snippet below and change the value from "true" to "false". The corresponding snippet is just right under the node for EQS.
<app name="SystemUI">
<item type="boolean" name="support_HtcStyleRecentApp">true</item></app>
3. Reboot.
Click to expand...
Click to collapse

Yep, and right below you'll find "support_minor_quicksettings". That one enables horizontal QS

langer hans said:
Yep, and right below you'll find "support_minor_quicksettings". That one enables horizontal QS
Click to expand...
Click to collapse
Dude, how to scroll through the HQS?
Sent from my HTC One X running Sense 5

athulele said:
Dude, how to scroll through the HQS?
Sent from my HTC One X running Sense 5
Click to expand...
Click to collapse
You can't. HTC didn't include that function. You can only reorder your normal EQS to have the 5 you want in horizontal QS.

ok first off thanks "myself11" for the tutorial, been looking for this. but i have an issues with this if anyone knows the solution i would really appreciate it, 5 of the options dont have an icon and just show a white blank square: media output, auto sync, ringtone, timeout, sync all.
another thing, i have been able to enable all of the settings (all 21 of them) and the panel is scrollable for those who wanted to know. i had to edit the file few times for it to accept it, not sure why.

woomera said:
ok first off thanks "myself11" for the tutorial, been looking for this. but i have an issues with this if anyone knows the solution i would really appreciate it, 5 of the options dont have an icon and just show a white blank square: media output, auto sync, ringtone, timeout, sync all.
another thing, i have been able to enable all of the settings (all 21 of them) and the panel is scrollable for those who wanted to know. i had to edit the file few times for it to accept it, not sure why.
Click to expand...
Click to collapse
Some don't have an icon yep. And also some of them don't have a function. That's what HTC included...
Gesendet von meinem HTC One mit Tapatalk 4

langer hans said:
Some don't have an icon yep. And also some of them don't have a function. That's what HTC included...
Gesendet von meinem HTC One mit Tapatalk 4
Click to expand...
Click to collapse
thanks for the info.

Sideline:
Accroding to www.eprice.com.tw hands on HTC One Max, the version of EQS packs on it added ability to customize EQS. There is also a toggle for no disturb mode. So should we expecting? Optimistically, we can expecting customizable EQS on newer Sense 5x equivalent.
Note: Please don't start discussing wether we'll receive any update anymore, it doesn't belong to this thread.
:laugh:

I thought it didn't allow customization, the pictures I've saw just show new toggles adequate to Max features like fingerprint scanner and scribe. Did the writer of the article state that?

myself11 said:
I thought it didn't allow customization, the pictures I've saw just show new toggles adequate to Max features like fingerprint scanner and scribe. Did the writer of the article state that?
Click to expand...
Click to collapse
Positive, the writer has stated the upperside rectangle icon with a pen is edit button.
:good:

HebeGuess said:
Positive, the writer has stated the upperside rectangle icon with a pen is edit button.
:good:
Click to expand...
Click to collapse
Interesting. I thought it would be a quick note button...
Gesendet von meinem HTC One mit Tapatalk 4

I thought it was Scribe (HTC's stylus like on HTC Flyer) related.

Is that htc stylus still working ?

Some believe it might return with the Max. But the symbol can also be an edit option.

Any way to do this on the HTC One? I don't have an acc folder in /system/customize

gullu101 said:
Any way to do this on the HTC One? I don't have an acc folder in /system/customize
Click to expand...
Click to collapse
Langer hans did the tutorial for HTC One. Go to his thread (link on OP), maybe there's an answer there.

Related

[HOW-TO] Random Mods for the "do-it-yourself-er"

{
"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 compilation of many mods which I have been using for myself which I thought the community might be interested in. Please bare in mind that I am not the original creator of many of these and credits follow below. I am merely collecting them all together so they are handy for those who want them.
Of course I am open to new/not included ones, so please post and alert me to them and I will update as regularly as possible. Enjoy!
THANKS TO:
-Jjdoctor (XDA)
-CrushedD (RootzWiki)
-Snow02 (RootzWiki)
-PvyParts (XDA)
-ArrTooDeeToo (RootzWiki)
-He_stheone64 (XDA)
-Fergie716 (XDA)
-Altimax98 (RootzWiki)
Volume-rocker screen-wake
-decompile android.policy.jar and open KeyguardViewMediator.smali
-search for "WakeKeyWhenKeyguard"
-scroll down a bit and delete the two lines that start with "0x18" and "0x19"
-save and recompile
Faster soft-key UI
-decompile SystemUI.apk and navigate to smali>statusbar>policy and open KeyButtonView.smali
-search for "setDuration(J)" and there should be two instances
-in first instance find the line above it, starting with "const-wide/16 v1", change to "0x28" for medium fast or "0x0" for instant
-in second instance find the same line and change to "0x80" for medium or "0x0" for instant
-save and recompile
Get framework-res.apk to recompile
*this is hella time consuming, but gotta do what you gotta do*
-decompile framework-res.apk and then recompile without making any changes
-take note of every values folder which a plurals file gives an error from
-now navigate to each of those specific values folders and open the plurals.xml
-find line 79 (using Notes++) and add a 2nd "%" to the second "%d" so it looks like this: <item quantity="other">%d of %%d</item>
-save each one and recompile when all completed
Change carrier label (both notification pulldown and lockscreen)
-decompile framework-res.apk and navigate to res>XML>eri.xml
-search for line starting with "64 Verizon Wireless"
-change the "Verizon Wireless" to anything you want, max 16 characters
-it must be 16 characters, so fill in missing characters with spaces on either side
--Example: " Galaxy Nexus " needs 2 spaces on either side to be correct
-save and recompile
Adding MIUI battery bar and remove stock battery
-decompile SystemUI.apk and navigate to res>layout>status_bar.xml
-add this line to the bottom:
Code:
<com.android.systemui.statusbar.BatteryBar android:orientation="horizontal" android:layout_width="wrap_content" android:layout_height="1.0px" />
-should look like this:
Code:
</LinearLayout>
<com.android.systemui.statusbar.BatteryBar android:orientation="horizontal" android:layout_width="wrap_content" android:layout_height="1.0px" />
</com.android.systemui.statusbar.phone.PhoneStatusBarView>
-now, in the same file, find the line starting with "<ImageView android:id="@id/battery"" and add "android:visibility="gone"" to the end of it
-now navigate to smali>com>android>systemui>statusbar and drop the 3 smali files in there from the attached zip from folder named "MIUI Battery Bar"
-save everything and recompile
-download the BatterBarSettings.zip, extract the apk, and install as you would any other apk to enable and customize the battery bar
Replace "recents" with "search" and add long-press recents to home button and long-press voice search to search button
-decompile SystemUI.apk and navigate to res>layout>navigation_bar.xml
-search for "android:id="@id/recent_apps"" should be 2 instances
-for first instance, replace entire line with:
Code:
<com.android.systemui.statusbar.policy.KeyButtonView android:id="@id/recent_apps" android:layout_width="80.0dip" android:layout_height="fill_parent" android:src="@drawable/ic_sysbar_search" android:layout_weight="0.0" android:contentDescription="@string/accessibility_recent" systemui:keyCode="84" systemui:glowBackground="@drawable/ic_sysbar_highlight" />
-for second instance, replace entire line with:
Code:
<com.android.systemui.statusbar.policy.KeyButtonView android:id="@id/recent_apps" android:layout_width="fill_parent" android:layout_height="80.0dip" android:src="@drawable/ic_sysbar_search_land" android:layout_weight="0.0" android:contentDescription="@string/accessibility_recent" systemui:keyCode="84" systemui:glowBackground="@drawable/ic_sysbar_highlight_land" />
-now search for "android:id="@id/home"" should be two instances, in both find and delete "systemui:keyRepeat="false""
-now navigate to res>values>public.xml
-search for "ic_sysbar_recent" change to "ic_sysbar_search" and right below it change "ic_sysbar_recent_land" to "ic_sysbar_search_land"
-finally find some icons you want and replace them in res>drawable-xhdpi and you can delete the recents ones too
-save everything and recompile
Center lockscreen slider and clock
-decompile framework-res.apk and navigate to res>layout
-drop in the two files from the attached zip from folder named "Center Lockscreen" overwriting old ones
-recompile
1% battery increments
-decompile SystemUI.apk and navigate to res>drawables
-drop in the two files from the attached zip from folder named "Percent Battery" overwriting old ones
-now find whatever battery images you want and place them in res>drawable-xhdpi
-recompile
Change color of statusbar clock and date
-decompile SystemUI.apk and navigate to res>values>styles.xml
-for clock, search for "
TextAppearance.StatusBar.Clock" and date search for "
TextAppearance.StatusBar.Date"
-under each, find the line starting with "
android:textColor" and change the hex value to whatever you want
--example, "fffffff" would be white
-save and recompile
Change color of soft-key background
-decompile SystemUI.apk and navigate to res>layout>navigation_bar.xml
-find the line that starts with "<com.android.systemui.statusbar.phone.NavigationBarView" (should be second one)
-fine "android:background="#ff000000" and change the hex color to whatever you want
--example, "ffffffff" would be white
-save and recompile
Launcher2 modifications
-I'm not actually going to type all of this out because a fantastic guide has already been put together to hide the search bar, increase number of rows, and increase/decrease number of screens. It can be found HERE.
Thank you thats very helpful^^
Nice one. Thanks
Sent from my A500 using Tapatalk
What programs does this require? Which are the best? (running on Mac, but I have bootcamp, so I would prefer a program that's compatible with Macs).
wonderfull howto's!!!!!+1
Huge thanks for all of this!
anton2009 said:
What programs does this require? Which are the best? (running on Mac, but I have bootcamp, so I would prefer a program that's compatible with Macs).
Click to expand...
Click to collapse
I use Apktool and Notepad++, so this guide was written assuming that. I find it to be the easiest to use, but there are plenty out there to choose from.
Just added how to color of the soft-keys background. Obviously remember that this does not change the color of the soft-keys themselves, so you will have to replace them to contrast whatever color you choose.
Thank you for this wonderful info. Do you know how to enable the menu button even when it is hidden? I know that the systemui.apk has to be decompiled and navigation_bar.XML has to be edited. But exactly what needs to be edited is what I do not know. Thanks.
Thanks for everything in this thread, very helpful.....my only question is, if I decompile SystemUI and then immediately try to recompile, I end up with a different file size.
Im guessing this is not normal.....what am I missing in my environment setup to be able to decompile/recompile successfully?
Is it not possible to use the softkey background colour mod to make it transparent (ie. see the wallpaper behind softkeys) I tried editing the alpha to 00 but it doesnt seem to have worked or is another mod required to stretch the wallpaper into this area?
i'd love a how-to on modifying the lockscreen to include SMS and Phone shortcuts
Immix said:
Thank you for this wonderful info. Do you know how to enable the menu button even when it is hidden? I know that the systemui.apk has to be decompiled and navigation_bar.XML has to be edited. But exactly what needs to be edited is what I do not know. Thanks.
Click to expand...
Click to collapse
I don't know how to do that at this time, but it is on my list because I too would like to know this. So as soon as I find out, I will update with it.
chrisexv6 said:
Thanks for everything in this thread, very helpful.....my only question is, if I decompile SystemUI and then immediately try to recompile, I end up with a different file size.
Im guessing this is not normal.....what am I missing in my environment setup to be able to decompile/recompile successfully?
Click to expand...
Click to collapse
Hmm, no I don't think so. I don't usually compare the file size (just assume everything is good lol) so I can't say for sure. Are you using apktool? The only thing I can think of is: if you are using apktool, you have to replace the META-INF folder (and android manifest too) in the new apk with the one from the old apk. So if you didn't know that, this could be your problem.
be77amy said:
Is it not possible to use the softkey background colour mod to make it transparent (ie. see the wallpaper behind softkeys) I tried editing the alpha to 00 but it doesnt seem to have worked or is another mod required to stretch the wallpaper into this area?
Click to expand...
Click to collapse
Hmm I never actually thought or tried that, it's a good idea though. So what happens when you set it to 0?
mrvirginia said:
i'd love a how-to on modifying the lockscreen to include SMS and Phone shortcuts
Click to expand...
Click to collapse
Haha join the club, I would also love to know that. Believe me if I ever find out, you guys will be the first to know.
Thanks for writing this up, I am trying to learn more about the process and how to do more mods, but I am stuck when trying to decompile .apks. I have managed to decompile android.policy.jar and framework.jar to do some simple volume wake and granularity mods, but I was trying to figure out how to remove the paging from rosie.apk and ran into a roadblock. I keep getting magic number errors everytime I try to do the decompile. I was getting the same problem when I started with the .jar files, but I was able to get past it by getting the latest smali/baksmali updates. I have been trying to use apktool and also apkbuilder but can't get past the magic number errors. Can anyone offer a suggestion to get past this please?
Thanks, for the tutorial! But editing eri.xml does not effect the carrier name. I am running CM9 on the Maguro (GSM Galaxy Nexus). Is the carrier info stored elsewhere?
And, could the app drawer icon be added to the navbar?
Sent from my Galaxy Nexus using xda premium
out of topic,can i decompile jar file using apktool?
Bump. I'm running miui v4 on toro (vzw cdma) and can't get the carrier to change either. Tried root tools also and was a no go. Anyone have any ideas where else the carrier could be stored?
aiinjylls said:
Thanks, for the tutorial! But editing eri.xml does not effect the carrier name. I am running CM9 on the Maguro (GSM Galaxy Nexus). Is the carrier info stored elsewhere?
And, could the app drawer icon be added to the navbar?
Sent from my Galaxy Nexus using xda premium
Click to expand...
Click to collapse
Miui since 0.9.x
Nice.!
Sent from my PG86100 using XDA
00McD00 said:
Volume-rocker screen-wake
-decompile android.policy.jar and open KeyguardViewMediator.smali
-search for "WakeKeyWhenKeyguard"
-scroll down a bit and delete the two lines that start with "0x18" and "0x19"
-save and recompile
Click to expand...
Click to collapse
That method not working in 4.2
"KeyguardViewMediator.smali" in /com/android/internal/policy/impl/keyguard_obsolete/
modified that not changed

[Guide] [TouchWiz3] 5 icon dock + 5 columns drawer + other mods

This is a guide on on how to make some modding to TouchWiz 3.
[Important] it is recommended to have a second launcher installed as a backup before you start.
Make a full backup of your phone in case something goes wrong. you never know.​
The guide is set in 3 parts:
Part I: Copying the TouchWiz apk file to your computer and decoding it.
Part II: Editing Files. Here are included different modifications. you can chose the ones you want to apply and skip the rest and go to part III.
Part III: updating your apk file and copying it to your phone.
You will need:
Apktool to decompile/build your apk files. (download it and install it)
ADB (download it and install it) I use Android Commander but adb commands make the guide simpler )
winrar or 7zip or any archive manager
Notepad++ or any text editor
Part I: pulling & decoding
Create a folder in your computer to work inside it. for example C:\twmod
Connect your phone with USB Cable.
Copy the TouchWIz apk file from your phone to C:\twmod on your computer. you will find it under /system/app
to do this i recommend using Android Commander because it's easy to use. you can also use Root Explorer or ADB. i will include the ADB commands in this guide.
[if you're using ADB] open a command prompt and enter the following commands:
adb pull /system/app/TouchWiz30Launcher.apk c:\twmod\TouchWiz30Launcher.apk​
Decode the file using apktool. In the command prompt enter the following commands:
cd c:\twmod
apktool d TouchWiz30Launcher.apk​a folder will appear next to your apk file named TouchWiz30Launcher
(leave this command prompt open)
Part II: modding
5 icon dock (or 6)
Go to TouchWiz30Launcher\res\layout-mdpi\ and open launcher.xml with your text editor.
Find iconColumnCount="4" and replace 4 with 5 (or 6 if you want 6 icons)
Save​
Go to TouchWiz30Launcher\smali\com\sec\android\app\twlauncher and open AppShortcutZone.smali with your text editor
Find const/4 v8, 0x3 and replace 0x3 with 0x4 (or 0x5 if you want 6 icons)
Find const/4 v6, 0x3 and replace 0x3 with 0x4 (or 0x5 if you want 6 icons)
Save​
5 column app drawer (5x4 or 5x5)
Open TouchWiz30Launcher\res\xml-mdpi\launcher_config.xml with your text editor.
Find menuColumnCount="4" and change it to 5 (this is the number of columns)
Find itemNumOfPage="16" and chnage it to 20 if you want 5x4 drawer, or 25 if you want 5x5. (this is the number of icons per page)
Save​
If you're doing 5x5, do the following. if you're doing 5x4 then skip this.
Open TouchWiz30Launcher\res\values-mdpi\dimens.xml
Find <dimen name="menu_item_height">92.0dip</dimen> and change it to 73.6dip (this is the height of the drawer element)​Open \res\layout-mdpi\application_boxed.xml
Find maxLines="2" and change it to 1 (this is the number of lines in the app name in the drawer)​
5x5 icons home screen
Note that widgets will look smaller.
Open TouchWiz30Launcher\res\layout-mdpi\workspace_screen.xml
Find shortAxisCells="4" and change it to 5 (this is the number of columns in the home screen)
Find cellWidth="80.0dip" and change it to 64.0dip (this is the width of the column, it equals 320 / number_of_columns)
Find longAxisCells="4" and change it to 5 (this is the number lines of icons in the home screen)
Find cellHeight="100.0dip" and change it to 80.0dip (this is the height of the line, it equals 400 / number_of_lines)​
Open TouchWiz30Launcher\res\values-mdpi\styles.xml
Find <item name="android:layout_marginBottom">4.0dip</item> and change it to 2.0dip​
Hide icon names in home screen
Open TouchWiz30Launcher\res\values-mdpi\styles.xml
Find <item name="android:layout_marginBottom">4.0dip</item> (the value may be diffrent, so simply look for layout_marginBottom)
This value depends on the cellHeight from the previous patch. it equals cellHeight - 57
if you have a 4 line homescreen, then set it to 43
if you're making a 5 line homescreen, then set it to 23​
Transparent app drawer background
Open TouchWiz30Launcher\res\values-mdpi\colors.xml
Find <color name="menu_background">#ff000000</color> and change to #99000000​Note: The first two digits define the transparency level. it can be anything between 00 and ff (in hexadecimal) with 00 being completely transparent and ff being completely opaque.
The latter 6 digits define the color of the background in RGB code.
Part III: rebuilding & updating
Go back to your command prompt and enter the folloing command: (this will rebuild the app)
apktool b TouchWiz30Launcher​
Now you will update your apk file.
Open the original TouchWiz30Launcher.apk file with winrar (or 7zip). do not extract it.
Go to C:\twmod\TouchWiz30Launcher\build\apk\res and copy every file that you edited to its respective location inside the apk file.
if the file you edited does not exist in this folder, then copy C:\twmod\TouchWiz30Launcher\build\apk\resources.arsc to the source of the apk file
if you edited some smali files, also copy C:\twmod\TouchWiz30Launcher\build\apk\classes.dex (and resources.arsc just to be sure )
Now you will copy the apk file to your phone under /system/app and change its permissions to rw- r-- r-- (644)
Back to your command prompt, enter the following commands:
adb shell mount -rw -o remount /dev/block/mtdblock1 /system
adb shell mv /system/app/TouchWiz30Launcher.apk /system/app/TouchWiz30Launcher.apk.bak
adb push c:\twmod\TouchWiz30Launcher.apk /system/app/TouchWiz30Launcher.apk
adb shell chmod 644 /system/app/TouchWiz30Launcher.apk​
NOTE: Your original TouchWiz apk will be backed up. if the modded version did not work, run the following commands to recover the original file:
adb shell mount -rw -o remount /dev/block/mtdblock1 /system
adb shell rm /system/app/TouchWiz30Launcher.apk
adb shell mv /system/app/TouchWiz30Launcher.apk.bak /system/app/TouchWiz30Launcher.apk​
Download
5 icon dock, 5x4 app drawer
{
"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 there is something incorrect in the guide, please correct me im not a developer. i figured this out by googeling and experimenting.
Credit:
Some Chinese forum for the smali edit.
Update- nice one
i tried before but until now only on armv7
Sent from my GT-S5830 using xda premium
evil_penguin said:
you can try Zeam launcher .its similar to touchwiz plus you can put 5 apps in the dock.
Btw wrong section.
Click to expand...
Click to collapse
i have it, but the dock icons are so small :/
sorry about the wrong section. i thought anything that has to do with changing the appearance goes here.
spacecaker said:
i tried before but until now only on armv7
Click to expand...
Click to collapse
im not a developer, but that seems odd. changing the number of entries in a dock shouldnt require a new cpu instruction set :/
i hope someone will figure out a way to do it.
it is possible but it will be very itritated because you have then need to change dpi
and then icons are small
Sent from my GT-S5830 using xda premium
spacecaker said:
because you have then need to change dpi
Click to expand...
Click to collapse
i wouldnt want to do that :/
Can I see screenshots?
ok ive found it just find workspace.xml and edit whatever you like
it must work
Sent from my GT-S5830 using xda premium
SamsungGalaxyAce said:
Can I see screenshots?
Click to expand...
Click to collapse
it's a [Request] not a Mod
spacecaker said:
ok ive found it just find workspace.xml and edit whatever you like
Click to expand...
Click to collapse
ok, so i tried editing workspace_screen.xml but that actually changed the number of icons on the home screen. (we learned something useful anyway )
i looked around and found the right part to edit. it's in launcher.xml i changerd iconColumnCount from 4 to 5.
it almost worked. now i'm able to add a fifth icon to the dock, but when i hit Back to save the new icon it disappears both from the dock and the app drawer.
obiously there's more editing to do. i'm not a developer so i mostly count on luck and on anyone who is willing to help out
at least now we know the dock is called AppShortcutZone inside the app. there are a few smali files with this name. i'll try to play with them, but i first need to understand what a smali file is and how to edit it xD
anyway, thanks spacecaker
EDIT: i noticed that when i kill the launcher and relaunch it, the fifth icon appears for a moment then disappears.
EDIT: I found the answer on some japanese forum. it works. i'm turning this into a How TO thread
dali47 said:
it's a [Request] not a Mod
ok, so i tried editing workspace_screen.xml but that actually changed the number of icons on the home screen. (we learned something useful anyway )
i looked around and found the right part to edit. it's in launcher.xml i changerd iconColumnCount from 4 to 5.
it almost worked. now i'm able to add a fifth icon to the dock, but when i hit Back to save the new icon it disappears both from the dock and the app drawer.
obiously there's more editing to do. i'm not a developer so i mostly count on luck and on anyone who is willing to help out
at least now we know the dock is called AppShortcutZone inside the app. there are a few smali files with this name. i'll try to play with them, but i first need to understand what a smali file is and how to edit it xD
anyway, thanks spacecaker
EDIT: i noticed that when i kill the launcher and relaunch it, the fifth icon appears for a moment then disappears.
EDIT: I found the answer on some japanese forum. it works. i'm turning this into a How TO thread
Click to expand...
Click to collapse
ok thx
btw what did changed the layout in app drawer ?
like its 4X4 but i want it like 5x5 ?
dali47 said:
it's a [Request] not a Mod
ok, so i tried editing workspace_screen.xml but that actually changed the number of icons on the home screen. (we learned something useful anyway )
i looked around and found the right part to edit. it's in launcher.xml i changerd iconColumnCount from 4 to 5.
it almost worked. now i'm able to add a fifth icon to the dock, but when i hit Back to save the new icon it disappears both from the dock and the app drawer.
obiously there's more editing to do. i'm not a developer so i mostly count on luck and on anyone who is willing to help out
at least now we know the dock is called AppShortcutZone inside the app. there are a few smali files with this name. i'll try to play with them, but i first need to understand what a smali file is and how to edit it xD
anyway, thanks spacecaker
EDIT: i noticed that when i kill the launcher and relaunch it, the fifth icon appears for a moment then disappears.
EDIT: I found the answer on some japanese forum. it works. i'm turning this into a How TO thread
Click to expand...
Click to collapse
I also got prob of disappearing 5th icon in dock ) and dont know how to solve :-<
How it works someone here could share?
Wysłano z GT-S5830 z użyciem Tapatalk
devilsking said:
I also got prob of disappearing 5th icon in dock ) and dont know how to solve :-<
Click to expand...
Click to collapse
leo it works
ive got no problem of disapearing
btw you need to try above 10 its funny
Sent from my GT-S5830 using xda premium
devilsking said:
I also got prob of disappearing 5th icon in dock ) and dont know how to solve :-<
Click to expand...
Click to collapse
you need to edit the smali file. chack step 4 in the guide in the first post
Bartas18 said:
How it works someone here could share?
Click to expand...
Click to collapse
check the first post
spacecaker said:
btw what did changed the layout in app drawer ?
like its 4X4 but i want it like 5x5 ?
Click to expand...
Click to collapse
workspace_screen.xml changes the home screen.
i tried changing the drawer but i couldnt find the right file to edit.
i will try again and tell you if it works
dali47 said:
you need to edit the smali file. chack step 4 in the guide in the first post
check the first post
workspace_screen.xml changes the home screen.
i tried changing the drawer but i couldnt find the right file to edit.
i will try again and tell you if it works
Click to expand...
Click to collapse
Throw me your mod please (TouchWiz30Launcher.apk)
spacecaker said:
btw what did changed the layout in app drawer ?
like its 4X4 but i want it like 5x5 ?
Click to expand...
Click to collapse
ok, here you go. this how you get 5x4 or 5x5 app drawer:
- Open \res\xml-mdpi\launcher_config.xml
- Find menuColumnCount="4" and change it to 5 (this is the number of columns)
- Find itemNumOfPage="16" chnage it to 20 if you want 5x4, or 25 if you want 5x5. (this is the number of icons per page)
if want 5x5 you alswo have to do the following:
- Open \res\values-mdpi\dimens.xml
- Find <dimen name="menu_item_height">92.0dip</dimen> and change it to 73.6dip
- Open \res\layout-mdpi\application_boxed.xml
- Find maxLines="2" and change it to 1
- Then build and replace launcher_config.xml and application_boxed.xml and resources.arsc
i will add this with more detail to the guide
SamsungGalaxyAce said:
Throw me your mod please (TouchWiz30Launcher.apk)
Click to expand...
Click to collapse
here i included my favorite setting: 5 icon dock, 5x4 drawer. because with 5x5, the app name can only be 1 line. if you want something different tell me
hit thanks if i was helpful ​
dali47 said:
ok, here you go. this how you get 5x4 or 5x5 app drawer:
- Open \res\xml-mdpi\launcher_config.xml
- Find menuColumnCount="4" and change it to 5 (this is the number of columns)
- Find itemNumOfPage="16" chnage it to 20 if you want 5x4, or 25 if you want 5x5. (this is the number of icons per page)
if want 5x5 you alswo have to do the following:
- Open \res\values-mdpi\dimens.xml
- Find <dimen name="menu_item_height">92.0dip</dimen> and change it to 73.6dip
- Open \res\layout-mdpi\application_boxed.xml
- Find maxLines="2" and change it to 1
- Then build and replace launcher_config.xml and application_boxed.xml and resources.arsc
i will add this with more detail to the guide
here i included my favorite setting: 5 icon dock, 5x4 drawer. because with 5x5, the app name can only be 1 line. if you want something different tell me
hit thanks if i was helpful ​
Click to expand...
Click to collapse
ok thx
i am trying to do 5 dock at my sgs II launcher but there is no
convst v6. 0x3 something that looks like that
other things ive figured out
Sent from my GT-S5830 using xda premium
In cm7.2 fat is not working because not touchwiz in this cm:/
Please help me:/
Wysłano z GT-S5830 z użyciem Tapatalk
Bartas18 said:
In cm7.2 fat is not working because not touchwiz in this cm:/
Please help me:/
Click to expand...
Click to collapse
i dnt think it works on CM
upload link ?

[COLLECTION][MODIFICATIONS]build.prop modifications[24 MAY]

Hello everybody,
this is a collection of build.prop modifications.
The red marked ones aren't tested by myself, the others will work for sure.
Please let us know if a red marked works for you.
1st POST MODIFICATIONS
2nd POST HOWTO APPLY
1. ro.HOME_APP_ADJ=1
Locks launcher in memory. Only use with light launchers. This won’t work on ICS and above.
2. profiler.force_disable_err_rpt=1
Only for HTC firmwares. Disables sending of error reports.
3. wifi.supplicant_scan_interval=30
Sets the interval for scanning for WiFi networks in seconds when not already connected to one.
4. ro.ril.hep=0
ro.ril.hsxpa=2
ro.ril.gprsclass=12
ro.ril.enable.dtm=1
ro.ril.hsdpa.category=8
ro.ril.enable.a53=1
ro.ril.enable.3g.prefix=1
ro.ril.htcmaskw1.bitmask=4294967295
ro.ril.htcmaskw1=14449
ro.ril.hsupa.category=6
3G tweaks.
5. ro.telephony.call_ring.delay=0
Phone rings immediately. You can set a higher value for a delay in seconds.
6. persist.cust.tel.eons=1
EONS stands for enhanced operator name string. Maybe someone knows what that is?
7. dalvik.vm.dexopt-flags=m=y
Enables register map for tracking objects to garbage collect. Might give a little more RAM at the cost of a few CPU cycles.
8. ro.com.google.locationfeatures=0
ro.com.google.networklocation=0
Disables locating. Also delete /system/app/networklocation.apk and /system/framework/com.android.location.provider.jar
9. persist.adb.notify=0
Disable notification while adb is active.
10. ro.sf.lcd.density=240
Change LCD density. Default for Galaxy S is 240. Don´t forget to install patched Play Store after changing it.
11. ro.gsm.2nd_data_retry_config=max/_retries=3, 2000, 2000, 2000
MMS APN retry timer set to 2 sec( if SMS/MMS couldn`t be sent, it retries after 2 instead of 5 seconds).
12. ro.mot.buttonlight.timeout=0
Key lights stay on while screen is on.
13. persist.service.mount.playsnd=0
Disable notification sound when SD storage gets inserted.
14. persist.sys.usb.config=mtp
Enables MTP mode.
15. debug.kill_allocating_task=0
When system has to free up memory, it won't stop the current process(default). Maybe you want to change the value to 1, so it doesn't have to look for an other process to close.
16. net.wlan0.dns1=8.8.8.8
net.wlan0.dns2=8.8.4.4
net.pdp0.dns1=8.8.8.8
net.pdp0.dns2=8.8.4.4
net.ppp0.dns1=8.8.8.8
net.ppp0.dns2=8.8.4.4
net.eth0.dns1=8.8.8.8
net.eth0.dns2=8.8.4.4
net.gprs.dns1=8.8.8.8
net.gprs.dns2=8.8.4.4
Uses Google's DNS for better internet speed.
17. debug.sf.nobootanimation=1
Disables bootanimation. You can delete the bootanimation (mostly in /system/media) now.
18. ro.config.hw_fast_dormancy=1
Read about this one here: Fast Dormancy in a nutshell
19. ro.ril.enable.amr.wideband=1
AMR Wideband provides improved speech quality compared to Narrowband speech coders
HOWTO
It´s saver to edit the build.prop on the computer, as the lines are shorter on the phone. So that`s how to do it:
1. With a root explorer(I prefer ES file explorer), copy /system/build.prop to the root of the internal sdcard (/mnt/sdcard).
2. Connect phone to computer and copy the file on your computer.
3. With Notepad++, open build.prop and edit it. Be careful as some of the parameters already exist. Just change their values.
4. Save and copy the file back to your phone's root.
5. Overwrite /system/build.prop with the edited file.
6. Make sure that the permissions are still rw-r--r--:
{
"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"
}
7. Reboot into recovery and wipe cache and dalvik cache.
8. New values should be applied now.
9. Enjoy
dark_knight35 said:
It´s saver to edit the build.prop on the computer, as the lines are shorter on the phone. So that`s how to do it:
1. With a root explorer, copy /system/build.prop to the root of the internal sdcard (/mnt/sdcard)
2. Connect phone to computer and copy the file on your computer
3. With Notepad++, open build.prop and edit it. Be careful as some of the parameters already exist. Just change their values.
4. Copy the file back to your phone.
5. Overwrite /system/build.prop with the edited file.
6. Make sure that the permissions are still rw-r--r--.
7. Reboot into recovery and wipe cache and dalvik cache.
8. New values should be applied now.
9. Enjoy
Click to expand...
Click to collapse
Thanks for this tips mate..but bit noobish..can ..u do a video for us..please?
Cheers
No, sorry, won't do a video. Which step isn't clear for you? I can edit the howto with some pics.
dark_knight35 said:
No, sorry, won't do a video. Which step isn't clear for you? I can edit the howto with some pics.
Click to expand...
Click to collapse
Yes pic would be nice, Just the scrolling one, also better signal one..thanks mate
i can't find ro.HOME_APP_ADJ=1 on CM9
Abyv said:
Yes pic would be nice, Just the scrolling one, also better signal one..thanks mate
Click to expand...
Click to collapse
I've edited it . Try with ES file explorer, activate root explorer in it's settings and tick the system thing box.
rafal408 said:
i can't find ro.HOME_APP_ADJ=1 on CM9
Click to expand...
Click to collapse
Just put the line at the end of the file. The most tweaks aren't already in build.prop.
I forgot two:
persist.sys.purgeable.assets=1
Allows system to free up more RAM when needed.
debug.sf.nobootanimation=1
Disables bootanimation for faster boot.
These two are for testing, don't know if they work:
ro.mot.hw.HAC=1
ro.telephony.sms_segment_size=160 ->longer SMS? I read of something like that, may doesn't work in all countries.
First of all,
Thanks for sharing
Second,
just a suggestion, update the first post and put all of the newly added tweaks there in one place.
Thanks again
This is great, but the instructions on editting the build.prop are a little unclear, are we copy and pasting the tweaks from the OP into the file, or do we locate the appropriate lines in the build.prop and then change the values to match the tweak.
I'd like to be able to apply better 3g speeds and better signal but it's a little unclear.
Pictures, or thorough instructions would be appreciated.
no need of a computer, i can do it in the phone itself, can't I?
Not sure if half of these make any difference, but I have added a couple to my phone. Some are not applicable to our device for sure.
For the 3g tweaks, my research (google) seems to indicate that for the sgs,
gprs class should be 12
hsdpa category should be 8
hsupa category should be 6
I don't know if these even work though, i can't tell any difference.
One that i do find very useful for ICS, is one that enables MTP (most roms/kernels don't seem to have this option).
persist.sys.usb.config=mtp
Hope that is useful for someone, MTP rocks
Zorigo said:
This is great, but the instructions on editting the build.prop are a little unclear, are we copy and pasting the tweaks from the OP into the file, or do we locate the appropriate lines in the build.prop and then change the values to match the tweak.
I'd like to be able to apply better 3g speeds and better signal but it's a little unclear.
Pictures, or thorough instructions would be appreciated.
Click to expand...
Click to collapse
Some of the parameters like supplicant.scan.intervall are already there in build.prop. Then you just change the value. If there isn't a parameter in your
build.prop, you can copy&paste it from the OP.
madushan92 said:
no need of a computer, i can do it in the phone itself, can't I?
Click to expand...
Click to collapse
You can do it on the phone, but it's not as save as on the computer. i.e. if you're at the end of a line with a root explorer and press the space bar to get to the next line, you aren't really in the next line and could get bootloop by rebooting. So I wrote how to do it on the computer.
oswade said:
Not sure if half of these make any difference, but I have added a couple to my phone. Some are not applicable to our device for sure.
For the 3g tweaks, my research (google) seems to indicate that for the sgs,
gprs class should be 12
hsdpa category should be 8
hsupa category should be 6
I don't know if these even work though, i can't tell any difference.
One that i do find very useful for ICS, is one that enables MTP (most roms/kernels don't seem to have this option).
persist.sys.usb.config=mtp
Hope that is useful for someone, MTP rocks
Click to expand...
Click to collapse
Yes, the tweaks are only slightly noticable, and not all needed. But I'll add MTP to the list tomorrow for sure.
This is great. Good job
thanks!
there's no point in editing your build.prop if you cannot figure out how to do it after you've read the OP.
next thing they'll ask author of OP to create a custom build.prop for the users that "aren't sure" how to do it.
Just please, learn to use notepad
PS. And if a line doesn't exist in your build.prop, add it!
first of all thanks ..
i have 2 question:
1. i can apply more than 10 tweaks at once?!
2. do i need space(enter) between every tweak?! or no need?!
marwan91 said:
first of all thanks ..
i have 2 question:
1. i can apply more than 10 tweaks at once?!
2. do i need space(enter) between every tweak?! or no need?!
Click to expand...
Click to collapse
1. Why not? That works.
2. Yes, for every parameter a new line.
Gesendet von meinem GT-I9000 mit Tapatalk 2
dark_knight35 said:
1. Why not? That works.
2. Yes, for every parameter a new line.
Gesendet von meinem GT-I9000 mit Tapatalk 2
Click to expand...
Click to collapse
lol of course new line but i mean
like :
rro.config.hw_fast_dormancy=1
ro.media...
or?
ro.config.hw_fast_dormancy=1
ro.media >>?
Could I use this on the Galaxy Ace running Gingerbread 2.3.6?
Sent from my GT-S5830 using Tapatalk 2
galaxyace152 said:
Could I use this on the Galaxy Ace running Gingerbread 2.3.6?
Sent from my GT-S5830 using Tapatalk 2
Click to expand...
Click to collapse
Yeah i think
P.s. can som1 make a build.prop with all tweaks for ics?
Gesendet von meinem GT-I9000 mit Tapatalk 2

How to enable usb mass storage and on-screen buttons in Android 4.x

How to enable usb mass storage and on-screen buttons in Android 4.x (Windows Users Only)
====================================================
UPDATE:
My new tool is out! Check it out, it does the work for you
http://forum.xda-developers.com/showthread.php?p=40031460#post40031460
A) How:
======
It consists of editing some lines in framework-res.apk which you can extract from your ROM zip (/system/framework) or by using this command with adb (With phone connected via USB)
Code:
> adb pull /system/framework/framework-res.apk framework-res.apk
B) Tools:
=======
- Framework Toolkit by Themike10452 ( Me ) ==> http://www.mediafire.com/?j6ndniep6h8iwch
- XML Editor. I recommend FirstObject XML Editor (Freeware) ==> http://www.firstobject.com/dn_editor.htm
- Java Development Kit ==> http://www.oracle.com/technetwork/java/javase/downloads/jdk7-downloads-1880260.html
C) Steps:
=======
Video Tutorial: http://www.youtube.com/watch?v=9V-Ukles6w0
1 - Download and extract Framework Toolkit, then place your framework-res.apk inside [place-apk-here-for-modding] folder.
2 - Run Apk-Multi-Tool.bat as administrator, press any key to enter options menu, then use option (9) to decompile the apk
3 - Head to [projects] folder > res
4 -
a) Enabling USB Mass Storage:
- Now you are in [res] folder, go to [xml] folder, open [storage_list.xml] with an xml editor
- The 4th line looks like this:
Code:
<storage android:mountPoint="/storage/sdcard0" android:storageDescription="@string/storage_sd_card" android:primary="true" android:removable="true" android:maxFileSize="4096" />
Replace it with the following line:
Code:
<storage android:mountPoint="/storage/sdcard0" android:storageDescription="@string/storage_sd_card" android:primary="true" android:removable="true" android:allowMassStorage="true" android:maxFileSize="4096" />
- Save and go back to [res] folder
b) Enabling On-screen Buttons:
- Now you are in [res] folder, go to [values] folder
- Open bools.xml and look for the following line:
Code:
<bool name="config_showNavigationBar">[COLOR=Red]false[/COLOR]</bool>
Replace false with true, the new line should look like this:
Code:
<bool name="config_showNavigationBar">[COLOR=Green]true[/COLOR]</bool>
;; ;; Now navigation bar is enabled, we can change the bar size by editing [dimens.xml] in the same folder ;; ;;
- To do so, edit lines 14 and 16, set the dip to whatever you like
Example (17 dip):
14. <dimen name="navigation_bar_height">17.0dip</dimen>
15. <dimen name="navigation_bar_height_landscape">48.0dip</dimen>
16. <dimen name="navigation_bar_width">17.0dip</dimen>
Click to expand...
Click to collapse
You can skip line 15, it does not matter
Click to expand...
Click to collapse
5 - Save and exit, go back to main folder, re-open Apk-Multi-Tool.bat, this time use option 11 to compile the edited apk
6 - After it's done compiling it will ask you if you want to add some more files, reply with n
7 - Close Apk-Multi-Tool, run Create_zip.bat as administrator, read on-screen instructions it's very simple
8 - After it's done successfully you can collect your flash-able zip from [final-zip-here] folder
9 - Move the zip to your sd card and flash it via CWM Recovery, reboot, if you enabled USB Mass Storage make sure to change connection
method from MTP to Mass Storage in System Settings
10 - Use ##Cleanup.bat to cleanup all folders (Important if you want to use it again)
Important Do NOT use this toolkit with any other apk, just framework apk
#####################################################################################################################
////////////
Credits:
\\\\\\\\\\\\
My Toolkit includes Apk-Multi-Tool written by raziel23x ==> http://forum.xda-developers.com/showthread.php?t=1310151
Zip creator script was written by me
Does this work on CM9/10? Of course it does!
Leave your comments below and hit thanks if I helped you :good: :cyclops:
i have error
{
"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"
}
Zizo950 said:
i have error
Click to expand...
Click to collapse
You have to insall Java Development Kit on your machine
Here: http://www.oracle.com/technetwork/java/javase/downloads/java-se-jdk-7-download-432154.html
Update: Don't forget to add Java to PATH variable
Here's how to: http://www.youtube.com/watch?v=58ZO_NaAOfU
Themike_10452 said:
You have to insall Java Development Kit on your machine
Here: http://www.oracle.com/technetwork/java/javase/downloads/java-se-jdk-7-download-432154.html
Update: Don't forget to add Java to PATH variable
Here's how to: http://www.youtube.com/watch?v=58ZO_NaAOfU
Click to expand...
Click to collapse
Thank You Is Work Good
Zizo950 said:
Thank You Is Work Good
Click to expand...
Click to collapse
I'm glad to hear it
Solved
Saingpor said:
I got bootloops after flashing update_CWM.zip !
Do i need to sign that apk before make a flashable.zip ?
Or can you give some idea ?
I only try to enable OSB ! ( Stock ICS 4.0.4 ) ( 4.1.B.631)
Click to expand...
Click to collapse
Just follow the video instructions (link in post) and you shouldn't face any problems, the steps include signing the APK and everything,
I use this script myself and no problems. If you have any further problems or questions just let me know, I'll be happy to help.
You can send me your framework-res.apk if you want me to mod it for you.
Well I've released an automated tool to do the job a while ago please check it out
http://forum.xda-developers.com/showthread.php?t=2224784
it supports android 4.0 4.1 & 4.2
Sent from my LT18i using xda premium
auto rotate lockscreen
i try this method to change my xperia sola JB A.1.100 framework-res.apk
to make auto rotate lockscreen like this http://forum.xda-developers.com/showthread.php?t=1525045
after compiling (step 6), i got system_framework-res.apk and the size is same with the original,about 13Mb
but after i run Create_zip.bat, the flashable zip size only 6Mb.
after i flash from CWM, my phone stuck at bootscreen
is it normal that the file size change?
i try alot of method to decompile/compile framework-rest.apk and always stuck at bootscreen
deyanti01 said:
i try this method to change my xperia sola JB A.1.100 framework-res.apk
to make auto rotate lockscreen like this http://forum.xda-developers.com/showthread.php?t=1525045
after compiling (step 6), i got system_framework-res.apk and the size is same with the original,about 13Mb
but after i run Create_zip.bat, the flashable zip size only 6Mb.
after i flash from CWM, my phone stuck at bootscreen
is it normal that the file size change?
i try alot of method to decompile/compile framework-rest.apk and always stuck at bootscreen
Click to expand...
Click to collapse
the file size of the apk should become smaller yes
Sent from my Xperia Arc S using xda premium
deyanti01 said:
i try this method to change my xperia sola JB A.1.100 framework-res.apk
to make auto rotate lockscreen like this http://forum.xda-developers.com/showthread.php?t=1525045
after compiling (step 6), i got system_framework-res.apk and the size is same with the original,about 13Mb
but after i run Create_zip.bat, the flashable zip size only 6Mb.
after i flash from CWM, my phone stuck at bootscreen
is it normal that the file size change?
i try alot of method to decompile/compile framework-rest.apk and always stuck at bootscreen
Click to expand...
Click to collapse
if your ROM is odexed this won't work because the apk needs to be signed with the original build key. so this method only works for deodexed ROMs.
Sent from my Xperia Arc S using xda premium

[ROM]P6 Unicom Huawei ROM Lite _ beautify + utility functions _KangVIP

This ROM is based on the latest official version modified to streamline production (see list streamline 2nd post), new features in all the way inline code, with the original style Emui perfect fusion. Favorite local friends like him to support, thank you!
The following modifications are a lot of original content, and extract reproduced please indicate the source!
Modification and beautification as follows:
1, the navigation bar to join the lock screen button (click on the lock screen, long press the power menu pops up), you can customize the display.
2, a new drop-down notification bar shortcut button (click start switch, press to enter the appropriate settings), the specific circumstances accompanying drawings.
3, full-screen status bar pulldown (valid only in full-screen), this function is playing the game to see the video in full screen when etc., need to see more practical when time and battery condition.
4, pull down the status bar to adjust the brightness slider
5, return key home (when the right hand seems to be more convenient) Right switching function.
6, switching power icon (default / no show the percentage / custom icon).
7, the status bar displays real-time network traffic.
8, press the return key (one second) end of the current program.
9, the volume keys extension (call volume can be set individually, media, alarm clock, etc.).
10 Power added flash menu options (power menu settings in the "Developer Options").
11, the power menu screenshot option added.
12, the power menu option added to reboot to restart Recovery / Fastboot mode.
13, 36 DIP navigation bar height to
14, add the status bar operator display option
15, the pull-down notification bar Lunar display
16, the pull-down notification bar: Click to enter the alarm time is set, press to enter the date setting
Click on a date to enter the calendar, press enter the date setting
17 new volume key wake-up option
18, joined the system optimization script (script in / etc / init.d directory).
19, built a google produce their own native style theme .
20, recently taskbar only shows the program running.
21, adding full-screen assistant
22, odex optimization framework and system app.
There KangVIPTools.apk described under :/ system / app directory, the tool is used to achieve full-screen flashlight and pull down the status bar does not contain any background programs, we can be assured.
...
Above:
{
"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"
}
Download : LINK
Installation :
1 computer installed Huawei Device USB driver (can not install pea pods or other phone installation assistant) 2. phones turned on USB debugging mode: Settings> Developer Options> USB Debugging> check 3 would connect the phone to the computer via USB cable Brush: Download and unzip the attachment, and then perform Flash_All_Lite.bat, and follow the instructions carefully operation (described in detail in the run Flash_All_odex.bat can see)!
Credit To KangVIP
I Am Not Responsible For Any Kind Of Damage To Your Device Try It At Your Own Risk.
Languages supported?
Sent from my HUAWEI P6-U06 using Tapatalk
Ottomaani0 said:
Languages supported?
Click to expand...
Click to collapse
No, but i have a rom Huawei P6 Full Customize Rom SP2 multilang and i am installed this rom over the top. Language remained the same.
Sorry for my bad english.
Just installed this ROM and so far it looks good. Lots of extra goodies. Will try it for a few days and see what I think. :good:
is there a English version?:good:
peterkolenberg said:
is there a English version?:good:
Click to expand...
Click to collapse
Yes full language
Inviato dal mio P6-U06 utilizzando Tapatalk
can we use widget on lockscreen ?
frdan said:
can we use widget on lockscreen ?
Click to expand...
Click to collapse
No
Inviato dal mio P6-U06 utilizzando Tapatalk
Great ROM !!!!
Thanks OP , this is my daily right now :good:
hi do you know how to have call recording in this rom? editing the build prop I can not find the code to edit. tips on how to do? thanks aspect reply
Inviato dal mio P6-U06 utilizzando Tapatalk
B118 version of this Rom: http://bbs.anzhi.com/forum.php?mod=viewthread&tid=8610597
Download: http://pan.baidu.com/s/1pbqY7
Latest one - 2013-12-09 -
Link: http://bbs.anzhi.com/forum.php?mod=viewthread&tid=8617798
Download: http://pan.baidu.com/s/1vhnpP
Does this work on B122 ?
The flash all lite.bat isnt in english, help?
New version
Inviato dal mio P6-U06 utilizzando Tapatalk
Lite V2 is out.
Link: http://cn.club.vmall.com/forum.php?mod=viewthread&tid=348880&extra=&page=1
Download: http://pan.baidu.com/s/1o6wLF3k
I really wish that the rom wasn't odexed. Why do they keep doing that?
Anyway, I'm still busy downloading it, so I'll report back once I'm all setup.
miz_pimp said:
Lite V2 is out.
Link: http://cn.club.vmall.com/forum.php?mod=viewthread&tid=348880&extra=&page=1
Download: http://pan.baidu.com/s/1o6wLF3k
I really wish that the rom wasn't odexed. Why do they keep doing that?
Anyway, I'm still busy downloading it, so I'll report back once I'm all setup.
Click to expand...
Click to collapse
I am currently running the B118 version of this rom and i am in love with it. can you please let me know if i can flash this one over it. thank you
As far as I know, you should be able to flash over it.
So here are my thoughts on the rom:
LIKES:
1) Firstly, it's BLAZING FAST! Everything opens up the moment you touch it! It's awesome!
2) Also, I love that the mods are in the settings itself; navbar mods in the navigation bar settings, etc.
3) I can long-press on the notification bar toggles to open their respective settings AND there's a brightness slider!
DISLIKES:
1) The navbar doesn't resize properly, it seems. Even as set to default, when an app is open that adds a menu button, the navigation buttons become squashed, and move to the left of the navbar.
2) When setting a theme, the navbar does not become themed, and it's as if the default and themed navbar are trying to override each other. The toggles don't get themed either.
3) It's odexed That's just my personal opinion though, hehe!
Other than that, it seems like a really great rom, but I've gone back to stock B125, lol!
Sent from my Huawei P6
miz_pimp said:
As far as I know, you should be able to flash over it.
Click to expand...
Click to collapse
Ok thanks a lot. Will flash when i get the time. I just love the overall stability of the rom
fizzle101 said:
Ok thanks a lot. Will flash when i get the time. I just love the overall stability of the rom
Click to expand...
Click to collapse
Make a backup first though, just in case. It's still done at your own risk!
Sent from my Huawei P6

Categories

Resources