[Q] How to change default settings in ROM.zip? - Optimus One, P500, V Q&A, Help & Troubleshooting

I want to make a customized CM9 rom with some default system settings changed to other values, for example set my language, time zone, sound, notification bar widgets and other similar settings.
Could someone tell me which .xml or .smali files I need to edit to preset these settings ?

HardLight said:
I want to make a customized CM9 rom with some default system settings changed to other values, for example set my language, time zone, sound, notification bar widgets and other similar settings.
Could someone tell me which .xml or .smali files I need to edit to preset these settings ?
Click to expand...
Click to collapse
Search general section and google fr it .. dere are lots of articles and guides out dere
pls hit thanks if I helped in any way
:: peace
Sent from Legendary o1

I googled a lot and searched in xda, but didint find anything usefull for me, just how to change settings then compiling from source. But I want to change them in decompiled apks. Devs, maybe you can help me out or poit me to theads about that?
Sent from my LG-P500

I guess it's somewere in data/data not in system partition...
Sent from my LG-P500 using xda premium

Maybe, but the problem is that there is no data folder in ROMs zips. Corect me if im wrong
Sent from my LG-P500

HardLight said:
Maybe, but the problem is that there is no data folder in ROMs zips. Corect me if im wrong
Sent from my LG-P500
Click to expand...
Click to collapse
Yeah, you'll have to create/download another zip that flash your stuffs to /data
And, for example the complete path to your settings data is:data/data/com.android.settings/shared_prefs
Sent from my LG-P500 using xda premium

Thanks man :thumbup:. Looks really promissing, will try tomorrow. But i didint see anything about language value in that xml, do you have idea where could it be ?
Sent from my LG-P500

No, I have searched everywhere
Sent from my LG-P500 using xda premium

FPChaim said:
No, I have searched everywhere
Sent from my LG-P500 using xda premium
Click to expand...
Click to collapse
Yeah, I searched in whole /data folder, but still had no luck too . Anyway thanks for trying
Maybe someone else knows, where the language settings are stored?

Most of the common settings are present in bools.xml in decompiled apks

TheAndroidGeek said:
Most of the common settings are present in bools.xml in decompiled apks
Click to expand...
Click to collapse
Already tried this earlier, but I done this again.
Decompiled SystemUI.apk, SettingsProvider.apk, Settings.apk, framework-res.apk and looked into their bools.xml (found 9 of them).
Yes, there are many settings, but nothing about language.
Code:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<bool name="lockscreen_isPortrait">false</bool>
</resources>
<?xml version="1.0" encoding="utf-8"?>
<resources>
<bool name="preferences_prefer_dual_pane">true</bool>
<bool name="show_ongoing_ime_switcher">false</bool>
<bool name="action_bar_expanded_action_views_exclusive">false</bool>
<bool name="target_honeycomb_needs_options_menu">false</bool>
<bool name="config_allowAllRotations">true</bool>
<bool name="config_enableLockScreenRotation">true</bool>
</resources>
<?xml version="1.0" encoding="utf-8"?>
<resources>
<bool name="action_bar_embed_tabs">true</bool>
<bool name="split_action_bar_is_narrow">false</bool>
<bool name="config_allowActionMenuItemTextWithIcon">true</bool>
</resources>
<?xml version="1.0" encoding="utf-8"?>
<resources>
<bool name="has_dock_settings">false</bool>
<bool name="has_silent_mode">true</bool>
<bool name="has_powercontrol_widget">true</bool>
<bool name="config_additional_system_update_setting_enable">false</bool>
<bool name="config_msid_enable">false</bool>
<bool name="has_led_flash">false</bool>
<bool name="config_show_adhoc_network">true</bool>
<bool name="config_show_volumeRockerWake">true</bool>
</resources>
<?xml version="1.0" encoding="utf-8"?>
<resources>
<bool name="has_silent_mode">false</bool>
</resources>
<?xml version="1.0" encoding="utf-8"?>
<resources>
<bool name="def_dim_screen">true</bool>
<bool name="def_airplane_mode_on">false</bool>
<bool name="def_auto_time">true</bool>
<bool name="def_auto_time_zone">true</bool>
<bool name="def_accelerometer_rotation">true</bool>
<bool name="def_screen_brightness_automatic_mode">false</bool>
<bool name="def_haptic_feedback">true</bool>
<bool name="def_bluetooth_on">false</bool>
<bool name="def_install_non_market_apps">true</bool>
<bool name="assisted_gps_enabled">true</bool>
<bool name="def_usb_mass_storage_enabled">true</bool>
<bool name="def_wifi_on">false</bool>
<bool name="def_networks_available_notification_on">true</bool>
<bool name="def_backup_enabled">false</bool>
<bool name="def_notification_pulse">true</bool>
<bool name="def_mount_play_notification_snd">true</bool>
<bool name="def_mount_ums_autostart">false</bool>
<bool name="def_mount_ums_prompt">true</bool>
<bool name="def_mount_ums_notify_enabled">true</bool>
<bool name="def_notifications_use_ring_volume">true</bool>
<bool name="def_vibrate_in_silent">true</bool>
<bool name="def_accessibility_script_injection">false</bool>
<bool name="def_accessibility_speak_password">false</bool>
<bool name="def_touch_exploration_enabled">false</bool>
<bool name="def_dtmf_tones_enabled">true</bool>
<bool name="def_sound_effects_enabled">false</bool>
</resources>
<?xml version="1.0" encoding="utf-8"?>
<resources>
<bool name="config_recents_interface_for_tablets">false</bool>
<bool name="config_recents_thumbnail_image_fits_to_xy">false</bool>
<bool name="config_hspa_data_distinguishable">true</bool>
<bool name="config_showPhoneRSSIForData">false</bool>
<bool name="config_showMin3G">false</bool>
</resources>
<?xml version="1.0" encoding="utf-8"?>
<resources>
<bool name="config_recents_interface_for_tablets">true</bool>
<bool name="config_recents_thumbnail_image_fits_to_xy">true</bool>
</resources>
<?xml version="1.0" encoding="utf-8"?>
<resources>
<bool name="action_bar_embed_tabs">false</bool>
<bool name="split_action_bar_is_narrow">true</bool>
<bool name="preferences_prefer_dual_pane">false</bool>
<bool name="show_ongoing_ime_switcher">true</bool>
<bool name="action_bar_expanded_action_views_exclusive">true</bool>
<bool name="target_honeycomb_needs_options_menu">true</bool>
<bool name="config_sf_limitedAlpha">false</bool>
<bool name="ImsConnectedDefaultValue">false</bool>
<bool name="config_sf_slowBlur">true</bool>
<bool name="config_ui_enableFadingMarquee">true</bool>
<bool name="config_closeDialogWhenTouchOutside">true</bool>
<bool name="config_wifi_dual_band_support">false</bool>
<bool name="config_wifi_p2p_support">false</bool>
<bool name="config_wifi_background_scan_support">false</bool>
<bool name="config_wifi_ap_use_single_interface">false</bool>
<bool name="config_wifi_ap_firmware_reload">true</bool>
<bool name="config_bypass_keyguard_if_slider_open">true</bool>
<bool name="config_automatic_brightness_available">false</bool>
<bool name="config_annoy_dianne">true</bool>
<bool name="config_unplugTurnsOnScreen">true</bool>
<bool name="config_animateScreenLights">false</bool>
<bool name="config_allowAllRotations">false</bool>
<bool name="config_reverseDefaultRotation">false</bool>
<bool name="config_deskDockEnablesAccelerometer">false</bool>
<bool name="config_carDockEnablesAccelerometer">true</bool>
<bool name="config_batterySdCardAccessibility">true</bool>
<bool name="config_use_strict_phone_number_comparation">false</bool>
<bool name="config_intrusiveNotificationLed">false</bool>
<bool name="config_intrusiveBatteryLed">false</bool>
<bool name="config_multiColorBatteryLed">false</bool>
<bool name="config_disableMenuKeyInLockScreen">true</bool>
<bool name="config_enableLockBeforeUnlockScreen">false</bool>
<bool name="config_enableLockScreenRotation">false</bool>
<bool name="config_enable_puk_unlock_screen">true</bool>
<bool name="config_enable_emergency_call_while_sim_locked">true</bool>
<bool name="config_autoBrightnessButtonKeyboard">true</bool>
<bool name="config_swipeDisambiguation">true</bool>
<bool name="config_bluetooth_sco_off_call">true</bool>
<bool name="config_bluetooth_wide_band_speech">true</bool>
<bool name="config_bluetooth_adapter_quick_switch">false</bool>
<bool name="config_voice_capable">true</bool>
<bool name="config_sms_capable">true</bool>
<bool name="config_sip_wifi_only">false</bool>
<bool name="config_built_in_sip_phone">true</bool>
<bool name="skip_restoring_network_selection">false</bool>
<bool name="config_showMenuShortcutsWhenKeyboardPresent">false</bool>
<bool name="config_telephony_use_own_number_for_voicemail">false</bool>
<bool name="config_sms_utf8_support">false</bool>
<bool name="config_mms_content_disposition_support">true</bool>
<bool name="config_smsSamsungCdmaAlternateMessageIDEncoding">false</bool>
<bool name="config_alwaysUseCdmaRssi">false</bool>
<bool name="config_duplicate_port_omadm_wappush">false</bool>
<bool name="config_showNavigationBar">false</bool>
<bool name="config_actionMenuItemAllCaps">true</bool>
<bool name="config_allowActionMenuItemTextWithIcon">false</bool>
<bool name="config_wimaxEnabled">false</bool>
<bool name="config_forceDisableHardwareKeyboard">true</bool>
<bool name="config_hasDockBattery">false</bool>
<bool name="config_symKeyShowsImePicker">true</bool>
<bool name="config_setLandscapeProp">false</bool>
<bool name="config_screenOffAnimation">true</bool>
<bool name="config_hasRotationLockSwitch">false</bool>
<bool name="config_samsung_stk">false</bool>
<bool name="lockscreen_isPortrait">true</bool>
</resources>
Did I missed them or I need to look in other .apk ?

