I was wondering if anyone knew what i would need to edit to make my system apps transparent and display the desktop background in 2.2.1 frameworks. Can anyone help me ou
jkhrist said:
I was wondering if anyone knew what i would need to edit to make my system apps transparent and display the desktop background in 2.2.1 frameworks. Can anyone help me ou
Click to expand...
Click to collapse
list_selector_background_normal.9
Ok I edited.it but it is still coming up black after I flash. Is there an xml file that needs to be.changed also?
Sent from my SGH-T959 using XDA App
jkhrist said:
Ok I edited.it but it is still coming up black after I flash
Sent from my SGH-T959 using XDA App
Click to expand...
Click to collapse
shoot....i swore that was the image that controlled it...i gotta find it
Master&Slave™ said:
shoot....i swore that was the image that controlled it...i gotta find it
Click to expand...
Click to collapse
I am 99% sure you are right about the image...I think it is an xml file tho, as I have changed the aforementioned file and it does not change anything in 2.2 and 2.2.1 any clue anybody?
Sent from my SGH-T959 using XDA App
jkhrist said:
I am 99% sure you are right about the image...I think it is an xml file tho, as I have changed the aforementioned file and it does not change anything in 2.2 and 2.2.1 any clue anybody?
Sent from my SGH-T959 using XDA App
Click to expand...
Click to collapse
bump im trying to make a transparent mms but having the hardest time trying to figure out what png controls the background...
In the drawable folder is list_selector.XML or something to that effect. Could it be an XML file quick needs editing?
Sent from my SGH-T959 using XDA App
I believe its one of the files labeled ..._bg or something like that not sure which one specifically
This post Trigger'd by my Vibrant
List_selector_bg effects mms settings music bgs you can change that icon to whatever and it will not switch color I have tried in 2.2 and 2.2.1 only way I can make transparent us using the glasstopia framework i dobt know what in the frameworks effects the transparency of the image its northern png
shreddintyres said:
I believe its one of the files labeled ..._bg or something like that not sure which one specifically
This post Trigger'd by my Vibrant
Click to expand...
Click to collapse
Sent from my SGH-T959 using XDA App
Any luck?
jkhrist said:
List_selector_bg effects mms settings music bgs you can change that icon to whatever and it will not switch color I have tried in 2.2 and 2.2.1 only way I can make transparent us using the glasstopia framework i dobt know what in the frameworks effects the transparency of the image its northern png
Sent from my SGH-T959 using XDA App
Click to expand...
Click to collapse
Sent from my SGH-T959 using XDA App
Nah gonna mess with it and see if I can get it right today I'll keep you posted
Sent from my SGH-T959 using XDA App
jkhrist said:
I was wondering if anyone knew what i would need to edit to make my system apps transparent and display the desktop background in 2.2.1 frameworks. Can anyone help me ou
Click to expand...
Click to collapse
The short answer is "a lot"
Obviously, that's not helpful, so here's what I remember off the top of my head that should be helpful:
Framework-res.apk/res/values/styles.xml:
PHP:
<style name="Widget.ListView.WithBackground" parent="@style/Trans">
<item name="scrollbars">none</item>
<item name="layout_marginTop">0.0px</item>
<item name="listBackground">@drawable/list_selector_background_normal</item>
</style>
The modification is at the end of the first line [parent="@style/Trans"]
Also you need to add the following style somewhere. At the end is fine:
PHP:
<style name="Trans" parent="@style/Theme">
<item name="windowBackground">@drawable/tinted_trans_bg</item>
<item name="textColorHighlight">#8000aeff</item>
<item name="textColorHint">?textColorHintInverse</item>
<item name="textColorLink">#ff0000ee</item>
<item name="windowShowWallpaper">true</item>
<item name="colorBackgroundCacheHint">#00000000</item>
</style>
In addition, you need to put the attached tinted_trans_bg.9.png to the /drawables/ directory.
This is for the Settings.apk background as well as a few other small apks.
twframework-res.apk/res/values/styles.xml:
PHP:
<style name="TwTheme" parent="@style/TwTrans">
<item name="twTabWidgetStyle">@style/TwTabWidget</item>
<item name="twRadioButtonStyle">@style/TwRightRadioButtonStyle</item>
<item name="twSoftkeyItemStyle">@style/TwSoftkeyItemStyle</item>
<item name="twProgressBarStyle">@style/TwProgressBar</item>
<item name="twSeekBarStyle">@style/TwSeekBar</item>
</style>
The modification is at the end of the first line [parent="@style/TwTrans"]
Also you need to add the following style somewhere. At the end is fine:
PHP:
<style name="TwTrans" parent="@android:style/Theme">
<item name="android:windowBackground">@drawable/tinted_trans_bg</item>
<item name="android:textColorHighlight">#8000aeff</item>
<item name="android:textColorHint">?android:textColorHintInverse</item>
<item name="android:textColorLink">#ff0000ee</item>
<item name="android:windowShowWallpaper">true</item>
<item name="android:colorBackgroundCacheHint">#00000000</item>
</style>
In addition, you need to put the attached tinted_trans_bg.9.png to the /drawables/ directory.
This is for the MMS.apk, and I think Contacts, but can't remember for sure
Contacts and MMS:
These need more changes, but I'll have to let you know more later. That should get you started at least.
Thank you so much. A lot of good info.here I really appreciate your help.
Sent from my SGH-T959 using XDA App
Related
Hi im trying to change color of menu (when press hard menu button).
Im guessing its an xml file in framework, but not sure which xml.
update....
I managed to change the background of menu to black by replacing .9png's
Now i need to change the menu text to white. Unsure how to do this.
I'm really intetested too..after change pgn color you signed the framework apk??
Sent from my X10i using XDA App
djkekko89 said:
I'm really intetested too..after change pgn color you signed the framework apk??
Sent from my X10i using XDA App
Click to expand...
Click to collapse
i put the framework-res into a flashable zip for recovery, but had to sign the zip.
Update i found the xml file, its in the styles.xml. But im having trouble recompiling after making the edit.
To change the text in menu popup to white edit the styles.xml
In the styles.xml change:
<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>
bra1n0uk said:
To change the text in menu popup to white edit the styles.xml
In the styles.xml change:
<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>
Click to expand...
Click to collapse
This is for arc launcher??or anyway default android launcher?? Cause other launcher have their own pop up!! Thanks for your tips mate!!
Sent from my X10i using XDA App
djkekko89 said:
This is for arc launcher??or anyway default android launcher?? Cause other launcher have their own pop up!! Thanks for your tips mate!!
Sent from my X10i using XDA App
Click to expand...
Click to collapse
The popup menu is tied to the framework.res.
Not sure bout launcher looking into it
So framework.res. apk/res/values/styles.xml
Sent from my X10i using XDA App
bra1n0uk said:
To change the text in menu popup to white edit the styles.xml
In the styles.xml change:
<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>
Click to expand...
Click to collapse
Once doing the edit above, the menu text becomes white in everything but....... if i press on "more " the text in the next window becomes black
Any help???
Sent from my X10i using XDA App
I been trying hours lol need help please.
My popup menu text is now white, but the second popup menu text (if i ckick on "more" say on adw menu) becomes black. I need to change this second menu text to white.
Sent from my X10i using XDA App
SOLVED
My first popup menu text turned white after my first valuses edit...
To get the second popup menu text white (after pressing the "more" button) u got to make this change...
<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>
TOO.............
<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">?textAppearanceLarge</item>
</style>
Hope it helps atleast someone....
Hey People,
since 4 days i try to remove the ON/OFF Text in Settings &Co.
Look this:
View attachment 1095563
My goal is to create a Theme Chooser Theme so please told me how i can do this?
Please don't post me a line, post me a discription how to do
I allready added this in my Theme.apk
values.xml:
<string name="android:capital_on"> </string>
<string name="android:capital_off"> </string>
styles.xml
<style name="Widget.Holo.Button.Toggle" parent="@android:style/Widget.Holo.Button">
<item name="android:textOn"> </item>
<item name="android:textOff"> </item>
</style>
Click to expand...
Click to collapse
PS.: i will apply this in any language too
Great Ghanks to everyone who will help me
Regards SafiXS
.
Push...
Sent from my E15i using xda premium
please people, i know there is someone out there who know about it
Makes the icon transparent. Flash in recovery.
Thank you, that icon is really annoying.
Does it still take up space? Is there a way to remove the icon completely?
rome425 said:
Thank you, that icon is really annoying.
Does it still take up space? Is there a way to remove the icon completely?
Click to expand...
Click to collapse
I tried to make the png as slim as possible. There probably is another way to remove it completely, most likely an xml edit.
Sent from my HTC One using Tapatalk 4 Beta
I appreciate your work buddy but i think you creating multiple of threads in Different device forums
Here is your same thread -> http://forum.xda-developers.com/showthread.php?t=2252775
That was on propose so AT&T users know about the mod too.
Sent from my HTC One using Tapatalk 4 Beta
SmiLey497 said:
I tried to make the png as slim as possible. There probably is another way to remove it completely, most likely an xml edit.
Sent from my HTC One using Tapatalk 4 Beta
Click to expand...
Click to collapse
It's in smali dude
Sent from my EVO using Tapatalk 2
ssojyeti2 said:
It's in smali dude
Sent from my EVO using Tapatalk 2
Click to expand...
Click to collapse
On Samsung phones all it took was an edit to the feature.xml in the csc folder to get rid of it. The icon itself is a png. If there is a smali edit for HTC phones I haven't seen any.
SmiLey497 said:
On Samsung phones all it took was an edit to the feature.xml in the csc folder to get rid of it. The icon itself is a png.
Click to expand...
Click to collapse
hmm ok then maybe you're right about that. however pretty much every icon on htc devices is in smali...I don't imagine this one would be any different
Better late than never
I realize this thread hasn't been touched in a long time, but in case anyone asks the question in the future, I have a fix for rooted users.
Edit the file /system/customize/acc/default.xml
Find the line <item type="boolean" name="nfc_show_icon">1</item>
Change the 1 to a 0
Reboot phone
Icon gone.
steampoweredlawngnome said:
I realize this thread hasn't been touched in a long time, but in case anyone asks the question in the future, I have a fix for rooted users.
Edit the file /system/customize/acc/default.xml
Find the line <item type="boolean" name="nfc_show_icon">1</item>
Change the 1 to a 0
Reboot phone
Icon gone.
Click to expand...
Click to collapse
Thank you! SO glad someone finally figured this out, been driving me crazy!! One note - on the 4.3 dev edition at least the line to change is <item type="integer" name="nfc_show_icon">1</item>
steampoweredlawngnome said:
I realize this thread hasn't been touched in a long time, but in case anyone asks the question in the future, I have a fix for rooted users.
Edit the file /system/customize/acc/default.xml
Find the line <item type="boolean" name="nfc_show_icon">1</item>
Change the 1 to a 0
Reboot phone
Icon gone.
Click to expand...
Click to collapse
Wow this is awesome, except for 1 issue : I don't have an account folder /system/customize/ I have hidden files and folders enabled but it's still on there.. Any ideas?
Sent from my Nexus 7 using xda app-developers app
Xposed module to remove the NFC icon completely!
SmiLey497 said:
I tried to make the png as slim as possible. There probably is another way to remove it completely, most likely an xml edit.
Sent from my HTC One using Tapatalk 4 Beta
Click to expand...
Click to collapse
SmiLey497 said:
Makes the icon transparent. Flash in recovery.
Click to expand...
Click to collapse
I just wrote a small Xposed module based on Xposed framework to remove the NFC Icon completely. No need to modify the NFC.apk. You could get the app on http://forum.xda-developers.com/showthread.php?t=2467970
Works awesome. Thank you!
I know this thread is old but since the Xposed module doesn't seem to work for everyone I will post another solution. If you don't have the system/customize folder, the setting is probably in
Code:
/system/etc/customization/settings/config.prop
You just have to change
Code:
ro.nfc.icon.enable=true
to
Code:
ro.nfc.icon.enable=false
Very good solution for NFC Icon !!!
Hi guys. Im on stock rooted MG4 4.1.2 rom. Using boeffla kernel. Ive installed xposed framework and xblast on my phone. But it seems that the transparent statusbar is not working. Already performed changing the statusbar color on xblast which is #00000000. Ive tried different colors, it does work however when using #00000000 it goes back to stock color of the status bar which is grayish like color. Can anyone help me? Ill appreciate it. Thanks. Good day.
Sent from my GT-I9300 using xda app-developers app
migz012788 said:
Hi guys. Im on stock rooted MG4 4.1.2 rom. Using boeffla kernel. Ive installed xposed framework and xblast on my phone. But it seems that the transparent statusbar is not working. Already performed changing the statusbar color on xblast which is #00000000. Ive tried different colors, it does work however when using #00000000 it goes back to stock color of the status bar which is grayish like color. Can anyone help me? Ill appreciate it. Thanks. Good day.
Sent from my GT-I9300 using xda app-developers app
Click to expand...
Click to collapse
Change these two in your SystemUI.apk
1 res / layout / tw_super_status_bar.xml
<com.android.systemui.statusbar.phone.StatusBarWin dowView android:background="#00000000" android:focusable="true" android:fitsSystemWindows="true" android:descendantFocusability="afterDescendants"
2. res / values / drawables.xml
<item type="drawable" name="status_bar_background">#00000000</item>
ag4751 said:
Change these two in your SystemUI.apk
1 res / layout / tw_super_status_bar.xml
<com.android.systemui.statusbar.phone.StatusBarWin dowView android:background="#00000000" android:focusable="true" android:fitsSystemWindows="true" android:descendantFocusability="afterDescendants"
2. res / values / drawables.xml
<item type="drawable" name="status_bar_background">#00000000</item>
Click to expand...
Click to collapse
Where can I exactly change those values on systemui.apk
Sent from my GT-I9300 using xda app-developers app
migz012788 said:
Where can I exactly change those values on systemui.apk
Sent from my GT-I9300 using xda app-developers app
Click to expand...
Click to collapse
Just noticed your using the xblast app didn't see that before, don't know how that works.
You can decompile the SystemUI.apk change the two xml files at the locations indicated previously then compile the apk and install on your phone easiest way is to use vrtheming and just flash the changes you made through recovery.
You would need to understand deconpling and compiling of apk's and theming.
View attachment 2501273
The background of item notification is white,it is hard to see it clearly。hope to change it like below
Anyone can help me?I changed the drawables.xml like this:
<item type="drawable" name="notification_item_background_color">#00000000</item>
however it does not work
i have the same problem...
chnpotato said:
i have the same problem...
Click to expand...
Click to collapse
but no one can answer it
Its not q/a forum
Sent from my Xperia Neo using XDA Premium 4 mobile app