Fix lockscreen for "capuccino" users G531H - Galaxy Grand Prime General

Replace the build.prop code with this:
PHP:
ro.build.scafe=capuccino
ro.build.scafe.size=short
ro.build.scafe.syrup=sugar
ro.build.scafe.cream=white
ro.build.scafe.shot=double
The lockscreen will unlock again!
Sorry my bad english!

nando12_ said:
Replace the build.prop code with this:
PHP:
ro.build.scafe=capuccino
ro.build.scafe.size=short
ro.build.scafe.syrup=sugar
ro.build.scafe.cream=white
ro.build.scafe.shot=double
The lockscreen will unlock again!
Sorry my bad english!
Click to expand...
Click to collapse
Did not work

waleeds1 said:
Did not work
Click to expand...
Click to collapse
Try to change this lines!
PHP:
ro.product.name=GT-l9505
ro.product.device=GT-l9505
With me it's working!

nando12_ said:
Try to change this lines!
PHP:
ro.product.name=GT-l9505
ro.product.device=GT-l9505
With me it's working!
Click to expand...
Click to collapse
I already have them changed it but did not try pin on this. ( tried pin on almost stock build.prop with only the changes u told). Btw im using cappuccino now which doesnt have pin issue

Related

[TWEAKS][SCRIPTS] Collection of 'em all - build.prop; init.d; etc.

Maybe this [TWEAKS][SCRIPTS] will help for our development
http://forum.xda-developers.com/showpost.php?p=16833651&postcount=1
really nice.. but most of the build.prop lines doesn't exist in the gt-9100's build.prop file :s
skiflyer said:
really nice.. but most of the build.prop lines doesn't exist in the gt-9100's build.prop file :s
Click to expand...
Click to collapse
Doesn't it work when you just add them, if they're not available yet?

[Q] ADW Launcher xml reference

I've got adw launcher decompiled and I would like to change startup defaults. To start out I'd like to change the startup main dock style from 3 to 5. Can someone tell me which xml file and variable holds this value?
config_main_dock_style is in res/values/config.xml -- atleast according to CM7's version.
https://github.com/CyanogenMod/andr...er/blob/gingerbread/res/values/config.xml#L77
FaultException said:
config_main_dock_style is in res/values/config.xml -- atleast according to CM7's version.
https://github.com/CyanogenMod/andr...er/blob/gingerbread/res/values/config.xml#L77
Click to expand...
Click to collapse
Thanks for the reply. it turned out to be:
Code:
<string name="config_main_dock_style">2</string>
located in values/strings.xml
jocala said:
Thanks for the reply. it turned out to be:
Code:
<string name="config_main_dock_style">2</string>
located in values/strings.xml
Click to expand...
Click to collapse
Ah. Must be a different version.

How to enable CRT effect for ICS

For who make a CRT effect for ICS follow next steps:
1.Decompile framework-res.apk using wanam ApkManager
2.Edit the file \res\values\bools.xml
3.Find the line that says "(bool name="config_animateScreenLights">true</bool) and change "true" to "false"
4.Compile framework-res.apk
5.Push new framework-res.apk to your phone with root explorer or adb
6.Save,close and reboot.
Here is link for wanam apkmanager(special for ICS):http://forum.xda-developers.com/showpost.php?p=23935070&postcount=14
thans for wanam and tweezit
dont forget make a backup in case something is wrong
Ive crt without edit anything :S
in my apk the value is "false" by default
sgj1 said:
in my apk the value is "false" by default
Click to expand...
Click to collapse
Its means you have activate Crt efect by default
umarian said:
Its means you have activate Crt efect by default
Click to expand...
Click to collapse
but when i poweroff the screen donĀ“t have any effects

[Q] Transparent toggle