Hi , I found were are the settings for language and country , they are on data/property (I'm sure you'll find the right files inside that folder )
Sent from my LG-P500 using xda premium

Awesome,thx mate. I think you almost solved my question, now it just would be intresting to know how to change all these settings in system apks source. So if you (or someone else) will find it out, share it here
Sent from my LG-P500 using xda premium

No clues bro
Sent from my LG-P500 using xda premium

Related

Mms theme help

Anyone know what PNG file or XML to change the background color I hate the white n I've tried just about everything to change it n it will not change any help is appreciated
Sent from my SAMSUNG-SGH-I727 using xda premium
+1
I feel the same way
which ROM are you running?
Is it this part? (see: red text on 4th line)
/res/layout/conversation_list_screen.xml
Code:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout android:layout_width="fill_parent" android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android">
<ListView android:scrollbarStyle="insideOverlay" android:id="@android:id/list" [COLOR="Red"]android:background="@android:color/white"[/COLOR] android:fadingEdgeLength="16.0dip" android:layout_width="fill_parent" android:layout_height="fill_parent" android:drawSelectorOnTop="false" android:cacheColorHint="@android:color/white" style="?android:attr/listViewWhiteStyle" />
<TextView android:textAppearance="?android:textAppearanceMedium" android:gravity="center" android:id="@id/empty" android:layout_width="fill_parent" android:layout_height="fill_parent" android:text="@string/no_conversations" />
</RelativeLayout>
edit: step-by-step guide here:
[How to] Theme your Mms - A Step by Step Guide (RootzWiki)
seans newest e-6
if it was in there i would try that one but nothing to do with background in that file
Flash the black messaging apk found in the theme and app section
CM9 Skyrocket

[GUIDE][UPDATE] tw30launcher support transparent statusbar + 5 icons drawer

