I know you can add:
<module name="defaultTimeFormatSetting">
<function>
<set name="single">
<item name="default">d/MM/yyyy</item>
</set>
</function>
</module>
<module name="defaultTimeFormatSettingShort">
<function>
<set name="single">
<item name="default">d/MM</item>
</set>
</function>
</module>
To system\customize\MNS\default.xml to get the default date format to display as dd/mm/yyyy but what would you add to make the clock default to 12 hour time instead of 24??
Can anyone please help?
Related
Ok guys I'm looking for the xml needed to edit the in call dialer button text color. I know this xml is in Phone.apk can't seem to find the right file.....thanks Lou
Sent from my ADR6300 using XDA App
You've got to do it in both, lou. It's the styles xml files in the values-hdpi folders. Htcdialer.apk and phone.apk for the in call dialer.
Sent from my Droid Incredible using XDA App
res/values-hdpi-v4
Code:
<style name="text_style_dialer_button_number">
<item name="android:textSize">27.0sp</item>
<item name="android:textColor">#ffffffff</item>
<item name="android:layout_gravity">center_horizontal</item>
<item name="android:layout_width">wrap_content</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:shadowColor">#ff000000</item>
<item name="android:shadowDx">2.0</item>
<item name="android:shadowDy">2.0</item>
<item name="android:shadowRadius">1.0</item>
Zero Button
Code:
<style name="text_style_dialer_button_zero_number">
<item name="android:textSize">27.0sp</item>
<item name="android:textColor">#ffffffff</item>
<item name="android:layout_gravity">center</item>
<item name="android:layout_width">wrap_content</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:shadowColor">#ff000000</item>
<item name="android:shadowDx">2.0</item>
<item name="android:shadowDy">2.0</item>
<item name="android:shadowRadius">1.0</item>
In case anyone else is looking for it. This will change the text to white with a black shadow.
You're welcome
Sent from my Droid Incredible using XDA App
OSully said:
You're welcome
Sent from my Droid Incredible using XDA App
Click to expand...
Click to collapse
Thanks, I had actually tried to edit that file in a previous test but put an incorrect color code in I only keyed in 5 "f" values instead of 6 so it didn't work. FYI to get the in call dialer text color changed you don't need to edit HtcDialer.apk those edits are only for the standard Phone Dialer which I had done a few days ago just needed to find that pesky file for the in call text.
id like to make my settings popup menu gloss black, im talking about the short menu that pops up when you click on the menu button. how do i mod this apk? or do i need to mod the color xml instead? im running myn's rls4 btw.
if you guys could help me out or post the required files id appreciate it.
seriously? nobody?...
i'm not sure if settings.apk is what controls the menu that pops up when you press the menu button. Pretty sure that is in framework-res.apk, but i wouldn't swear to it, either. If it is in settings.apk (which would be easier on your end), then using 7zip and ripping into it is prolly your best bet. Hell, you've themed some before. You know how this works.
Settings.apk has nothing to do with the menu that pops up when you press "menu." Settings.apk is for the settings app and power control widget.
What you're looking for is in the framework and called either menu_background.9 or menu_background_fill_parent_width.9 I can't remember off the top of my head.
If you do make it black, you'll have to edit an XML somewhere to make the text another color so you can read it.
sorry if i came off pissed, just frustrated. anybody have the black menu im talking about? can anybody upload their png's or xml for me? i have no clue how to edit xml's at all.
Why not pm myn? His Rom has this feature; ask him directly.
I would also like to know how to do this.
Sent from my netarchy_toast, froyo beast of a machine evo!
Don't quote me on this, but I'm pretty sure the text color is in an XML in the styles folder. Menu_item_something_something rings a bell.
Well firstly you're going to have to decompile the framework-res.apk in akpmanager. and edit the styles.xml file. You will need to change this:
<style name="TextAppearance.Widget.IconMenu.Item" parent="@style/TextAppearance.Small">
<item name="textColor">?textColorPrimaryInverse</item>
to
<style name="TextAppearance.Widget.IconMenu.Item" parent="@style/TextAppearance.Small">
<item name="textColor">@color/bright_foreground_dark</item>
and then you're going to have to change this:
<style name="Theme.ExpandedMenu" parent="@style/Theme">
<item name="listViewStyle">@style/Widget.ListView.Menu</item>
<item name="windowAnimationStyle">@style/Animation.OptionsPanel</item>
<item name="background">@null</item>
<item name="itemTextAppearance">?textAppearanceLargeInverse</item>
</style>
to this:
<style name="Theme.ExpandedMenu" parent="@style/Theme">
<item name="listViewStyle">@style/Widget.ListView.Menu</item>
<item name="windowAnimationStyle">@style/Animation.OptionsPanel</item>
<item name="background">@null</item>
<item name="itemTextAppearance">@style/TextAppearance.Large</item>
</style>
Then you are going to framework-res/res/drawable-hdpi and drawable-hdpi4 or drawable-hdpi-v4) and change menu_background.9 & menu_background_fill_parent_width.9 files to your specified colors but be careful editing the .9 files. and finally you will have to recompile and resign using apkmanager or apktool, whichever you prefer. (note: if you have edited your framework or used the UOT kitchen, more than likely it will not recompile. you will have to start over and make any xml changes, recompile and then use the UOT.
Hi, I am making some application with transparent background (image with alpha channel). All is ok but I would like to have active desktop under activity.
Transparent code xml
Code:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Theme.Transparent" parent="android:Theme">
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowIsFloating">true</item>
<item name="android:backgroundDimEnabled">false</item>
</style>
</resources>
How to do that? I want to make full screen image with active desktop and don't know how. If it's bad forum, please delete and do not ban me, this is my first post here.
So I have found this touchwiz 5.0 launcher
it was originally in the galaxy ace forum, which was in the old devices section so no one would probably have found it
http://forum.xda-developers.com/showthread.php?t=1730313
it is actually the real touchwiz launcher, not some themed holo launcher with a custom dock
it has everything touchwiz 5 has even the transitions
THIS IS ONLY FOR MDPI
Downloads
TouchwizUXV1.10 MDPI :
http://www.mediafire.com/download.php?8cscdcqclgx50ot
Changelog:
Home page increase to 9
Fix-Fullsize Icon
Fix-Folder problem apps name
Partialy Fix-Some 4*2 widgets gone to 4*3
Know issues:
Must copy launcher to system And these file http://www.mediafire.com/download.php?92oc5y90079bwsb to lib ,Set permission rw-r--r-- and reboot
TouchwizUXV1.0 MDPI :
http://www.mediafire.com/download.php?su9hroaraua0kux
bug report :
-1. Some 4*2 widgets gone to 4*3
-2. Folder problem apps name are half
-3. Must copy launcher to system And these file http://www.mediafire.com/download.php?92oc5y90079bwsb to lib ,Set permission rw-r--r-- and reboot
If you like my work click Thanks button
other mod :
SGIII WEATHER WIDGET http://forum.xda-developers.com/showthread.php?t=1724553
Samsung galaxy s3 WallpaperChooser [mdpi] http://forum.xda-developers.com/showthread.php?t=1739617
reboot. you are done enjoy your touchwiz 5 launcher
THANK YOU MAX35000
reserved
Is there a way to get an ldpi version
Thanks
Sent from my E10i using xda premium
Mchasard said:
Is there a way to get an ldpi version
Thanks
Sent from my E10i using xda premium
Click to expand...
Click to collapse
sure there is a way.
all you have to do it decompile the apk, use some image editor to scale every single image down to ldpi size, change the xmls to match ldpi, compile, install it as a system file, then you done
Mchasard said:
Is there a way to get an ldpi version
Thanks
Sent from my E10i using xda premium
Click to expand...
Click to collapse
How to adjust dpi version of TouchWiz
you need to decompil it and adjust the dimentions for all the drawable item in values\dimens.xml it look like this :
<item type="dimen" name="config_menuBgDarkenAmountNormal">0.15</item>
<item type="dimen" name="config_bgDarkenAmountEdit">0.3</item>
<item type="dimen" name="app_icon_size">48.0dip</item> icon size
<item type="dimen" name="clingPunchThroughGraphicCenterRadius">94.0dip</item>
<item type="dimen" name="home_pageMarginPlusPaddingTop">3.0dip</item> Margin between system ui and the first cellules of desk
<item type="dimen" name="home_pageMarginRight">0.0dip</item>
<item type="dimen" name="home_pageSpacing">-1.0dip</item>
<item type="dimen" name="home_editBarHeight">42.0dip</item>
<item type="dimen" name="home_editBarIconTextSize">11.0dip</item>
<item type="dimen" name="home_cellWidth">70.0dip</item> widht of the homescreen cellules
<item type="dimen" name="home_cellHeight">90.0dip</item> eight of the homescreen cellules
<item type="dimen" name="home_cellGapX">7.5dip</item> X margin between home cellules
<item type="dimen" name="home_cellGapY">0.0dip</item> Y margin between home cellules
<item type="dimen" name="home_cellGapMax">14.0dip</item>
<item type="dimen" name="home_pageIndicatorGap">8.5dip</item>
<item type="dimen" name="home_pageIndicatorTop">360.0dip</item> position of the page indicator
<item type="dimen" name="pageindicator_grow_by">1.0dip</item>
<item type="dimen" name="pageindicator_fastscroll_fontsize">25.5dip</item>
<item type="dimen" name="pageindicator_panel_size">47.0dip</item>
<item type="dimen" name="touch_slop">14.0dip</item>
<item type="dimen" name="drift_slop">6.0dip</item>
<item type="dimen" name="homeEditBar_iconGap">5.0dip</item>
<item type="dimen" name="folder_cell_width">64.0dip</item>
<item type="dimen" name="folder_cell_height">90.0dip</item>
<item type="dimen" name="workspace_overscroll_drawable_padding">0.0dip</item>
<item type="dimen" name="home_bottomBarHeight">77.5dip</item> menu bar height
<item type="dimen" name="home_bottomBarImageHeight">47.0dip</item>
<item type="dimen" name="home_bottomBarTextHeight">40.0dip</item>
<item type="dimen" name="home_bottomBarTopPadding">15.0dip</item>
<item type="dimen" name="wsqv_verticalGap">5.5dip</item>
<item type="dimen" name="wsqv_horizontalGap">5.5dip</item>
<item type="dimen" name="panel_frame_expand_x">269.0px</item>
<item type="dimen" name="panel_frame_expand_y">177.0px</item>
<item type="dimen" name="hotseat_cellWidth">64.0dip</item> dock cellules widht
<item type="dimen" name="hotseat_cellHeight">97.0dip</item> Dock cellules height
<item type="dimen" name="hotseat_cellGapX">0.0dip</item>
<item type="dimen" name="hotseat_cellGapY">0.0dip</item>
<item type="dimen" name="toolbar_button_vertical_padding">0.0dip</item>
<item type="dimen" name="toolbar_button_horizontal_padding">12.0dip</item>
<item type="dimen" name="toolbar_external_icon_width">36.0dip</item>
<item type="dimen" name="toolbar_external_icon_height">36.0dip</item>
<item type="dimen" name="menu_tabBarHeight">42.0dip</item>
<item type="dimen" name="tab_text_size">16.0dip</item>
<item type="dimen" name="menu_title_bar_left_padding">12.0dip</item>
<item type="dimen" name="menu_title_bar_drawable_padding">7.0dip</item>
<item type="dimen" name="menu_title_bar_text_size">14.5dip</item>
<item type="dimen" name="menu_title_bar_divider_margin">7.5dip</item>
<item type="dimen" name="menu_edit_done_left_padding">37.5dip</item>
<item type="dimen" name="menu_edit_cancel_left_padding">37.5dip</item>
<item type="dimen" name="popup_menu_button_left_padding">13.0dip</item>
<item type="dimen" name="popup_menu_button_right_padding">9.5dip</item>
<item type="dimen" name="popup_menu_button_top_padding">9.5dip</item>
<item type="dimen" name="popup_menu_button_bottom_padding">10.5dip</item>
<item type="dimen" name="menu_tab_host_padding">0.0dip</item>
<item type="dimen" name="menuAppsGrid_pageMarginPlusPaddingTop">10.5dip</item>
<item type="dimen" name="menuAppsGrid_cellWidth">71.5dip</item> app drawler cellules widht
<item type="dimen" name="menuAppsGrid_cellHeight">85.0dip</item> app drawler cellules height
<item type="dimen" name="menuAppsGrid_cellGapX">3.5dip</item> X margin between appdrawler cellules
<item type="dimen" name="menuAppsGrid_cellGapY">5.5dip</item> Y margin between appdrawler cellules
<item type="dimen" name="menuAppsGrid_cellGapMax">18.0dip</item>
<item type="dimen" name="menu_pageIndicatorGap">10.5dip</item>
<item type="dimen" name="menu_pageIndicatorTop">382.0dip</item>
<item type="dimen" name="menuWidgets_pageMarginPlusPaddingTop">10.0dip</item>
<item type="dimen" name="menuWidgets_previewWidth">131.0dip</item> preview size widht for the widget
<item type="dimen" name="menuWidgets_previewHeight">83.0dip</item> preview size eight for the widget
<item type="dimen" name="menuWidgets_cellGapX">22.0dip</item> X margin between Widget cellules
<item type="dimen" name="menuWidgets_cellGapY">2.0dip</item>Y margin between Widget cellules
<item type="dimen" name="menuWidgets_pagePaddingTop">11.0dip</item>
<item type="dimen" name="menuWidgets_pagePaddingBottom">0.0dip</item>
<item type="dimen" name="menuWidgets_pagePaddingLeft">15.0dip</item>
<item type="dimen" name="menuWidgets_pagePaddingRight">15.0dip</item>
<item type="dimen" name="menuWidgets_title_textSize">12.0dip</item>
<item type="dimen" name="menuWidgets_widgetSize_textSize">12.0dip</item>
<item type="dimen" name="external_drop_icon_rect_radius">10.0dip</item>
<item type="dimen" name="drop_target_drag_padding">40.0dip</item>
<item type="dimen" name="smallScreenExtraSpacing">20.0dip</item>
<item type="dimen" name="allAppsSmallScreenVerticalMarginLandscape">30.0dip</item>
<item type="dimen" name="allAppsSmallScreenVerticalMarginPortrait">60.0dip</item>
<item type="dimen" name="delete_zone_drawable_padding">7.0dip</item>
<item type="dimen" name="status_bar_height">17.0dip</item>
<item type="dimen" name="quicknavi_large_panel_size_short">87.5dip</item>
<item type="dimen" name="quicknavi_large_panel_size_long">130.0dip</item>
<item type="dimen" name="quicknavi_large_panel_size_long2">130.0dip</item>
<item type="dimen" name="dragViewOffsetX">0.0dip</item>
<item type="dimen" name="dragViewOffsetY">-8.0dip</item>
<item type="dimen" name="app_widget_padding_left">0.0dip</item>
<item type="dimen" name="app_widget_padding_right">0.0dip</item>
<item type="dimen" name="app_widget_padding_top">0.0dip</item>
<item type="dimen" name="app_widget_padding_bottom">0.0dip</item>
<item type="dimen" name="folder_preview_size">64.0dip</item>
<item type="dimen" name="folder_preview_padding">4.0dip</item>
<item type="dimen" name="folder_name_padding">9.0dip</item>
<item type="dimen" name="folder_width_gap">0.0dip</item>
<item type="dimen" name="folder_height_gap">0.0dip</item>
<item type="dimen" name="folder_content_padding_left">0.0dip</item>
<item type="dimen" name="folder_content_padding_right">0.0dip</item>
<item type="dimen" name="folder_content_padding_bottom">0.0dip</item>
<item type="dimen" name="folder_scroll_begin_threshold">50.0dip</item>
<item type="dimen" name="folder_add_icon_padding_top">3.0dip</item>
<item type="dimen" name="max_folder_height">350.0dip</item>
<item type="dimen" name="popup_width">85.34dip</item>
<item type="dimen" name="popup_height">90.66998dip</item>
<item type="dimen" name="popup_width_inc">17.339996dip</item>
<item type="dimen" name="popup_height_inc">0.0dip</item>
<item type="dimen" name="popup_font_size">60.0dip</item>
<item type="dimen" name="index_level_0_width">21.669983dip</item>
<item type="dimen" name="index_level_0_padding_left">4.029983dip</item>
<item type="dimen" name="index_level_0_padding_top">6.4199963dip</item>
<item type="dimen" name="index_level_0_padding_right">0.0dip</item>
<item type="dimen" name="index_level_0_padding_bottom">6.4199963dip</item>
<item type="dimen" name="index_level_0_font_size">16.339996dip</item>
<item type="dimen" name="index_level_0_cell_height">15.669983dip</item>
<item type="dimen" name="index_level_1_width">22.669983dip</item>
<item type="dimen" name="index_level_1_padding_left">0.0dip</item>
<item type="dimen" name="index_level_1_padding_top">9.339983dip</item>
<item type="dimen" name="index_level_1_padding_right">3.669983dip</item>
<item type="dimen" name="index_level_1_padding_bottom">8.769983dip</item>
<item type="dimen" name="index_level_1_font_size">16.339996dip</item>
<item type="dimen" name="index_level_1_cell_height">21.339996dip</item>
<item type="dimen" name="badge_fontsize_default">16.0dip</item>
<item type="dimen" name="badge_fontsize_small">12.0dip</item>
<item type="dimen" name="icon_centerXOffset">6.0dip</item>
<item type="dimen" name="icon_topToTopOffset">-0.5dip</item>
<item type="dimen" name="folder_icon_top_margin">14.0dip</item>
<item type="dimen" name="folder_icon_left_margin">3.5dip</item>
<item type="dimen" name="folder_icon_bottom_margin">5.5dip</item>
<item type="dimen" name="open_folder_title_size">16.0dip</item>
<item type="dimen" name="empty_message_font_size">14.0sp</item>
<item type="dimen" name="workspace_scroll_zone_left_width">30.0dip</item>
<item type="dimen" name="workspace_scroll_zone_right_width">30.0dip</item>
<item type="dimen" name="menu_scroll_zone_left_width">15.0dip</item>
<item type="dimen" name="menu_scroll_zone_right_width">15.0dip</item>
<item type="dimen" name="APKTOOL_DUMMY_0014">false</item>
<item type="dimen" name="APKTOOL_DUMMY_008e">false</item>
<item type="dimen" name="APKTOOL_DUMMY_008f">false</item>
<item type="dimen" name="APKTOOL_DUMMY_0091">false</item>
<item type="dimen" name="APKTOOL_DUMMY_0092">false</item>
<item type="dimen" name="APKTOOL_DUMMY_0093">false</item>
<item type="dimen" name="APKTOOL_DUMMY_0094">false</item>
</resources>
well you can adjust other setting in this file
i you want to adjust number of screen Ect..
edit in value\integers.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<integer name="config_appsCustomizeSpringLoadedBgAlpha">45</integer>
<integer name="config_dragAppsCustomizeIconFadeInDuration">150</integer>
<integer name="config_dragAppsCustomizeIconFadeOutDuration">200</integer>
<integer name="config_dragAppsCustomizeIconFadeAlpha">100</integer>
<integer name="config_workspaceUnshrinkTime">300</integer>
<integer name="config_workspaceEditModeShrinkPercentage">80</integer>
<integer name="config_screenOnDropScalePercent">120</integer>
<integer name="config_screenOnDropScaleUpDuration">200</integer>
<integer name="config_screenOnDropScaleDownDuration">200</integer>
<integer name="config_screenOnDropAlphaFadeDelay">350</integer>
<integer name="config_screenOnDropAlphaFadeDuration">50</integer>
<integer name="config_appsCustomizeZoomInTime">350</integer>
<integer name="config_appsCustomizeZoomOutTime">600</integer>
<integer name="config_appsCustomizeZoomScaleFactor">7</integer>
<integer name="config_appsCustomizeFadeInTime">250</integer>
<integer name="config_appsCustomizeFadeOutTime">200</integer>
<integer name="config_appsCustomizeWorkspaceShrinkTime">300</integer>
<integer name="config_appsCustomizeWorkspaceAnimationStagger">40</integer>
<integer name="config_workspaceAppsCustomizeAnimationStagger">100</integer>
<integer name="config_tabTransitionDuration">250</integer>
<integer name="config_appsCustomizeDragSlopeThreshold">150</integer>
<integer name="config_workspaceDefaultScreenCount">7</integer>
<integer name="config_workspaceMaxScreenCount">7</integer> max desktop
<integer name="config_workspaceDefaultHomeScreenIndex">3</integer>
<integer name="config_dropTargetBgTransitionDuration">100</integer>
<integer name="config_crosshairsFadeInTime">600</integer>
<integer name="config_dragViewExtraPixels">40</integer>
<integer name="config_dragOutlineFadeTime">900</integer>
<integer name="config_dragOutlineMaxAlpha">191</integer>
<integer name="config_dropAnimMaxDuration">500</integer>
<integer name="config_folderAnimDuration">120</integer>
<integer name="config_dropAnimMaxDist">800</integer>
<integer name="config_workspaceScreenBitmapCacheScale">20</integer>
<integer name="config_maxScaleForUsingWorkspaceScreenBitmapCache">50</integer>
<integer name="config_workspaceShrinkPercent">17</integer>
<integer name="config_moveIntoFolderDuration">500</integer>
<integer name="config_fadeIntoFolderDuration">300</integer>
<integer name="config_workspaceCellCountX">4</integer>
<integer name="config_workspaceCellCountY">4</integer>
<integer name="config_scrollZoneScrollDelay">500</integer>
<integer name="home_cellCountX">4</integer>
<integer name="home_cellCountY">4</integer>
<integer name="home_pageIndicatorMaxVisible">7</integer>
<integer name="page_snap_animation_duration">550</integer>
<integer name="hotseat_cellCountX">5</integer> number of icons in dock
<integer name="hotseat_cellCountY">1</integer>
<integer name="menuAppsGrid_cellCountX">4</integer> number of icons in appdrawler in the x axis
<integer name="menuAppsGrid_cellCountY">4</integer> number of icons in appdrawler in the y axis
<integer name="menu_pageIndicatorMaxVisible">11</integer>
<integer name="menuAppsGrid_clingFocusedX">1</integer>
<integer name="menuAppsGrid_clingFocusedY">1</integer>
<integer name="menuWidgets_cellCountX">2</integer> number of widget in the menu in the x axis
<integer name="menuWidgets_cellCountY">3</integer> number of widget in the menu in the y axis
<integer name="max_folder_visible_rows">4</integer>
<integer name="max_folder_visible_cols">4</integer>
<integer name="folder_icon_row_size">3</integer>
<integer name="folder_icon_col_size">2</integer>
<integer name="open_folder_fixed_col_count">4</integer>
<item type="integer" name="APKTOOL_DUMMY_003c">false</item>
<item type="integer" name="APKTOOL_DUMMY_003d">false</item>
</resources>
i can help you if you want
Nice!!! No more lcd density modder, thanks a lot.
Damn lol
-DarkKnight- said:
DAMN LOL
Click to expand...
Click to collapse
Nice bit of quoting, not.
Sent from my XperiaS via transwarp conduit.
It's fantastic, thanks man.
For me, I can't install weather widget.it must be push in system or install?sorry for my bad English.
Sent from my GT-S5570 using xda app-developers app
zacky86 said:
For me, I can't install weather widget.it must be push in system or install?sorry for my bad English.
Sent from my GT-S5570 using xda app-developers app
Click to expand...
Click to collapse
read da instructions. you need more files
I know that this thread is old but i tried decompiling touchwiz launcher apk. I change the max home screens to 7 instead of 9 in values/integers
when i recompile it with apkchange i get this:
java version "1.7.0_07"
Java(TM) SE Runtime Environment (build 1.7.0_07-b11)
Java HotSpot(TM) Client VM (build 23.3-b01, mixed mode, sharing)
I: Copying raw classes.dex file...
I: Loading resource table...
I: Loaded.
I: Loading resource table from file: C:\Users\Kevin\apktool\framework\1-api15.apk
I: Loaded.
I: Decoding file-resources...
I: Decoding values*/* XMLs...
I: Done.
I: Copying assets and libs...
I: Copying classes.dex file...
I: Checking whether resources has changed...
I: Building resources...
C:\Users\Kevin\Desktop\apkchange\out\seclauncher2mdpiV1.10_Signed\res\values\public.xml:914: error: Public symbol string/folder_cling_create_folder declared here is not defined.
C:\Users\Kevin\Desktop\apkchange\out\seclauncher2mdpiV1.10_Signed\res\values\public.xml:913: error: Public symbol string/folder_cling_move_item declared here is not defined.
C:\Users\Kevin\Desktop\apkchange\out\seclauncher2mdpiV1.10_Signed\res\values\public.xml:912: error: Public symbol string/folder_cling_title declared here is not defined.
Exception in thread "main" brut.androlib.AndrolibException: brut.common.BrutException: could not exec command: [aapt, p, -F, C:\Users\Kevin\AppData\Local\Temp\APKTOOL5015977874102385438.tmp, -I, C:\Users\Kevin\apktool\framework\1-api15.apk, -S, C:\Users\Kevin\Desktop\apkchange\out\seclauncher2mdpiV1.10_Signed\res, -M, C:\Users\Kevin\Desktop\apkchange\out\seclauncher2mdpiV1.10_Signed\AndroidManifest.xml]
at brut.androlib.res.AndrolibResources.aaptPackage(AndrolibResources.java:251)
at brut.androlib.Androlib.buildResourcesFull(Androlib.java:325)
at brut.androlib.Androlib.buildResources(Androlib.java:270)
at brut.androlib.Androlib.build(Androlib.java:193)
at brut.androlib.Androlib.build(Androlib.java:175)
at brut.apktool.Main.cmdBuild(Main.java:182)
at brut.apktool.Main.main(Main.java:67)
Caused by: brut.common.BrutException: could not exec command: [aapt, p, -F, C:\Users\Kevin\AppData\Local\Temp\APKTOOL5015977874102385438.tmp, -I, C:\Users\Kevin\apktool\framework\1-api15.apk, -S, C:\Users\Kevin\Desktop\apkchange\out\seclauncher2mdpiV1.10_Signed\res, -M, C:\Users\Kevin\Desktop\apkchange\out\seclauncher2mdpiV1.10_Signed\AndroidManifest.xml]
at brut.util.OS.exec(OS.java:83)
at brut.androlib.res.AndrolibResources.aaptPackage(AndrolibResources.java:249)
... 6 more
Is there any way to hide app lebels (not apps) of homescreen and app drawer in poco launcher?? It's looking Messy with levels
What do you mean levels
Aashish Bakshi said:
What do you mean levels
Click to expand...
Click to collapse
The app name below the app icons. In 3rd party launcher there is a option for hide the names and that look clean
Subhransu90 said:
The app name below the app icons. In 3rd party launcher there is a option for hide the names and that look clean
Click to expand...
Click to collapse
Oh you meant label
No in poco launcher there's no way to hide labels
Only way is to change to a custom launcher like nova launcher which I generally use since it gives tons of customisations
I created an overlay apk that sets to transparent the icons' label on the homescreen, following this https://code.tutsplus.com/tutorials...runtime-resource-overlay-framework--cms-29708
In pratice it replaces the following lines in /res/values/styles.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="WorkspaceIconTitle">
<item name="android:textSize">1sp</item>
<item name="android:textColor">#00000000</item>
<item name="android:shadowColor">#00000000</item>
</style>
<style name="WorkspaceIconTitle.dark">
<item name="android:textColor">#00000000</item>
<item name="android:shadowColor">#00000000</item>
</style>
</resources>
You must place the attached .apk in /system/vendor/overlay that is read-only if you are not root.
Reboot and it should do its job.
Tested and working on a Xiaomi Mi 9 running Poco Launcher v. 2.7.4.38 on Android 10
I rewrote the apk because number in badges were not showing
Now it only overlays the text size property with 1 dp size, that is so small you should not even see the label (if you watch closely and have a contrasting background you could see a small line)