Hi guys. I want to make transparent the toggle's background. Can someone tells me how to do it? What .pns or xml that i need to edit ????
The image is on the attached link below.
bad news i'm afraid
sanydeadpool said:
Hi guys. I want to make transparent the toggle's background. Can someone tells me how to do it? What .pns or xml that i need to edit ????
The image is on the attached link below.
Click to expand...
Click to collapse
on l3 II not yet
but dont give up
if you find solution post here for people to use
sanydeadpool said:
Hi guys. I want to make transparent the toggle's background. Can someone tells me how to do it? What .pns or xml that i need to edit ????
The image is on the attached link below.
Click to expand...
Click to collapse
This instructions is for L7 II, but you can try:
1. Make backup!
2. To make it transparent, you must decompile LGSystemUI.apk
3. In LGSystemUI\smali\com\android\systemui\statusbar\phone\PhoneStatusBar.smali find this line:
Code:
Lcom/android/systemui/statusbar/phone/PhoneStatusBar$FastColorDrawable;-><init>(I)V
4: Remove line below:
Code:
invoke-virtual {v0, v1}, Landroid/view/View;->setBackground(Landroid/graphics/drawable/Drawable;)V
5: Adjust transparency in LGSystemUI\res\values\colors.xml, find:
Code:
<color name="bg_expanded">#[COLOR="Red"]ef000000[/COLOR]</color>
And change red value.
Some values of transparency:
bf000000 - 25%,
7F000000 - 50%,
3F000000 - 75%,
00000000 - 100%
Good luck
need lgsystem.apk pls
guys i edited my systemui.apk file and now lost status bar and some other funtion
can u guys help me with it my phone is lg p715 dual
maxx_hr said:
This instructions is for L7 II, but you can try:
1. Make backup!
2. To make it transparent, you must decompile LGSystemUI.apk
3. In LGSystemUI\smali\com\android\systemui\statusbar\phone\PhoneStatusBar.smali find this line:
Code:
Lcom/android/systemui/statusbar/phone/PhoneStatusBar$FastColorDrawable;-><init>(I)V
Click to expand...
Click to collapse
There are many PhoneStatusBar.smali files like
PhoneStatusBar$1.smali
PhoneStatusBar$2.smali
PhoneStatusBar$3.smali
...
which to use?
mid143 said:
guys i edited my systemui.apk file and now lost status bar and some other funtion
can u guys help me with it my phone is lg p715 dual
Click to expand...
Click to collapse
This guide is for deodexed rom.
To restore functionality, just copy stock LGSystemUI.apk, change permission like other files in folder and restart.
If you have odexed rom, do the same, but with LGSystemUI.apk and LGSystemUI.odex.
If you have backup (CWM or TWRP), restore only System.
yashgumaste said:
There are many PhoneStatusBar.smali files like
PhoneStatusBar$1.smali
PhoneStatusBar$2.smali
PhoneStatusBar$3.smali
...
which to use?
Click to expand...
Click to collapse
PhoneStatusBar.smali
Without $ etc.
Only one is in that folder, and it is bigest.
maxx_hr said:
5: Adjust transparency in LGSystemUI\res\values\colors.xml, find:
Code:
<color name="bg_expanded">#[COLOR="Red"]ef000000[/COLOR]</color>
And change red value.
Some values of transparency:
bf000000 - 25%,
7F000000 - 50%,
3F000000 - 75%,
00000000 - 100%
Good luck
Click to expand...
Click to collapse
Can we also add other colors by their hex code
---------- Post added at 12:19 PM ---------- Previous post was at 12:05 PM ----------
I want to change the notification dropdown simlar to lollipop.
Any idea how to change background of other parts.
Can we also add other colors by their hex code
Click to expand...
Click to collapse
Yes.
I want to change the notification dropdown simlar to lollipop.
Any idea how to change background of other parts.
Click to expand...
Click to collapse
You must research how to do this.

Marshmallow 6.0 Power Menu

Anyone have it? without advance reboot menu
I'm looking for this too! Just flashed the stock 6.0 ROM and need the nice reboot menu as it's a pain without.
I Was going to flash any reboot menu but now I've seen this thread may be we need one specific to the android 6.0 ? :-s
No one?
dieselboy said:
No one?
Click to expand...
Click to collapse
You will require rooted device
Open system/build.prop using root explorer or Build.prop editor app
Then
Remove these lines
ro.build.scafe=americano
ro.build.scafe.size=short
ro.build.scafe.shot=single
ro.build.scafe.cream=white
ro.build.scafe.version=2015A
Then add these lines
ro.build.scafe.version=2016A
ro.build.scafe.size=short
ro.build.scafe.shot=double
ro.build.scafe.cream=white
Then reboot
Now you will get new Power menu like s7 edge
If your text color is not visible in power menu
Then you must edit it in frameworkres.apk
How to Change text color from black to white:
Decompile
framework-res.apk
Locate to
framework-res.apk/res/values/colors.xml
Old code
<color name="tw_global_action_messagetext_textcolor">#ff000000</color>
<color name="tw_global_action_statustext_textcolor">#ff6b6f72</color>
New code
<color name="tw_global_action_messagetext_textcolor">#fffafafa</color>
<color name="tw_global_action_statustext_textcolor">#ffc3c3c3</color>
Recompile and make a flashable zip of your frameworkres.apk and flash it
Enjoy
Ss
@Miaf
@dieselboy
By The way what is your device model ??
Do mention it for what model you want so that some one can give you a zip of modded files
I' ve systemui by Al Cr and this mod change all the panel with jellow letters and White colors. How can solve?
please
yash92duster said:
@Miaf
@dieselboy
By The way what is your device model ??
Do mention it for what model you want so that some one can give you a zip of modded files
Click to expand...
Click to collapse
Please Please can you give me the zip for the 900T for mod
victor952 said:
Please Please can you give me the zip for the 900T for mod
Click to expand...
Click to collapse
search for guide how to make it in s5 themes section
there is a guide by karkrass follow his guide
i dont have your model to make one
marioghs said:
I' ve systemui by Al Cr and this mod change all the panel with jellow letters and White colors. How can solve?
Click to expand...
Click to collapse
The same thing happens to me too, but it's not for the MOD! because I uninstalled it and it remains the same, there must be a solution in the "build pro"
yash92duster said:
You will require rooted device
Open system/build.prop using root explorer or Build.prop editor app
Then
Remove these lines
ro.build.scafe=americano
ro.build.scafe.size=short
ro.build.scafe.shot=single
ro.build.scafe.cream=white
ro.build.scafe.version=2015A
Then add these lines
ro.build.scafe.version=2016A
ro.build.scafe.size=short
ro.build.scafe.shot=double
ro.build.scafe.cream=white
Then reboot
Now you will get new Power menu like s7 edge
If your text color is not visible in power menu
Then you must edit it in frameworkres.apk
How to Change text color from black to white:
Decompile
framework-res.apk
Locate to
framework-res.apk/res/values/colors.xml
Old code
<color name="tw_global_action_messagetext_textcolor">#ff000000</color>
<color name="tw_global_action_statustext_textcolor">#ff6b6f72</color>
New code
<color name="tw_global_action_messagetext_textcolor">#fffafafa</color>
<color name="tw_global_action_statustext_textcolor">#ffc3c3c3</color>
Recompile and make a flashable zip of your frameworkres.apk and flash it
Enjoy
Click to expand...
Click to collapse
Wait, how do you get to root explorer?

Categories

Resources