i just create a simple tuts ho to make touchwiz30launcher support transparent statusbar, let's go to check this
Tools:
1. apk manager or other (must know the basic compile-decompile)
2. notepad++ or other
3. touchwiz30launcher deodex
4. ice cube (for people who are confused) hehe :fingers-crossed:
Instructions:
1. decompile touchwiz30launcher using apkmanager
2. go to res/xml-ldpi
3. open launcher_config.xml using notepad++
4. change
Code:
<?xml version="1.0" encoding="utf-8"?>
<config
xmlns:launcher="http://schemas.android.com/apk/res/com.sec.android.app.twlauncher ">
<columnno launcher:menuColumnCount="4" />
<itemno launcher:itemNumOfPage="12" />
<pageindicator launcher:useLargeDrawablesOnly="false" />
<launcher launcher:screenCount="7" launcher:defaultScreenCount="3" launcher:use16BitWindow="true" launcher:useImageMenu="false" />
<product launcher:modelFamily="S1" launcher:model="GT-I5800" />
</config>
to
Code:
<?xml version="1.0" encoding="utf-8"?>
<config
xmlns:launcher="http://schemas.android.com/apk/res/com.sec.android.app.twlauncher ">
<columnno launcher:menuColumnCount="4" />
<itemno launcher:itemNumOfPage="12" />
<pageindicator launcher:useLargeDrawablesOnly="false" />
<launcher launcher:screenCount="7" launcher:defaultScreenCount="3" launcher:use16BitWindow="false" launcher:useImageMenu="false" />
<product launcher:modelFamily="S1" launcher:model="GT-I5800" />
</config>
5. compile again and make sure the error does not occur when compile
6. push to system/app
touchwiz30launcher modded
update support 5 icon drawer​
and this is tuts for change 4 to 5 icons drawer. equipment the same as above, but how to apply is different
steps:
1. go to res/layout-ldpi
2. open launcher.xml with notepad++
3. search
HTML:
<com.sec.android.app.twlauncher.AppShortcutZone android:layout_gravity="bottom|center" android:id="@id/shortcut_zone" android:layout_width="fill_parent" android:layout_height="@dimen/menu_top_item_height" launcher:iconColumnCount="4" />
<com.sec.android.app.twlauncher.DeleteZone android:layout_gravity="bottom|center" android:id="@id/delete_zone" android:visibility="invisible" android:layout_width="fill_parent" android:layout_height="50.659973dip" launcher:applyIconHoverColorFilter="false" launcher:drawDeleteZoneBg="true" launcher:inOutAnimationTranslationRatio="1.0" launcher:inOutAnimationDuration="200">
<FrameLayout android:id="@id/remove_zone" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_weight="1.0">
<TextView android:textSize="18.659973dip" android:textColor="#ffffffff" android:gravity="center" android:layout_gravity="center" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/remove" android:singleLine="true" android:drawableLeft="@drawable/homescreen_remove_icon" android:drawablePadding="6.659973dip" />
</FrameLayout>
chage to
HTML:
<com.sec.android.app.twlauncher.AppShortcutZone android:layout_gravity="bottom|center" android:id="@id/shortcut_zone" android:layout_width="fill_parent" android:layout_height="@dimen/menu_top_item_height" launcher:iconColumnCount="5" />
<com.sec.android.app.twlauncher.DeleteZone android:layout_gravity="bottom|center" android:id="@id/delete_zone" android:visibility="invisible" android:layout_width="fill_parent" android:layout_height="50.659973dip" launcher:applyIconHoverColorFilter="false" launcher:drawDeleteZoneBg="true" launcher:inOutAnimationTranslationRatio="1.0" launcher:inOutAnimationDuration="200">
<FrameLayout android:id="@id/remove_zone" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_weight="1.0">
<TextView android:textSize="18.659973dip" android:textColor="#ffffffff" android:gravity="center" android:layout_gravity="center" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/remove" android:singleLine="true" android:drawableLeft="@drawable/homescreen_remove_icon" android:drawablePadding="6.659973dip" />
</FrameLayout>
4. then, go to smali/com/sec/android/app/twlauncher
5. open AppShortcutZone.smali
6. find text
HTML:
const/4 v8, 0x3
replace 0x3 with 0x4
7. done
touchwiz30launcher.apk
UPDATE​transparent menu
this
thanks to:
-Jono Rinugroho (tester)
-Anri Dicky's (screenshot)
-(Temporary) Official Grup gYoung Indonesia
-You
Press Thanks if Helped :victory:
long time no see you brotha :3
Thanx
Sent from my GT-S5360 using xda app-developers app
It works :S really awesome
But... Do you have touchwiz with 4x4 grid? :3 and folders support..? :3
I'm just asking because tw is really good but folders and grid is very important for me ;]
Thanks
Wysyłane z mojego GT-S5360 za pomocą Tapatalk 2
kurotsugi said:
long time no see you brotha :3
Click to expand...
Click to collapse
haha yes sir, work in the real world makes me too busy doing it so I rarely make it to appear out and now I have a problem that is enough to make me sad, my vga laptop that type vga on board were error this makes me very sad and confused what to do :crying: :crying: :crying:
yousef8824 said:
Thanx
Sent from my GT-S5360 using xda app-developers app
Click to expand...
Click to collapse
ur welcome bro :highfive:
Hrustus said:
It works :S really awesome
But... Do you have touchwiz with 4x4 grid? :3 and folders support..? :3
I'm just asking because tw is really good but folders and grid is very important for me ;]
Thanks
Wysyłane z mojego GT-S5360 za pomocą Tapatalk 2
Click to expand...
Click to collapse
thanks sir maybe will be added soon if i have free time
Someone already posted a tweak similar to the OP at the themes and apps section. Anyway, that tweak should have been posted here. So, thanks OP!
bumslayer said:
Someone already posted a tweak similar to the OP at the themes and apps section. Anyway, that tweak should have been posted here. So, thanks OP!
Click to expand...
Click to collapse
Are you seriously before someone has posted something like this? oh I'm so sorry, I did not even know before. sorry, I'm so sorry :crying:
that was just a discussion between chamath and another member in his thread about modified launcher. no specific thread about this topic in this forum until this thread was created.
kurotsugi said:
that was just a discussion between chamath and another member in his thread about modified launcher. no specific thread about this topic in this forum until this thread was created.
Click to expand...
Click to collapse
means am I wrong? If yes, I am very sorry for this
no...you're doing it right
kurotsugi said:
no...you're doing it right
Click to expand...
Click to collapse
thanks brotha, this makes me a better feeling :highfive:
Idea!
What about text in dock? :->
Have a nice day!
ocoot said:
i just create a simple tuts ho to make touchwiz30launcher support transparent statusbar, let's go to check this
Tools:
1. apk manager or other (must know the basic compile-decompile)
2. notepad++ or other
3. touchwiz30launcher deodex
4. ice cube (for people who are confused) hehe :fingers-crossed:
Instructions:
1. decompile touchwiz30launcher using apkmanager
2. go to res/xml-ldpi
3. open launcher_config.xml using notepad++
4. change
Code:
<?xml version="1.0" encoding="utf-8"?>
<config
xmlns:launcher="http://schemas.android.com/apk/res/com.sec.android.app.twlauncher ">
<columnno launcher:menuColumnCount="4" />
<itemno launcher:itemNumOfPage="12" />
<pageindicator launcher:useLargeDrawablesOnly="false" />
<launcher launcher:screenCount="7" launcher:defaultScreenCount="3" launcher:use16BitWindow="true" launcher:useImageMenu="false" />
<product launcher:modelFamily="S1" launcher:model="GT-I5800" />
</config>
to
Code:
<?xml version="1.0" encoding="utf-8"?>
<config
xmlns:launcher="http://schemas.android.com/apk/res/com.sec.android.app.twlauncher ">
<columnno launcher:menuColumnCount="4" />
<itemno launcher:itemNumOfPage="12" />
<pageindicator launcher:useLargeDrawablesOnly="false" />
<launcher launcher:screenCount="7" launcher:defaultScreenCount="3" launcher:use16BitWindow="false" launcher:useImageMenu="false" />
<product launcher:modelFamily="S1" launcher:model="GT-I5800" />
</config>
5. compile again and make sure the error does not occur when compile
6. push to system/app
thanks to:
-Jono Rinugroho (tester)
-Anri Dicky's (screenshot)
-(Temporary) Official Grup gYoung Indonesia
-You
Press Thanks if Helped :victory:
touchwiz30launcher modded
update support 5 icon drawer​
and this is tuts for change 4 to 5 icons drawer. equipment the same as above, but how to apply is different
steps:
1. go to res/layout-ldpi
2. open launcher.xml with notepad++
3. search
HTML:
<com.sec.android.app.twlauncher.AppShortcutZone android:layout_gravity="bottom|center" android:id="@id/shortcut_zone" android:layout_width="fill_parent" android:layout_height="@dimen/menu_top_item_height" launcher:iconColumnCount="4" />
<com.sec.android.app.twlauncher.DeleteZone android:layout_gravity="bottom|center" android:id="@id/delete_zone" android:visibility="invisible" android:layout_width="fill_parent" android:layout_height="50.659973dip" launcher:applyIconHoverColorFilter="false" launcher:drawDeleteZoneBg="true" launcher:inOutAnimationTranslationRatio="1.0" launcher:inOutAnimationDuration="200">
<FrameLayout android:id="@id/remove_zone" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_weight="1.0">
<TextView android:textSize="18.659973dip" android:textColor="#ffffffff" android:gravity="center" android:layout_gravity="center" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/remove" android:singleLine="true" android:drawableLeft="@drawable/homescreen_remove_icon" android:drawablePadding="6.659973dip" />
</FrameLayout>
chage to
HTML:
<com.sec.android.app.twlauncher.AppShortcutZone android:layout_gravity="bottom|center" android:id="@id/shortcut_zone" android:layout_width="fill_parent" android:layout_height="@dimen/menu_top_item_height" launcher:iconColumnCount="5" />
<com.sec.android.app.twlauncher.DeleteZone android:layout_gravity="bottom|center" android:id="@id/delete_zone" android:visibility="invisible" android:layout_width="fill_parent" android:layout_height="50.659973dip" launcher:applyIconHoverColorFilter="false" launcher:drawDeleteZoneBg="true" launcher:inOutAnimationTranslationRatio="1.0" launcher:inOutAnimationDuration="200">
<FrameLayout android:id="@id/remove_zone" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_weight="1.0">
<TextView android:textSize="18.659973dip" android:textColor="#ffffffff" android:gravity="center" android:layout_gravity="center" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/remove" android:singleLine="true" android:drawableLeft="@drawable/homescreen_remove_icon" android:drawablePadding="6.659973dip" />
</FrameLayout>
4. then, go to smali/com/sec/android/app/twlauncher
5. open AppShortcutZone.smali
6. find text
HTML:
const/4 v8, 0x3
replace 0x3 with 0x4
7. done
touchwiz30launcher.apk
Click to expand...
Click to collapse
Can you plz post more screen shot of your launcher
Sent from my GT-S5360 using xda premium
Noob Question
Hi very nice tut,i am a noob so question is,is there any of the launchers who already have the 5 drawer just to download and push it, i dont know anything of notepad+++ and compieling...
thank you
marinalin85 said:
What about text in dock? :->
Have a nice day!
Click to expand...
Click to collapse
what mean? change the color?
jerryn70 said:
Can you plz post more screen shot of your launcher
Sent from my GT-S5360 using xda premium
Click to expand...
Click to collapse
sorry, i'm use creeds rom and I do not think this rom can't show the launcher (don't know why) so when I'm done editing, I need a tester for test results
denniz05 said:
Hi very nice tut,i am a noob so question is,is there any of the launchers who already have the 5 drawer just to download and push it, i dont know anything of notepad+++ and compieling...
thank you
Click to expand...
Click to collapse
go launcher, adw ex, holo launcher already have the 5 icons drawer bro. whether here yet available keys to compile decompile?
ocoot said:
go launcher, adw ex, holo launcher already have the 5 icons drawer bro. whether here yet available keys to compile decompile?
Click to expand...
Click to collapse
that i know,but i want to keep the stock launcher,but with 5 icon drawer,i pushed number 2 of yours,not the modded one...and it is much faster but need the last icon that i dont know how too

[HOW-TO][GUIDE] How to Disable Capacitive Touchkey Light for CM9 & CM10

​Disabling Capacitive Button's Backlight
Over review:​
Decompile framework-res.apk
Edit bool.xml
Recompile APK
Sign APK
Procedure:
Decompile framework-res.apk
Go to framework/res/value/bools.xml
Find these Two lines:
<bool name="config_automatic_brightness_available">true</bool>
Click to expand...
Click to collapse
AND
<bool name="config_autoBrightnessButtonKeyboard">true</bool>
Click to expand...
Click to collapse
Make Sure that the value in these two lines must be >true<
That's All :angel:

[GUIDE][SecLauncher] Make seclauncher(samsung launcher) super snappy and fast

This guide is just a quick guide on making seclauncher faster by changing integers...
the only tool you need would be the one i made here - Quickmod tool
1. Decompile seclauncher (in my case seclaucher3.apk)
2. go to res/values and open integers.xml
3. Find this line (note, your integer value might be different in any of these steps)
NOTE: the lower the value the faster the launcher gets. mine just maintain the smootheness.
Code:
<integer name="config_workspaceUnshrinkTime">[COLOR="Red"]300[/COLOR]</integer>
Change it to
Code:
<integer name="config_workspaceUnshrinkTime">[COLOR="Blue"]250[/COLOR]</integer>
4. Find this
Code:
<integer name="config_appsCustomizeWorkspaceAnimationStagger">[COLOR="Red"]40[/COLOR]</integer>
Change it to
Code:
<integer name="config_appsCustomizeWorkspaceAnimationStagger">[COLOR="Blue"]30[/COLOR]</integer>
5. Find these
Code:
<integer name="config_crosshairsFadeInTime">[COLOR="Red"]600[/COLOR]</integer>
<integer name="config_dragOutlineFadeTime">[COLOR="red"]900[/COLOR]</integer>
<integer name="config_folderAnimDuration">[COLOR="red"]200[/COLOR]</integer>
<integer name="config_scrollZoneScrollDelay">[COLOR="red"]500[/COLOR]</integer>
Change them to
Code:
<integer name="config_crosshairsFadeInTime">[COLOR="Blue"]525[/COLOR]</integer>
<integer name="config_dragOutlineFadeTime">[COLOR="blue"]800[/COLOR]</integer>
<integer name="config_folderAnimDuration">[COLOR="blue"]175[/COLOR]</integer>
<integer name="config_scrollZoneScrollDelay">[COLOR="blue"]400[/COLOR]</integer>
6. Find this
Code:
<integer name="config_pagePreviewSnapDelay">[COLOR="Red"]400[/COLOR]</integer>
Change it to
Code:
<integer name="config_pagePreviewSnapDelay">[COLOR="Blue"]300[/COLOR]</integer>
7. This step the folder could differ, Go to res/values-sw359dp-xxhdpi <------ this could very likely be different.
8. Open integers.xml
9. Find this
Code:
<integer name="page_snap_animation_duration">[COLOR="Red"]520[/COLOR]</integer>
Change it to
Code:
<integer name="page_snap_animation_duration">[COLOR="blue"]300[/COLOR]</integer>
And thats it! recompile and feel how speedy/smoothe it is
thanks mate!
This sounds wonderful, but I have a question, if anyone can answer, if its this simple to make it much better, why is Sammy sending it out the way it is now aka crappy, when Sammy themselves could put it out with the new settings and be better out of the box. Do Sammy have a reason for sending out with the original settings? saving battery or some other reason?
I don't want to sound like I'm knocking your stuff but I don't understand why something this simple isn't already done.
Sent from my GT-I9505 using xda app-developers app
I decompile my seclauncher3.apk but there is no values folder in res and no integers.xml file in any folder I'm using JB4.3 XXUEMK9 I9505
Send from my I9505 using XDA Premium App
ranger4740 said:
This sounds wonderful, but I have a question, if anyone can answer, if its this simple to make it much better, why is Sammy sending it out the way it is now aka crappy, when Sammy themselves could put it out with the new settings and be better out of the box. Do Sammy have a reason for sending out with the original settings? saving battery or some other reason?
I don't want to sound like I'm knocking your stuff but I don't understand why something this simple isn't already done.
Sent from my GT-I9505 using xda app-developers app
Click to expand...
Click to collapse
I would not have a clue..
LyuboA said:
I decompile my seclauncher3.apk but there is no values folder in res and no integers.xml file in any folder I'm using JB4.3 XXUEMK9 I9505
Send from my I9505 using XDA Premium App
Click to expand...
Click to collapse
Well then it hasnt decompiled properly...
not working
I decompile my seclauncher3 with apk tool and change the value but not the same as your values and recompile but its not working. I have gt i9500 with 4.3. Can you post your seclauncher3.apk? Thanks
[email protected] said:
I decompile my seclauncher3 with apk tool and change the value but not the same as your values and recompile but its not working. I have gt i9500 with 4.3. Can you post your seclauncher3.apk? Thanks
Click to expand...
Click to collapse
change the values to the same as mine!
ricky310711 said:
change the values to the same as mine!
Click to expand...
Click to collapse
Can u do an example for us with this i9505 MKF seclauncher: https://www.dropbox.com/s/fj0s50ovu6...cLauncher3.apk
I can't find the value folder either
tranbeelze said:
Can u do an example for us with this i9505 MKF seclauncher: https://www.dropbox.com/s/fj0s50ovu6...cLauncher3.apk
I can't find the value folder either
Click to expand...
Click to collapse
decompile it and upload the res folder?
ricky310711 said:
decompile it and upload the res folder?
Click to expand...
Click to collapse
here is the res folder: https://www.dropbox.com/s/4o9kgmx3i0dq8ti/res.zip :fingers-crossed:
tranbeelze said:
here is the res folder: https://www.dropbox.com/s/4o9kgmx3i0dq8ti/res.zip :fingers-crossed:
Click to expand...
Click to collapse
Hmm, did you install framework prior to this? Send me your .apk!
works now.thanks man
Those with seclauncher2? Can this work for me?
Sent from my GT-N7000 using xda premium
NoteboyTech said:
Those with seclauncher2? Can this work for me?
Sent from my GT-N7000 using xda premium
Click to expand...
Click to collapse
ofcoarse!
i will be adding more to this soon!
Does someone know what I have to do to maximize the numbers of apps placed at the bottom of the screen?
I mean the place, where the menu icon is located. (is it called menu bar? I don't know )
And would it be possible to make this bar scrollable (like the homescreen itself)?
Praetoriani said:
Does someone know what I have to do to maximize the numbers of apps placed at the bottom of the screen?
I mean the place, where the menu icon is located. (is it called menu bar? I don't know )
And would it be possible to make this bar scrollable (like the homescreen itself)?
Click to expand...
Click to collapse
you need to mod the values in dimens.xml
ricky310711 said:
you need to mod the values in dimens.xml
Click to expand...
Click to collapse
So this is the content of \res\values\dimens.xml
Code:
<item type="dimen" name="config_menuBgDarkenAmountNormal">0.1</item>
<item type="dimen" name="config_bgDarkenAmountEdit">0.3</item>
<item type="dimen" name="config_wsBaseDarkenAmountEdit">0.1</item>
<item type="dimen" name="config_bgDarkenAmountContextualPage">0.4</item>
<dimen name="folderIcon_hCenterAlign">-100.0px</dimen>
<dimen name="folderIcon_hRightAlign">-200.0px</dimen>
<dimen name="hoverScrollVerticalPaddingMatchParent">-1.0px</dimen>
<dimen name="config_dynamicShadowOffset">2.669983dip</dimen>
<dimen name="config_dynamicShadowBorder">1.0dip</dimen>
<dimen name="ged_home_cellWidth_land">106.0dip</dimen>
<dimen name="ged_home_cellWidth_port">80.0dip</dimen>
<dimen name="ged_home_cellHeight_land">74.0dip</dimen>
<dimen name="ged_home_cellHeight_port">100.0dip</dimen>
<dimen name="downloaded_text_padding">0.0dip</dimen>
<dimen name="help_hub_gallery_image_margin_left">0.0dip</dimen>
<dimen name="help_hub_gallery_image_margin_top">0.0dip</dimen>
<dimen name="help_hub_live_wallpaper_image_margin_left">0.0dip</dimen>
<dimen name="help_hub_live_wallpaper_image_margin_top">0.0dip</dimen>
<dimen name="help_hub_wallpaper_image_margin_left">0.0dip</dimen>
<dimen name="help_hub_wallpaper_image_margin_top">0.0dip</dimen>
<dimen name="help_hub_wallpaper_type_image_margin_top">0.0dip</dimen>
<dimen name="menu_downloaded_icon_margin_top">0.0dip</dimen>
<dimen name="help_hub_change_wallpaper_pointer_up_margin_top">0.0dip</dimen>
<dimen name="help_hub_move_apps_up_pointer_margin_top">0.0dip</dimen>
<dimen name="help_hub_chooser_insert_item_pointer_up_margin_top">0.0dip</dimen>
Which values I have to edit to put more icons/apps at the bottom of my screen?
Or do you mean a different dimens.xml? I found some more in \res\values-sw800dp\ and \res\values-sw800dp-land\
Praetoriani said:
So this is the content of \res\values\dimens.xml
Code:
<item type="dimen" name="config_menuBgDarkenAmountNormal">0.1</item>
<item type="dimen" name="config_bgDarkenAmountEdit">0.3</item>
<item type="dimen" name="config_wsBaseDarkenAmountEdit">0.1</item>
<item type="dimen" name="config_bgDarkenAmountContextualPage">0.4</item>
<dimen name="folderIcon_hCenterAlign">-100.0px</dimen>
<dimen name="folderIcon_hRightAlign">-200.0px</dimen>
<dimen name="hoverScrollVerticalPaddingMatchParent">-1.0px</dimen>
<dimen name="config_dynamicShadowOffset">2.669983dip</dimen>
<dimen name="config_dynamicShadowBorder">1.0dip</dimen>
<dimen name="ged_home_cellWidth_land">106.0dip</dimen>
<dimen name="ged_home_cellWidth_port">80.0dip</dimen>
<dimen name="ged_home_cellHeight_land">74.0dip</dimen>
<dimen name="ged_home_cellHeight_port">100.0dip</dimen>
<dimen name="downloaded_text_padding">0.0dip</dimen>
<dimen name="help_hub_gallery_image_margin_left">0.0dip</dimen>
<dimen name="help_hub_gallery_image_margin_top">0.0dip</dimen>
<dimen name="help_hub_live_wallpaper_image_margin_left">0.0dip</dimen>
<dimen name="help_hub_live_wallpaper_image_margin_top">0.0dip</dimen>
<dimen name="help_hub_wallpaper_image_margin_left">0.0dip</dimen>
<dimen name="help_hub_wallpaper_image_margin_top">0.0dip</dimen>
<dimen name="help_hub_wallpaper_type_image_margin_top">0.0dip</dimen>
<dimen name="menu_downloaded_icon_margin_top">0.0dip</dimen>
<dimen name="help_hub_change_wallpaper_pointer_up_margin_top">0.0dip</dimen>
<dimen name="help_hub_move_apps_up_pointer_margin_top">0.0dip</dimen>
<dimen name="help_hub_chooser_insert_item_pointer_up_margin_top">0.0dip</dimen>
Which values I have to edit to put more icons/apps at the bottom of my screen?
Or do you mean a different dimens.xml? I found some more in \res\values-sw800dp\ and \res\values-sw800dp-land\
Click to expand...
Click to collapse
fo to res/values-**dpi and look for dimens.xml, there should be alot more then that!
Good
Work Perfect on my galaxy s2 plus 4.2.2
Thank You

[TUT]Developing G3 TweaksBox Themes

As many of you know, in the new release of G3 TweaksBox i implemented a theme engine that allows users to develop their own themes.Creating themes is really simple:at the end of this post you can find a theme example i created with resources provided by @Kickoff and an empty theme template you can use to develop your own themes.
What can you theme ?
SystemUI(see LGSystemUI.apk)
LockScreen(see LGKeyguard.apk)
Phonebook,InCallUI,TeleService(see LGContacts.apk,InCallUI.apk,LGTeleservice.apk)
Message App(see LGMessage.apk)
Settings(see LGSettings.apk and LGEasySettings.apk)
More to come....
1)Modify the package name:
Open the MANIFEST(AndroidManifest.xml) and change the package name.
Code:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="[COLOR="Red"][B]it.ptoti.systemui_theme.htc[/B][/COLOR]"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="19"
android:targetSdkVersion="19" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="it.ptoti.systemui_theme.htc.MainActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<action android:name="it.ptoti.g3_tweaksbox.systemui.THEME"/>
<!-- <action android:name="it.ptoti.g3_tweaksbox.settings.THEME"/> -->
<!-- <action android:name="it.ptoti.g3_tweaksbox.lockscreen.THEME"/> -->
<!-- <action android:name="it.ptoti.g3_tweaksbox.incallui.THEME"/> -->
<!-- <action android:name="it.ptoti.g3_tweaksbox.phonebookapp.THEME"/> -->
<!-- <action android:name="it.ptoti.g3_tweaksbox.messageapp.THEME"/> -->
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>
</application>
</manifest>
2)Change Theme Name:
Open the strings.xml file(res/values/) and change the theme name
Code:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">[COLOR="Red"]HTC Panel THEME<[/COLOR]/string>
</resources>
2-1)Add Intents in the Manifest File:
Code:
<action android:name="it.ptoti.g3_tweaksbox.systemui.THEME"/> [COLOR="Red"]for the LGSystemUI[/COLOR]
<action android:name="it.ptoti.g3_tweaksbox.settings.THEME"/> [COLOR="red"] for the LGSettings[/COLOR]
<action android:name="it.ptoti.g3_tweaksbox.easysettings.THEME"/> [COLOR="red"] for the LGEasySettings[/COLOR]
<action android:name="it.ptoti.g3_tweaksbox.lockscreen.THEME"/> [COLOR="red"]for LGKeyGuard[/COLOR]
<action android:name="it.ptoti.g3_tweaksbox.incallui.THEME"/> [COLOR="red"] for InCallUi[/COLOR]
<action android:name="it.ptoti.g3_tweaksbox.teleservice.THEME"/> [COLOR="red"] for TeleService[/COLOR]
<action android:name="it.ptoti.g3_tweaksbox.phonebookapp.THEME"/> [COLOR="red"]for LGContacts[/COLOR]
<action android:name="it.ptoti.g3_tweaksbox.messageapp.THEME"/> [COLOR="red"]for LGMessage[/COLOR]
Manifest example : Here you can see a manifest example of theme for SystemUI and Settings only
Code:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="it.ptoti.systemui_theme.template"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="19"
android:targetSdkVersion="19" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="it.ptoti.systemui_theme.htc.MainActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
[COLOR="red"][SIZE="3"] <action android:name="it.ptoti.g3_tweaksbox.systemui.THEME"/>
<action android:name="it.ptoti.g3_tweaksbox.settings.THEME"/>[/SIZE][/COLOR]
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>
</application>
</manifest>
3)REPLACING RESOURCES:
REPLACING QUICKSETTINGS' ICONS AND ANIMATIONS:
You just have to put your modified resources in the relative folders. Drawables MUST have the same name they have in the SystemUI package: if G3 TWB finds them it replaces the original resources with the themes' ones.
Also,you have to add these lines to the theme.xml you can find in the xml folder
<Drawable name="indi_noti_rearrange_normal" />
<Drawable name="indi_noti_rearrange_pressed" />
<Drawable name="quicksetting_button_edit_bg" />
REPLACE OTHER RESOURCES:
Other resources MUST be ALSO defined in the relative xml file you can find in the xml folder:
theme.xml -----------------> For the SystemUI
theme_contacts.xml -------------> For LGContacts.apk
theme_incallui.xml ---------------> For InCallUI.apk
theme_lockscreen.xml -----------> For LGKeyGuard.apk
theme_messageapp --------------> For LGMessage.apk
theme_settings.xml ---------------> For LGSettings.apk
theme_teleservice.xml------------------> For LGTeleService.apk
theme_easysettings.xml---------------> For LGEasySettings.apk
Let's take a look to an example.
Code:
<?xml version="1.0" encoding="utf-8"?>
<G3_TweaksBox_SystemUI_Theme version="1">
<Drawable name="ic_brightness_auto_check"/>
<Drawable name="ic_launcher_settings" />
<Drawable name="scrubber_primary_holo" />
<Drawable name="ic_notify_settings_set" />
<Drawable name="indi_noti_btn_vol_set" />
<Drawable name="ic_notify_quicksetting_brightness_panel" />
<Drawable name="ic_notify_quicksetting_ringtone" />
<Drawable name="indi_noti_btn_clear" />
<Color name="np_clock" replacement="#FF00FF00"/>
<Color name="bg_expanded" replacement="#FF000000" />
</G3_TweaksBox_SystemUI_Theme>
To replace a drawable the syntax is:
Code:
<Drawable name="name_of_original_drawable" replacement="name_of_the_drawable_in_your_theme" / >
The replacement attribute is optional: if you name the drawable as the original one in the SystemUI you can omit it.
You can also replace a Drawable with a color with the following syntax:
Code:
<Drawable name="name_of_original_drawable" replacement="colorDrawable:#AARRGGBB" / >
Where AARRGGBB is the color code in the ARGB format(but you can use also RGB format)
To replace a color the syntax is the following:
Code:
<Color name="name_of_original_color" replacement="#AARRGGBB" />
If you want to replace a drawable(or a color) which is actually in the framework-res you can use the same syntax but you have to add the packageRes attribute, example :
Code:
<Drawable respackage="com.lge" name="switch_thumb_activated_holo_light"/>
To replace a dimension the syntax is the following:
Code:
<Dimen name="name_of_original_dimension" replacement="20.0" />
The replacement must be a dip value not a px one.
To replace an integer the syntax is the following:
Code:
<Integer name="name_of_original_integer" replacement="20" />
To assign a backgound(Drawable or Color) to any layout the syntax is the following :
Code:
<LayoutBackground name="layout_name" background="name_of_the_drawable" />
To assign a background(Drawable or Color) to any child layout the syntax is the following :
Code:
<LayoutBackground name="master_layout_name" child="child_layout_name" background="name_of_the_drawable" />
That's all,remember to sign the theme before trying to install it. The TUT will be updated when new features are added to the theme engine.
Very good work!
Just what I needed. Thanks
blackbearblanc said:
Just what I needed. Thanks
Click to expand...
Click to collapse
what's up black..! u picked up a g3..? NICE..!
Sent from my LGLS990 using Tapatalk
matthew0776 said:
what's up black..! u picked up a g3..? NICE..!
Sent from my LGLS990 using Tapatalk
Click to expand...
Click to collapse
Sis yes sir! Got a free one from LG to review!
blackbearblanc said:
Just what I needed. Thanks
Click to expand...
Click to collapse
I was about to share this with you lol.
blackbearblanc said:
Sis yes sir! Got a free one from LG to review!
Click to expand...
Click to collapse
NICE... so...u got plans with the template..? lol I'm gonna try and get the Candy shop Softkeys going if possible... are u using apktool
Sent from my LGLS990 using Tapatalk
Dammit - howcome i cant import any of them into eclipse??
Nothing happens. And if dragging folder into workspace - it says "Destination folder must be accessible"
---------- Post added at 07:45 PM ---------- Previous post was at 07:34 PM ----------
silly me - yes apktools, not just 7zip
matthew0776 said:
NICE... so...u got plans with the template..? lol I'm gonna try and get the Candy shop Softkeys going if possible... are u using apktool
Sent from my LGLS990 using Tapatalk
Click to expand...
Click to collapse
You can't theme SoftKeys in this way. SoftKeys res are actually out of the SystemUI package. The ROM already comes with a SoftKey theme engine which is fully working if you are using G2/G3 TWB. I explained a long time ago how to develop softkeys themes infact you can find a lot of themes already on the scene
http://forum.xda-developers.com/showthread.php?p=52818274
http://forum.xda-developers.com/showthread.php?p=52818274
http://forum.xda-developers.com/showthread.php?p=52818274
blackbearblanc said:
Dammit - howcome i cant import any of them into eclipse??
Nothing happens. And if dragging folder into workspace - it says "Destination folder must be accessible"
Click to expand...
Click to collapse
They are compiled apk, most themers don't use eclipse just decompile/recompile the package. Anyway i'm more than pleased you use eclipse. Attached you can find the template
P_Toti said:
You can't theme SoftKeys in this way. SoftKeys res are actually out of the SystemUI package. The ROM already comes with a SoftKey theme engine which is fully working if you are using G2/G3 TWB. I explained a long time ago how to develop softkeys themes infact you can find a lot of themes already on the scene
http://forum.xda-developers.com/showthread.php?p=52818274
http://forum.xda-developers.com/showthread.php?p=52818274
http://forum.xda-developers.com/showthread.php?p=52818274
They are compiled apk, most themers don't use eclipse just decompile/recompile the package. Anyway i'm more than pleased you use eclipse. Attached you can find the template
Click to expand...
Click to collapse
so what's themeable ? SystemUI ?
Sent from my LGLS990 using Tapatalk
---------- Post added at 07:10 PM ---------- Previous post was at 07:09 PM ----------
matthew0776 said:
so what's themeable ? SystemUI ?
oh snap...u have some of the CS keys already...sweet..!
Sent from my LGLS990 using Tapatalk
Click to expand...
Click to collapse
Sent from my LGLS990 using Tapatalk
matthew0776 said:
so what's themeable ? SystemUI ?
Sent from my LGLS990 using Tapatalk
Click to expand...
Click to collapse
Also softkeys are themeable, simply you can't theme them using this TUT. If you want i can write another tut explaining how to develop softkeys themes. Anyway yes at the moment you can theme only the SystemUI but, as i explained in the first post the theme engine is in a early stage. It will be much more powerful in the 1.3 and you will able to theme other apps too.
Strings.xml is not present in values folder.
and values 11 and 14 gives me errors. One of them is empty. other one has: <?xml version="1.0" encoding="UTF-8"?>
<resources>
<style name="AppBaseTheme" parent="@android:style/Animation.TypingFilterRestore" />
</resources>
P_Toti said:
Also softkeys are themeable, simply you can't theme them using this TUT. If you want i can write another tut explaining how to develop softkeys themes. Anyway yes at the moment you can theme only the SystemUI but, as i explained in the first post the theme engine is in a early stage. It will be much more powerful in the 1.3 and you will able to theme other apps too.
Click to expand...
Click to collapse
Why it using the default softkeys on the launcher? I never got it.
P_Toti said:
They are compiled apk, most themers don't use eclipse just decompile/recompile the package. Anyway i'm more than pleased you use eclipse. Attached you can find the template
Click to expand...
Click to collapse
AH! Just saw this. Thanks man
---------- Post added at 08:32 PM ---------- Previous post was at 08:28 PM ----------
And we shouldnt edit this in manifest? android:name="it.ptoti.systemui_theme.htc.MainActivity"
blackbearblanc said:
AH! Just saw this. Thanks man
---------- Post added at 08:32 PM ---------- Previous post was at 08:28 PM ----------
And we shouldnt edit this in manifest? android:name="it.ptoti.systemui_theme.htc.MainActivity"
Click to expand...
Click to collapse
You could change the activity name without generating any issue but i don't advice it. Some AV could report the theme as a false positive if the manifest point to a non-existing activity(don't ask me why but i saw this with softkeys themes). If you want to change the name since you are using eclipse you can safely do it with re-factoring: Right click on the activity------------->Refactor------------>Rename
P_Toti said:
You could change the activity name without generating any issue but i don't advice it. Some AV could report the theme as a false positive if the manifest point to a non-existing activity(don't ask me why but i saw this with softkeys themes). If you want to change the name since you are using eclipse you can safely do it with re-factoring: Right click on the activity------------->Refactor------------>Rename
Click to expand...
Click to collapse
Sorry for the noobness. But are we supposed to copy this folder "drawable-640dpi" from the htc example. And then change icons?. ?
Cause That folder is not inside the eclipsetemplate
blackbearblanc said:
Sorry for the noobness. But are we supposed to copy this folder "drawable-640dpi" from the htc example. And then change icons?. ?
Cause That folder is not inside the eclipsetemplate
Click to expand...
Click to collapse
The template is empty. You have to copy high res to drawable-xxxhdpi which is the same of drawable-640dpi. Obviously you can copy all res from the HTC package but you should copy also selectors and anims that are in drawable folder(basically you have copy the drawable and drawable-640dpi folders).
ok - so these need to stay? values-v11
---------- Post added at 09:43 PM ---------- Previous post was at 09:12 PM ----------
Think i got it. Yoav walked me through it
P_Toti said:
Also softkeys are themeable, simply you can't theme them using this TUT. If you want i can write another tut explaining how to develop softkeys themes. Anyway yes at the moment you can theme only the SystemUI but, as i explained in the first post the theme engine is in a early stage. It will be much more powerful in the 1.3 and you will able to theme other apps too.
Click to expand...
Click to collapse
that would be great...I can package more keys from CandyShop ...Cyberscopes included... I can use eclipse or apktool prefer eclipse for something like this tho...
Sent from my LGLS990 using Tapatalk
---------- Post added at 08:44 PM ---------- Previous post was at 08:43 PM ----------
blackbearblanc said:
ok - so these need to stay? values-v11
---------- Post added at 09:43 PM ---------- Previous post was at 09:12 PM ----------
Think i got it. Yoav walked me through it
Click to expand...
Click to collapse
did it compile via Eclipse Black..?
Sent from my LGLS990 using Tapatalk
blackbearblanc said:
ok - so these need to stay? values-v11
Click to expand...
Click to collapse
No, you can delete them. That folder was automatically created, it's not needed for the theme.
matthew0776 said:
that would be great...I can package more keys from CandyShop ...Cyberscopes included... I can use eclipse or apktool prefer eclipse for something like this tho...
Sent from my LGLS990 using Tapatalk
Click to expand...
Click to collapse
Ok, i will write a tut very soon.

Categories

Resources