[MOD] Lockscreen Clock Control *Samsung Feature enabled* * added Guide * - Galaxy Ace S5830 Themes and Apps

well after some playing with sgs i saw some cools in the settings
its clock control
we have the circlelockscreen on all latest firmwares of samsung starting from DDKQ8 to XWKTR now
after investigating the smalis and stuff of sgs i figured it was pretty easy to enable this on ace to
after fixing some errors in smalis and fixing FCS
i have it fully running now
Options :-
1. Top
2. Middle
3. Bottom
Screenshoots
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
This is how it looks when u get an message on the top lockscreen
Note!
from roms starting by DDKQ8 till XWKTR and most probaply all latest fws with the note/circle lockscreen
you can flash this
its universal and will only reset your settings.apk
Downloads :-
Download Here
How to Install :-
Mount system
Mount Data
Install zip
Flash Zip
Reboot
and still
there are many many Samsung features that we need to enable in smali
samsung has disabled most of them because we run a * Low End Device =_= *
but i will try to enable them all
Roms i tested this on :-
DDKQ8
XWKTM
XWKTQ
XWKTR
BGKT4
BUKT2
XWKTE
XXKPT
This Mod also works on all Latest Gio FWS
DXKT4 etc

Guide To Add it to your settings.apk yourself
How to Build this mod yourself
NOTE!! This Mod requires Smali edits in Const Codes for proper working
Files you will need to modify are :-
1. Arrays.xml
2. Strings.xml
3. AndroidManifest.xml
4. display_settings.xml
5. DisplaySettings.smali
6. DisplaySettings$OrientationObserver.smali
7. Display.smali
8. Display$1.smali
9. Public.xml
Files you will need to add ( modify ):-
1. screen_display.xml
2. screen_display_land.xml
3. ScreenDisplay.smali
1. We go and Modify Arrays.xml
open res/values/Arrays.xml and add :-
Code:
<string-array name="clock_position_entries">
<item>Top</item>
<item>Middle</item>
<item>Bottom</item>
</string-array>
<string-array name="clock_position_entries_land">
<item>Left</item>
<item>Center</item>
<item>Right</item>
</string-array>
<string-array name="clock_position_values">
<item>0</item>
<item>1</item>
<item>2</item>
</string-array>
Done
2. We go and Modify Strings.xml
Add
Code:
<string name="screen_display">Lockscreen and Fonts</string>
<string name="screen_display_summary" />
<string name="home_screen">Home screen</string>
<string name="wallpaper">Wallpaper</string>
<string name="lock_screen">Lock screen</string>
<string name="clock_position">Clock position</string>
<string name="clock_position_summary">Adjust clock position on lock screen</string>
<string name="weather">Weather</string>
<string name="weather_summary">Adjust weather information settings on lock screen</string>
Done
3. We go and Modify AndroidManifest.xml ( WHY ??? because if you dont you cant open the lockscreen options its sort of key )
Find :-
Code:
<activity android:label="@string/wallpapers" android:name="Wallpapers">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
And above it add
Code:
<activity android:label="@string/screen_display" android:name="ScreenDisplay">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
so it will look like :-
Code:
<activity android:label="@string/screen_display" android:name="ScreenDisplay">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
<activity android:label="@string/wallpapers" android:name="Wallpapers">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
4. We Go and edit display_settings.xml
Open res/xml
Change :-
Code:
<PreferenceScreen android:title="@string/wallpapers" android:key="wallpapers" android:summary="@string/wallpapers_summary">
<intent android:targetPackage="com.android.settings" android:action="android.intent.action.MAIN" android:targetClass="com.android.settings.Wallpapers" />
</PreferenceScreen>
to
Code:
<PreferenceScreen android:title="@string/screen_display" android:key="screen_display" android:summary="@string/screen_display_summary">
<intent android:targetPackage="com.android.settings" android:action="android.intent.action.MAIN" android:targetClass="com.android.settings.ScreenDisplay" />
</PreferenceScreen>
And DELETE !!
Code:
<com.android.settings.flipfont.FontListPreference android:title="@string/monotype_preference_title" android:key="MONOTYPE" android:summary="@string/monotype_preference_summary" />
5. Add Screen_display.xml and Screen_display_land.xml to res/xml
6. Add ScreenDisplay.smali to smali settings/smali/com/android/settings
7. Compile the Apk
8. Now decompile the compiled apk again
and now comes the hard part
in every smali listed
search for const
after it you will see a code like 0x7f03001e
7f03001e <- thats the code we need to change
in public.xml its mostly 07f03001e or 7f03001e
if it is the 07f03001e remove the 0 so it will look like this 7f03001e
after you decompiled the compiled apk you will need to compare every smali and search for these codes and recorrect them
and then you can compile the apk again
if you cant open the display option in settings.apk or it gives errors sign the apk or use ADB Long Logcat or Debug com.android.settings
You must use CTRL + F a lot while searching for correct codes
and i cant give a better guide then this sorry
Resources you will need to add are in the attachements

Nice

It don't work in stock KTM odexed

good job robin !! waiting for what more youll dig out from those smalis!!

Will this screen lock stil work if I am enable the PIN?
Sent from my GT-S5830 using Tapatalk 2

Paolo_lav said:
It don't work in stock KTM odexed
Click to expand...
Click to collapse
Go to root explorrer delete settings.odex from system/app
It gives fc thanks to that
Sent from my GT-S5830 using xda premium

DeadSp1d3r said:
Go to root explorrer delete settings.odex from system/app
It gives fc thanks to that
Sent from my GT-S5830 using xda premium
Click to expand...
Click to collapse
I've tried this but don't work
Inviato dal mio GT-S5830 con Tapatalk 2

Even i have problem. After that i've flash zip update, settings app disappear at my system
sorry for my bad english

Maybe there is a problem with settings.apk: odexed apps is about 3,7 MB (only apk!) , modded is 2 MB..
Inviato dal mio GT-S5830 con Tapatalk 2

did not work in SGSII v10....after flashing zip settings icon disappeared from menu

vaibhavx said:
did not work in SGSII v10....after flashing zip settings icon disappeared from menu
Click to expand...
Click to collapse
Same on clean XWKTR deodexed rom with no mods, no settings icon...

Chalenge time
can you do somithing like this:
https://www.dropbox.com/s/39w3qiexc91c221/Untitled1.png

TechNoJerky said:
Chalenge time
can you do somithing like this:
https://www.dropbox.com/s/39w3qiexc91c221/Untitled1.png
Click to expand...
Click to collapse
Yes its almost all i the sgsII v10 jb rom except the brightness bar
But i can add it
Sent from my GT-S5830 using xda premium

DeadSp1d3r said:
Yes its almost all i the sgsII v10 jb rom except the brightness bar
But i can add it
Sent from my GT-S5830 using xda premium
Click to expand...
Click to collapse
Almost, what if u included this in sgs3 patch???
Sent from my GT-S5830 using xda app-developers app

Are you sure with BGKT4? Not working for me any ideas?
Sent from my GT-S5830 using xda app-developers app

faceliler said:
Are you sure with BGKT4? Not working for me any ideas?
Sent from my GT-S5830 using xda app-developers app
Click to expand...
Click to collapse
You removed old settings.apk ? + odex
And do you have circle lock?
Sent from my GT-S5830 using xda premium

DeadSp1d3r said:
You removed old settings.apk ? + odex
And do you have circle lock?
Sent from my GT-S5830 using xda premium
Click to expand...
Click to collapse
Yes i deleted settings.apk but i don't have any .odex i have circle lock... Is it for odexed roms?
Sent from my GT-S5830 using xda app-developers app

faceliler said:
Yes i deleted settings.apk but i don't have any .odex i have circle lock... Is it for odexed roms?
Sent from my GT-S5830 using xda app-developers app
Click to expand...
Click to collapse
Weird
its deodexed apk but i tested this on ktr odexed and others also odexed some on deodexed
Sent from my GT-S5830 using xda premium

It works on sperience rom great work robin. Wow without words.
Just needed delete the setings on system/apps.
S'Perience® user...

Related

[GUIDE] Carrier Logo's on TW ROMs

So I'm not too sure if this will intrigue anyone, I personally enjoy this mod and always have
Here is what a carrier logo is (upper left hand corner)
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Prerequisites
-apktool
*Make sure you meet all requirements for apktool
Guide:
- Copy framework-res.apk and SystemUI.apk from your current ROM into your apktool directory
- CD your apktool folder
- Install resources from framework-res.apk by issuing this command
Code:
apktool if framework-res.apk
- Decompile your SystemUI.apk by doing:
Code:
apktool d SystemUI.apk
- Navigate to your decompiled SystemUI folder and go to /res/values/bools.xml
- Find the following bool
Code:
<bool name="config_showOperatorLogo">false</bool>
- Change it to the following:
Code:
<bool name="config_showOperatorLogo">true</bool>
- Save and close the XML
- Next, navigate to /res/drawable-xhdpi/ and search for this image
Code:
tw_stat_notify_operator_logo
- This is what you want to replace with your custom image. Try not have the image too big, and make sure it is a png. I usually make my logos around 90x40 but they can be smaller and slightly larger depending on what you are using
- After you replaced that image with your custom carrier logo go back to your command prompt window and recompile your apk
Code:
apktool b SystemUI
- Your new apk will be in the decompiled SystemUI folder in the "dist" folder
- Next, click and drag the original AndroidManifest.xml AND the META-INF folder for the original SystemUI.apk to the new SystemUI.apk
- Make a flashable zip and flash in recovery
Resources
- How to make a flashable zip for our phone
- Some carrier logos
- Some of my personal favorite carrier logos
Enjoy!
This is actually pretty nice. Your killing it fergie
would love this but dont know how to decompile i have two little kids to run after hard to concentrate can u make one for me please with this
Fergie, thanks so much for sharing this guide. It'll definitely come in handy. The title says for TW roms but I'm curious if this is possible on AOKP, and would the process be somewhat similar?
Charlie, I've got 2 little ones as well and can assure you that apktool is relatively quick and easy to figure out.
Sent from my Transformer Pad TF300T using Tapatalk 2
ill try it out tomorrow while they are away
countryteazer said:
Fergie, thanks so much for sharing this guide. It'll definitely come in handy. The title says for TW roms but I'm curious if this is possible on AOKP, and would the process be somewhat similar?
Charlie, I've got 2 little ones as well and can assure you that apktool is relatively quick and easy to figure out.
Sent from my Transformer Pad TF300T using Tapatalk 2
Click to expand...
Click to collapse
You're welcome!
And the process would be different (that bool doesn't exist in CM10/AOKP), you have to add a layout edit to status_bar.xml and add the Sprint carrier text, make it invisible and set the background for said text your carrier image
I'm still on TW but if you wanna test it out I can show you the layout edit you would have to make
Nice tutorial....thanks....
w8setter said:
Nice tutorial....thanks....
Click to expand...
Click to collapse
Cool! I love that logo lol. If you want it showing at 100% and not at 85% go to SystemUI/res/vaues/dimens.xml look for the status_bar_drawing lines and chane it to 100%, there should be two of them, one for TW and another for 3rd party apps
Fergie, thanks for the info. Whenever we get our power back on, I'd definitely like to take a look and see if I can get it working with AOKP. I appreciate the help! Will pm you soon!
Sent from my SPH-L710 using Tapatalk 2
can you help me
Hi fergie
I'm trying to add carrier logo for my SGY, I've added this code on my status_bar.xml and added a 20x20 carrier_logo
<LinearLayout android:gravity="center" androidrientation="horizontal" android:id="@id/icons" android:layout_width="fill_parent" android:layout_height="fill_parent">
<com.android.systemui.statusbar.CarrierLabel android:textAppearance="@android:style/TextAppearance.StatusBar.Icon" android:textColor="@android:color/transparent" android:gravity="left|center" android:id="@id/carrier" android:background="@drawable/carrier_logo" androidaddingLeft="6.0px" androidaddingRight="6.0px" android:layout_width="wrap_content" android:layout_height="fill_parent" android:singleLine="true" />
<com.android.systemui.statusbar.IconMerger android:gravity="left" androidrientation="horizontal" android:id="@id/notificationIcons" androidaddingLeft="3.0dip" androidaddingRight="70.0px" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_weight="1.0" android:layout_alignParentLeft="true" />
<LinearLayout android:gravity="right" androidrientation="horizontal" android:id="@id/statusIcons" androidaddingRight="3.0dip" android:layout_width="wrap_content" android:layout_height="fill_parent" android:layout_alignParentRight="true" />
<com.android.systemui.statusbar.SignalText android:textSize="26.5dip" android:textStyle="bold" android:gravity="center_vertical" androidrientation="horizontal" androidaddingRight="2.0dip" android:layout_width="wrap_content" android:layout_height="fill_parent" />
<com.android.systemui.statusbar.BatteryText android:textSize="16.5dip" android:typeface="serif" android:textStyle="bold" android:gravity="center_vertical" androidrientation="horizontal" androidaddingRight="2.0dip" android:layout_width="wrap_content" android:layout_height="fill_parent" />
</LinearLayout>
Click to expand...
Click to collapse
Result
Some Error when I have no sign/ i flight mode
do you have any Idea how to get rid of the error ?
I've try /res/values/bools.xml but its on default value TRUE
<bool name="config_hspa_data_distinguishable">true</bool>
Click to expand...
Click to collapse
I like this! Might have to give a try soon.
Hey Fergie,
Tried decompiling rom but did not see any value folder.
Running deodexed version of this rom (http://forum.xda-developers.com/showthread.php?t=1910947)
Should it work on this ROM
TIA
mattsd23 said:
Hey Fergie,
Tried decompiling rom but did not see any value folder.
Running deodexed version of this rom (http://forum.xda-developers.com/showthread.php?t=1910947)
Should it work on this ROM
TIA
Click to expand...
Click to collapse
Yea you can use that.
Make sure you using apktool correctly, there's a link in the OP and guides galore on the web
Thanks Fergie.
Ya I guess I didnt install the apktool correctly. Not very many tuts for installing on a mac.
Any chance u can zip yours...really like the illest logo.
Thanks
Hey fergie,
Might be the wrong place to ask but,
I've been trying to set some custom images for my notification drop down background but I've been having some trouble. Any help?
Sent from my SPH-L710 using xda premium
mattsd23 said:
Thanks Fergie.
Ya I guess I didnt install the apktool correctly. Not very many tuts for installing on a mac.
Any chance u can zip yours...really like the illest logo.
Thanks
Click to expand...
Click to collapse
I only have one for stock LJ7 ODEX so if that's what your on I can up it
Ceelos09 said:
Hey fergie,
Might be the wrong place to ask but,
I've been trying to set some custom images for my notification drop down background but I've been having some trouble. Any help?
Sent from my SPH-L710 using xda premium
Click to expand...
Click to collapse
Well this is how I've been doing it
-Decompile SystemUI
-Go to /res/layouts/tw_status_bar_expanded.xml
-In the very second line here
Code:
<FrameLayout android:id="@id/notification_panel" android:background="@drawable/notification_panel_bg" android:paddingTop="@dimen/notification_panel_padding_top" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_marginLeft="@dimen/notification_panel_margin_left"
Change this entry
Code:
android:background="@drawable/notification_panel_bg"
To
Code:
android:background="@drawable/status_bar_expand_default"
-Next, take whatever png you want to be your background and name it "status_bar_expand_default"
-Add that png to /res/drawable-xhdpi/
-Recompile, drag the original META-INF and AndroidManifest,xml from the original SystemUI.apk to the newly compiled one
-Make a flashable and flash in recovery
Hey Fergie,
That would be great if I could get yours for stock LJ7. I appreciatte it.
Thanks!
mattsd23 said:
Hey Fergie,
That would be great if I could get yours for stock LJ7. I appreciatte it.
Thanks!
Click to expand...
Click to collapse
Here you go
http://d-h.st/SoR
Sent from my SPH-L710 using Tapatalk 2
fergie716 said:
Here you go
http://d-h.st/SoR
Sent from my SPH-L710 using Tapatalk 2
Click to expand...
Click to collapse
Just to clarify, what apktool version do you use to compile and recompile JB apks? I remember having to use different versions to compile and recompile apks on ICS
Sent from my SPH-L710 using xda premium
This looks really nice!
Is there a way to do this using APK manager?
Thanks!!

[GUIDE] How to use the Note 2 at 260dpi w/ MultiDPI & Tablet Apps (Xposed, Universal)

[GUIDE] How to use the Note 2 at 260dpi w/ MultiDPI & Tablet Apps (Xposed, Universal)
Warning: Some people have reported boot loops after installing Xposed Framework. I've used it successfully with miscom's stock International DLL1 ROM port and scrosler's deodexed I317UCALK7 without an issue. I'm wondering if the issue could be with odexed ROMs and will take any reports on failures odexed vs deodexed.
The Note 2 ships with 320dpi configured in the build.prop file, making visual elements huge and easier to use farther away from your face or to accommodate bad vision. To maintain a screen real estate per inch ratio similar to that of a regular Android phone, you'll need to do a few easy tweaks which are easily reversible. This guide also includes tweaks to make Chrome, Gmail, gReader Pro use their tablet UI.
None of this is new, but I haven't found it documented anywhere that well. I've experimented with a dozen different DPIs, tried the multi-DPI mods, and found this to overall by the easiest and most stable route.
Requirements:
Root
ROM Toolkit Lite https://play.google.com/store/apps/details?id=com.jrummy.liberty.toolbox
Xposed Framework APK http://forum.xda-developers.com/showpost.php?p=34609290&postcount=2
Xposed Tweakbox APK http://forum.xda-developers.com/showthread.php?t=1629653
Package Name Viewer https://play.google.com/store/apps/details?id=com.gijoon.pkgnameviewer
OPTIONAL Modded Samsung Keyboard http://forum.xda-developers.com/showthread.php?t=2001577 (if you want use Samsung KB)
OPTIONAL Xposed App Settings http://www.villainrom.co.uk/forum/microdownloads/xposed-app-settings.5/viewfile (if you want to set app DPI with a GUI rather than editing XML)
Step by step:
Recommend a nandroid backup before starting
Install the requirements listed above
Open Xposed Installer and tap "Install/Update" and reboot
Open Xposed Installer, to go Modules and ensure that "Xposed Tweakbox" is checked
Open Xposed Tweakbox once, then close it. Don't enable anything here, it wasn't designed for the Note 2 and may break your phone.
Open ROM Toolkit Lite, open the Root Browser, and browse to /data/data/de.robv.android.xposed.mods.tweakbox/shared_prefs/
Open the de.robv.android.xposed.mods.tweakbox_preferences.xml and modify it to include your DPI/UI mods. You can start with everything in my example file below after "START DPI MODS". Either copy & paste the text or replace the file with my example through Dropbox or USB.
Open ROM Toolkit Lite again, swipe over to Performance, go into build.prop editor, scroll all the way down, tap one of the "ro.sf.lcd_density" items, change 320 to 260.
If you want the stock Samsung keyboard to work, you'll have to get the modded version linked above for your ROM version. My personal goal is to keep the stock APKs untouched on my phone, so I just use the AOSP 4.2 keyboard, which scales fine to any DPI. Setting the Samsung keyboard DPI in the XML file doesn't work like it does with apps.
Reboot, you should be good.
The de.robv.android.xposed.mods.tweakbox_preferences.xml file needs to be configured to sets all of the apps that would break to a fixed 320dpi and enables Tablet mode for some Google apps. I use Nova launcher instead of TW and have it's DPI set to 300. To tweak your other apps, add them to this file using the package names found using Package Name Viewer.
You can see in the example how tablet mode is force by adding a line. There's a few other apps you could add here, such as Settings, but I found Settings to be a little too tight. This line sets tablet mode for Chrome:
Code:
<int name="dpioverride/com.android.chrome/swdp" value="600" />
To go further, the DPI of Chrome can be changed (in this case to match the Nexus 7, with this:
Code:
<int name="dpioverride/com.android.chrome/density" value="213" />
Our issue of Samsung compatibility is solved by adding lines such as this:
Code:
<int name="dpioverride/com.sec.android.app.camera/density" value="320" />
My de.robv.android.xposed.mods.tweakbox_preferences.xml file:
Code:
<?xml version='1.0' encoding='utf-8' standalone='yes' ?>
<map>
<int name="low_battery_low" value="15" />
<int name="num_signal_bars" value="4" />
<boolean name="unplug_turns_screen_on" value="true" />
<int name="long_home_press_behaviour" value="2" />
<int name="statusbar_clock_color" value="-4276546" />
<boolean name="battery_full_notification" value="true" />
<boolean name="statusbar_color_enabled" value="false" />
<boolean name="statusbar_clock_color_enabled" value="false" />
<boolean name="show_ongoing_ime_switcher" value="true" />
<int name="low_battery_close" value="20" />
<boolean name="phone_increasing_ringer" value="true" />
<int name="low_battery_critical" value="5" />
<int name="statusbar_color" value="-16777216" />
<!-- START DPI MODS -->
<!-- Play Store Keeper required to prevent DPI Errors in Play Store -->
<int name="dpioverride/com.android.vending/density" value="320" />
<!-- Tablet Mode Mods -->
<int name="dpioverride/com.android.chrome/swdp" value="600" />
<int name="dpioverride/com.noinnion.android.greader.readerpro/swdp" value="600" />
<int name="dpioverride/com.google.android.gm/swdp" value="600" />
<!-- Samsung Compatibility DPI Retainers -->
<int name="dpioverride/com.sec.android.app.voicerecorder/density" value="320" />
<int name="dpioverride/com.sec.android.app.camera/density" value="320" />
<int name="dpioverride/com.sec.android.app.videoplayer/density" value="320" />
<int name="dpioverride/com.sec.android.app.popupcalculator/density" value="320" />
<int name="dpioverride/com.sec.android.app.launcher/density" value="320" />
<int name="dpioverride/com.android.contacts/density" value="320" />
<int name="dpioverride/com.android.phone/density" value="320" />
<int name="dpioverride/com.android.smspush/density" value="320" />
<int name="dpioverride/com.sec.android.app.clockpackage/density" value="320" />
<int name="dpioverride/com.sec.android.app.FlashBarService/density" value="320" />
<int name="dpioverride/com.sec.android.mimage.photoretouching/density" value="320" />
<int name="dpioverride/com.android.calendar/density" value="320" />
<!-- Custom DPI Settings -->
<int name="dpioverride/com.teslacoilsw.launcher/density" value="300" />
<int name="dpioverride/com.android.chrome/density" value="213" />
<!-- END DPI MODS -->
</map>
Screenshots:
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
I've also found that you can set the notification bar to the Nexus 7 style tablet size by adjusting the System UI swdp, although it's a little ugly with my toggles.
Add this line:
Code:
<int name="dpioverride/com.android.systemui/swdp" value="600" />
This should be sticked. Great post
Sent from my SAMSUNG-SGH-I317 using xda premium
Phone locks up after the first reboot when installing the xposed framework. Running Jedi rom.
barry99705 said:
Phone locks up after the first reboot when installing the xposed framework. Running Jedi rom.
Click to expand...
Click to collapse
1+ same issue and I'm using miscom's stock International DLL1 ROM port(Type 3).
Att.Fan1982 said:
1+ same issue and I'm using miscom's stock International DLL1 ROM port(Type 3).
Click to expand...
Click to collapse
Interesting, I'm using type 2 of the same ROM. Must be one of those extra mods that Jedi uses as well.
Also getting bootloop running stock international N7105XXDLL1 after installing/update the framework and reboot
VinceThePrince said:
Also getting bootloop running stock international N7105XXDLL1 after installing/update the framework and reboot
Click to expand...
Click to collapse
Which type number are you on?
Does anyone have this working? I have tried three different ROMs( asylum, Jedi, and miscoms ROM #2) and two kernels with no luck. I boot loop after installing the first mod
Sent from my SGH-I317 using xda app-developers app
It's always worked on miscom type 2 for me. I wonder if the framework installer has changed since I got it installed. I've pulled the framework installer off of my phone, can someone try it with this?
http://db.tt/1YKhPYcX
Zathu said:
It's always worked on miscom type 2 for me. I wonder if the framework installer has changed since I got it installed. I've pulled the framework installer off of my phone, can someone try it with this?
http://db.tt/1YKhPYcX
Click to expand...
Click to collapse
I don't know if it was installing busybox from the market this time or the copy of your framework installer but I got it working! Thank you!
Sent from my SGH-I317 using xda app-developers app
moustro said:
I don't know if it was installing busybox from the market this time or the copy of your framework installer but I got it working! Thank you!
Sent from my SGH-I317 using xda app-developers app
Click to expand...
Click to collapse
Hmm, don't most of these suped up ROMs like Jedi have Busybox included already? Perhaps it is the Framework version. I've updated the main post with a new link.
Zathu said:
Hmm, don't most of these suped up ROMs like Jedi have Busybox included already? Perhaps it is the Framework version. I've updated the main post with a new link.
Click to expand...
Click to collapse
Jedi doesn't have it, but it still locks up with busybox installed.
Thanks for the guide. After trying different DPIs I've found 260 feels perfect for this phone.
barry99705 said:
Jedi doesn't have it, but it still locks up with busybox installed.
Click to expand...
Click to collapse
The updated framework link should take care of that.
Zathu said:
The updated framework link should take care of that.
Click to expand...
Click to collapse
Nope. Still locks up at boot. Though with the newest installer I can no longer adb into the phone, so I get to do the battery pull and restore instead of just doing an adb shell are moving the file back from it's backup...
Just tried this today. I found it was easiest to use the gui based app settings mod. Much simpler than coding up the xml. Works great with Gmail at a low mid forced resolution and moderate dpi. I recommend a nandroid backup because I got stuck in boot the first time around.
Edit: the best apps for this I've tested were Gmail and reddit sync. Chrome was a waste of space and the play store was overly laggy.
This is awesome, thanks OP!
I found that I had to add com.android.mail to the list of 320dpi apps, or there were a few UI issues in the mail app. Loving having Chrome with the tablet UI!
Zathu said:
I've also found that you can set the notification bar to the Nexus 7 style tablet size by adjusting the System UI swdp, although it's a little ugly with my toggles.
Add this line:
Code:
<int name="dpioverride/com.android.systemui/swdp" value="600" />
Click to expand...
Click to collapse
What do I do just to get this? Nexus 7 notification? Where do I add that line?
Will this mod work with stock rooted rom (jl5)? Does it need to be deodexed?
Sent from my SGH-I317M using xda premium

[GUIDE][CM9/CM10]Xperia™ S/Z Lockscreen[05/07/2013]

Hey people,
After porting the Xperia Z lockscreen to My device, i thought of putting a guide that's simple and easy, so that everyone can try doing it on their own..
For CM10 based ROM's:victory:​
Assuming you Know how to De/Re-compile....
Here's
STEP 1: Decompile your android.policy.jar
And put THESE files into \smali\com\android\internal\policy\impl
Done.Recompile your android.policy
STEP 2: Add THIS to \framework
STEP 3: Add THIS to \fonts
STEP 4: And THIS to \etc\permissions
STEP 5: Now for the Lockscreen Settings(in order to change your wallpaper)
Decompile you Settings.apk
Navigate to \res\xml
Open settings_headers.XMl
Add the following Lines
Code:
<header android:icon="@drawable/ic_settings_lockscreen" android:id="@id/lock_screen_settings" android:title="@string/lock_screen_title">
<intent android:targetPackage="com.sonyericsson.lockscreen.uxpnxt" android:action="android.intent.action.MAIN" android:targetClass="com.sonyericsson.lockscreen.settings.Setup" />
</header>
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Add this to ids.xml
(search for it, if you have it ignore.)
Code:
<item type="id" name="lock_screen_settings">false</item>
Add this to strings.xml
(search for it, if you have it ignore.)
Code:
<string name="lock_screen_title">Lock screen</string>
Recompile your Settings.apk
STEP 6: Add THIS to \system\app
STEP 7: For wallpapers, Add THIS to \etc\
All done .
SCREENSHOTS:
For CM9 based ROM's:victory:​
Here's
STEP 1: Decompile your android.policy.jar
And put THESE files into \smali\com\android\internal\policy\impl
Done.Recompile your android.policy
STEP 2: Add THIS to \framework
STEP 3: Add THIS to \fonts
STEP 4: And THIS to \etc\permissions
STEP 5: Now for the Lockscreen Settings(in order to change your wallpaper)
Decompile you Settings.apk
Navigate to \res\xml
Open settings_headers.XMl
Add the following Lines
Code:
<header android:icon="@drawable/ic_settings_lockscreen" android:id="@id/lock_screen_settings" android:title="Xperia Settings">
<intent android:targetPackage="com.sonyericsson.lockscreen.uxpnxtjb" android:action="android.intent.action.MAIN" android:targetClass="com.sonyericsson.lockscreen.settings.Setup" />
</header>
Add this to ids.xml
(search for it, if you have it ignore.)
Code:
<item type="id" name="lock_screen_settings">false</item>
Add this to strings.xml
(search for it, if you have it ignore.)
Code:
<string name="lock_screen_title">Lock screen</string>
Recompile your Settings.apk
STEP 6: Add THIS to \system\app
STEP 7: For wallpapers, Add THIS to \etc\
All done .
SCREENSHOTS:
CREDITS:
Adi Aisiteru Reborn for making THIS compatible for CM9:good:
(don't forget to thank him too)
Sky_Walker
Thilina C for the wallpapers
You, for trying it out!
Feel free to hit thanks. This encourage's me!!​
Guide for the official Xperia™ S lock screen for CM9 based ROM's​I have been going through a lot of threads asking for this MOD so, I thought of making one...
Assuming you Know how to De/Re-compile....
Here's
STEP 1: Decompile your android.policy.jar
And put THESE files into \smali\com\android\internal\policy\impl
Done.Recompile your android.policy
STEP 2: Add THIS to \framework
STEP 3: Add THIS to \fonts
STEP 4: And THIS to \etc\permissions
STEP 5: Now for the Lockscreen Settings(in order to change app shortcuts, notification settings....)
Decompile you Settings.apk
Navigate to \res\xml
Open settings_headers.XMl
Add the following Lines
Code:
<header android:icon="@drawable/ic_settings_lockscreen" android:id="@id/lock_screen_settings" android:title="Xperia Settings">
<intent android:targetPackage="com.sonyericsson.lockscreen.uxpnxt" android:action="android.intent.action.MAIN" android:targetClass="com.sonyericsson.lockscreen.settings.Setup" />
</header>
Add this to ids.xml
(search for it, if you have it ignore.)
Code:
<item type="id" name="lock_screen_settings">false</item>
Recompile your Settings.apk
STEP 6: Add THIS to \system\app
All done .
SCREENSHOTS:
CREDITS
AeonWorld for the original Xperia S lockscreen
@Sky_Walker
@Adi Aisiteru Reborn for their support.
If you want to use this MOD in your ROM's, Don't forget to mention me.:good:
Feel free to hit thanks .This encourage's me!!​
Good Guide everything but the settings mod works :L youve forgot to write about adding the relevant ids and strings to what youve added in settings_headers cause what you've put here doesnt compile but as i say works good
Matyhew
matyhew said:
Good Guide everything but the settings mod works :L youve forgot to write about adding the relevant ids and strings to what youve added in settings_headers cause what you've put here doesnt compile but as i say works good
Matyhew
Click to expand...
Click to collapse
Thanks for reporting that!
thx for lock screen good job
yapamadım. android.policy.jar buraya yüklesem siz yapar mısınız?
Are you asking me to help you out with Android.policy.jar??
If so, provide me your android.policy.jar :thumbup:
Sent from my HTC Wildfire S A510e using xda app-developers app
Compatible with the new update? cm10.1
Sorry for my bad english
Sent from my Wildfire S A510e using xda premium
giacomix5 said:
Compatible with the new update? cm10.1
Sorry for my bad english
Sent from my Wildfire S A510e using xda premium
Click to expand...
Click to collapse
Nope, we need to wait and see what sony does and then we can probably get it working for 4.2.2...:fingers-crossed:
Cup_Cake said:
Nope, we need to wait and see what sony does and then we can probably get it working fro 4.2.2...:fingers-crossed:
Click to expand...
Click to collapse
You mean your mod is only for Jelly Bean 4.1.2 based CyanogenMod?
If I try it on 4.2.2 CM 10.1 with Nexus 4 will it break?
It will bootloop.
Sent from my HTC Wildfire S A510e using xda app-developers app
Cup_Cake said:
It will bootloop.
Sent from my HTC Wildfire S A510e using xda app-developers app
Click to expand...
Click to collapse
Is there anyway that you can create another guide to port the latest 4.2.2 lockscreen to CM10.1 or AOSP at least? I don't know how much it has changes so... It's up to you I'm sure there's many users waiting for Sony's lockscreen on AOSPs
how to decompile
Pls just tell me how to decompile and recompile android.policy.jar
hassouna said:
Pls just tell me how to decompile and recompile android.policy.jar
Click to expand...
Click to collapse
Download apktool https://code.google.com/p/android-apktool/
Extract files to only one directory.
Put androidpolicy.jar in same location.
Open cmd.
cd to your diectory. e.g. for me it's 'cd C:\Users\temp\Desktop\TOOLS\apktool1.5.2'
Issue the command:
Code:
apktool d android.policy.jar
Make your changes.
Then issue the command:
Code:
apktool b android.policy
Done.
thx
MIUI V5 android.policy.jar that has been modded.
MIUI-v5
thehacka1 said:
MIUI V5 android.policy.jar that has been modded.
Click to expand...
Click to collapse
OP updated, link added.:good:
EDIT: link removed
thehacka1 said:
MIUI V5 android.policy.jar that has been modded.
Click to expand...
Click to collapse
Didn't work
just let my phone stuck in boot animation
hassouna said:
Didn't work
just let my phone stuck in boot animation
Click to expand...
Click to collapse
Thanks for reporting! will test and report back.
GUIDE for CM9 based ROM's added!

[MOD][GUIDE][HOW TO][PORT s5 recent panel]

****PORTED S5 RECENT PANEL****​​
Tools required:
-Any tool which can decompile and recompile apk (e.g apktool i use)
-Notepad++
GUIDE:
STEP1:
Decompile your SystemUI.apk
STEP2:
Navigate to res/layout/system_bar_recent_item and open it with notepad++
STEP3:
FIND:
Code:
xmlns:android="http://schemas.android.com/apk/res/android">
And paste the below code
Code:
<FrameLayout android:gravity="center" android:id="@id/recents_item_background_shadow" android:background="#ff005764" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="6.0dip" android:foreground="@drawable/tw_recents_app_bg">
<ImageView android:layout_gravity="center" android:id="@id/recents_item_background" android:layout_width="@dimen/tw_status_bar_recents_panel_bg_width" android:layout_height="@dimen/tw_status_bar_recents_panel_bg_height" />
</FrameLayout>
STEP 4:
Navigate to res/layout-land/status_bar_recent_item and open it with notepad++
Find:
Code:
android:id="@id/recent_item"
And place the below code after that
Code:
<FrameLayout android:gravity="center" android:id="@id/recents_item_background_shadow" android:background="#ff005764" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="6.0dip" android:foreground="@drawable/tw_recents_app_bg">
<ImageView android:layout_gravity="center" android:id="@id/recents_item_background" android:layout_width="@dimen/tw_status_bar_recents_panel_bg_width" android:layout_height="@dimen/tw_status_bar_recents_panel_bg_height" />
</FrameLayout>
STEP5:
Navigate to res/layout-port/status_bar_recent_item and open it with notepad++
Find:
Code:
android:id="@id/recent_item"
And place the below code after that
Code:
<FrameLayout android:gravity="center" android:id="@id/recents_item_background_shadow" android:background="#ff005764" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="6.0dip" android:foreground="@drawable/tw_recents_app_bg">
<ImageView android:layout_gravity="center" android:id="@id/recents_item_background" android:layout_width="@dimen/tw_status_bar_recents_panel_bg_width" android:layout_height="@dimen/tw_status_bar_recents_panel_bg_height" />
</FrameLayout>
STEP6:
Time to create ids.
Navigate to res/values and open strings.xml
Paste the below lines
Code:
<string name="recents_item_background_shadow">recent</string>
<string name="recents_item_background">no shadow</string>
Open ids.xml and paste the below lines
Code:
<item type="id" name="recents_item_background_shadow" />
<item type="id" name="recents_item_background" />
Open dimens.xml and paste the below lines
Code:
<dimen name="tw_status_bar_recents_panel_bg_width">100.0dip</dimen>
<dimen name="tw_status_bar_recents_panel_bg_height">120.0dip</dimen>
Download the .9.png from the attachment and paste it into drawable-hdpi
Recompile and done.
Screenshot and video:
You Tube video
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Thats it...Have fun!!:laugh:
This thread will be updated soon ..because am experimenting with app icon dimens values...
I have very very less time
try it out..have any questions?..ask in the thread.
Credits:
Samsung for s5 dump
@_Sale_ for SystemUI.apk
DOWNLOAD THE BELOW
Code:
tw_recents_bg.9.png
thanks to @RRGrr
Thank you so much RC! :thumbup:
Download:
XWMS3_S4_T_RECENT_S5
so am i the first? good work @cfi 5*
_Sale_ said:
so am i the first? good work @cfi 5*
Click to expand...
Click to collapse
Yes
Seems chill did not allow me to reserve a post.
Regards,
Neel
Vivek_Neel said:
Yes
Seems chill did not allow me to reserve a post.
Regards,
Neel
Click to expand...
Click to collapse
Talk to a mod to re-arrange thread for you.
Great guide Vivek. Very thorough as always
PurifieD Domination S4
Does this method work in mini s3?
Does this method work in mini s3?
Try and report back.
It may work
Regards,
Neel
batmunkh.baachka said:
good work mate. please fix icons background or remove this icon
Sent from my GT-I9100 using XDA Premium 4 mobile app
Click to expand...
Click to collapse
Oh sorry buddy.
Did not have time to make the icons.
Will do
Regards,
Neel
Vivek_Neel said:
Yes
Seems chill did not allow me to reserve a post.
Regards,
Neel
Click to expand...
Click to collapse
Oh my .. Sorry Sir, Just excited.
I will delete it now. :angel:
EDIT : What am I thinking. I can't delete my post.. LOL. Hehehe.
-Chill said:
Oh my .. Sorry Sir, Just excited.
I will delete it now. :angel:
EDIT : What am I thinking. I can't delete my post.. LOL. Hehehe.
Click to expand...
Click to collapse
Np m8.
Let it be there.
Regards,
Neel
Vivek_Neel said:
Np m8.
Let it be there.
Regards,
Neel
Click to expand...
Click to collapse
Noted that Sir. Hoping that I can include this to the project that I will make.
End of OT.
-Chill said:
Noted that Sir. Hoping that I can include this to the project that I will make.
End of OT.
Click to expand...
Click to collapse
Feel free to
Regards,
Neel
i follow the guide but with the system ui of s3 mini . when i recompile , ticklemyandroid give me error
Is for android 4.1.2? I tried to make this but, I can not, I have Galaxy Core android 4.1.2 HDPI, the archives are the same
well i did like the guide but i skipped step 5 as i dont have an "res/layout-land/status_bar_recent_port" in my s4 mini .. is this step so important ??
what is this ?? i means it look like multiwindow
or is it a recent panel ???
remo1995 said:
i follow the guide but with the system ui of s3 mini . when i recompile , ticklemyandroid give me error
Click to expand...
Click to collapse
Lanatico said:
Is for android 4.1.2? I tried to make this but, I can not, I have Galaxy Core android 4.1.2 HDPI, the archives are the same
Click to expand...
Click to collapse
Y don't you guys post the log?
rrgrrg said:
well i did like the guide but i skipped step 5 as i dont have an "res/layout-land/status_bar_recent_port" in my s4 mini .. is this step so important ??
Click to expand...
Click to collapse
Its
Code:
status_bar_recent_item
sukhi.priceless said:
what is this ?? i means it look like multiwindow
or is it a recent panel ???
Click to expand...
Click to collapse
That's side control app
Sent from my Nexus 5 using XDA Free mobile app
@Vivek_Neel then y its screenshot is in the OP ??
its a separate app frm play store then y it is here ???

[GUIDE][MOD][DEV]PO PowerWidget V1.1

Power Widget
POTech Works
NOTE! NOTE! NOTE! NOTE! NOTE! NOTE! NOTE! NOTE! NOTE! NOTE! NOTE! NOTE! NOTE! NOTE! NOTE! NOTE! NOTE! NOTE!
UPDATES will be transfered HERE. Update is so easy now SWEAR ​
Hello XDA, how are everyone? Since I had my vacant time, I brought something, not so unique but I guess it worth to try. As the title implies, yeah its a Power Widget. Remember the CyanogenMod power widget, lidroid quickpanel, and spacecaker xperia toggle and everything that is similar to this, and yeah Im so old and outdated now but I should give it too. This was forked and derived from CyanogenMod 7.2 power widget.
This requires some patience to do, not like how SpaceCaker did. But if you insist to make it to a Super EZ guide, then I can make it(in humbly speaking)
Whats hot:
All lidroid features
22 Power Widgets all in all
Snappy and accurate PowerWidget
Consistent Wifi and Bluetooth name
Widget Threshold
Profile Button
Integrated in your SystemUI
Smart Settings​
Click to expand...
Click to collapse
Whats not:
The Data icon isnt accurate much (Like lidroid does but working fine at dis/enabling)
Not Grid-like power widget, sarrey.​
Click to expand...
Click to collapse
Note:
Let me know if there is a bug you encounter
Click to expand...
Click to collapse
Disclaimer:
I and XDA are not responsible for the Force Close. This guide was tested and working fine for 3 totoro. Take a backup first
Requirements:
Notepad++
Basic Android Modding Skills
The file in this third post named "powerwidget_v1.zip"
Your SystemUI
Apktool
Patience
And a lot of understading because my english is poor
Click to expand...
Click to collapse
Click to expand...
Click to collapse
​
Instruction:
1. Extract the file downloaded given at the requirement
2. Decompile your SystemUI.apk using APK-Tool
3. Deploying the files
a. Put the res folder of the downloaded file to your decompiled SystemUI
b. Put the smali folder of the downloaded file to your decompiled SystemUI​4. Compile your SystemUI.apk
5. After recompiling, decompile it again. (If you think Im trolling, no Im not, we just registered all the ids )
6. Now go to values/public.xml
Look for the following inside the public.xml because we will use it:​
Layout
power_widget_button
power_widget_scrollview
Click to expand...
Click to collapse
Drawable
pxtoggles
Click to expand...
Click to collapse
Id
power_widget_button_custom
power_widget_button_image
power_widget_button_text
Click to expand...
Click to collapse
Mine was:
Code:
<public type="layout" name="power_widget_button" id="0x7f03000a" />
<public type="layout" name="power_widget_scrollview" id="0x7f03000b" />
<public type="drawable" name="pxtoggles" id="0x7f02009c" />
<public type="id" name="power_widget_button_custom" id="0x7f090026" />
<public type="id" name="power_widget_button_image" id="0x7f090027" />
<public type="id" name="power_widget_button_text" id="0x7f090028" />
7. Now we move to the smali,
8. Go to smali/com/pineappleowl/Powerwidget/
a. Inside that folder, find PowerWidget.smali
a1. Find "0x7f03000b" (no quotation mark symbol)
a2. Replace it with the ids of the "power_widget_scrollview" registered at public.xml
a3. Find "0x7f03000a"
a4. Replace it with the ids of the "power_widget_button" registered at public.xml
a5. Save and exit.​ b. Go to PowerButton.smali and same thing as what we did in PowerWidget.smali
b1. Find "0x7f090027" (no quotation mark symbol)
b2. Replace it with the ids of the "power_widget_button_image" registered at public.xml
b3. Find "0x7f090028" (no quotation mark symbol)
b4. Replace it with the ids of the "power_widget_button_text" registered at public.xml
b5. Find "0x7f090026" (no quotation mark symbol)
b6. Replace it with the ids of the "power_widget_button_custom" registered at public.xml
b7. Find "0x7f02009c" (no quotation mark symbol)
b8. Replace it with the ids of the "pxtoggles" registered at public.xml
b9. Save and Exit​9. Go to res/layout/statusbar_expanded.xml and add this line to where you want the powerwidget to be located, (Bring the themer in you )
Code:
<com.pineappleowl.Powerwidget.PowerWidget android:layout_width="fill_parent" android:layout_height="wrap_content" />
10. Save and exit
11. Lastly, recompile again your SystemUI.
12. Of course, it wont work if it doesnt have Settings. Download the apk at the third post named " PWidget Settings Beta1.1.apk"
11. Enjoy bestfriend
Credits:
Android Open Source Program
CyanogenMod
Lidroid
PotatoInc
Mariozawa
My testers (You know who you are )​
Greets,
PineappleOwl​
Screenshots​
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
FAQs
Q: Why dont you have a Grid like Power Widget?
A: Its worth the wait
Q: Why Power Widget again?
A: I had made it, and I want to share to everyone.
Q: Why the app beta?
A: Isnt properly theme and Ill add some functions for the future
Q: Is it open source?
A: I got it from open source Yeah. but PM me for what matters
Q: Its laggy?
A: It depends on the size of the picture
Q: Can I request a feature?
A: Sure if I can hehe, You can suggest what you want.Ill try to do it
Q: How can I donate you?
A: I dont have a donate link and its free.
Click to expand...
Click to collapse
Logs and Link
Download Link:
powerwidget_v1.zip​
PWidget Settings Beta1.0.apk​
Click to expand...
Click to collapse
LOGS:​
Code:
[SIZE="3"][B]V1.0[/B]
Initial Release
[B]V1.1[/B]
Remodified ProfileButton (No more lags at start-up)
Removed cropping feature for JB and below due to the startActivityResult error I encounter
Kitkat had cropped feature COOL
Screenshot Button only now working in Galaxy Y GT-S5360 (Dont worry, it ninja moves when you are not a Galaxy Y user xD)[/SIZE]
​
PineappleOwl said:
Another reserved
Click to expand...
Click to collapse
sir can you make ss pls
carlo_autor said:
sir can you make ss pls
Click to expand...
Click to collapse
The screenshots are at the second post now heheh
Nice. zehahaha XD
i hope that someone put this into their rom, since i'm not good at compiling framework
good job @op
pitot0909 said:
Nice. zehahaha XD
Click to expand...
Click to collapse
"Zehahaha XD" you sounds familiar
gothed said:
i hope that someone put this into their rom, since i'm not good at compiling framework
good job @op
Click to expand...
Click to collapse
Its not in framework, its in SystemUI hehe
PineappleOwl said:
"Zehahaha XD" you sounds familiar
Its not in framework, its in SystemUI hehe
Click to expand...
Click to collapse
yes sir, i mean that one ,
but maybe i should try this one , since my brother also have 'virgin' totoro device
Thx, its work for my LG P713 (4.1.2)
the_vanya1 said:
Thx, its work for my LG P713 (4.1.2)
Click to expand...
Click to collapse
Really? Can you take a screenshot sir if its okay?
I use another lidroid mod. Music buttons are large. Reboot, shutdown dont work for me (its normal) and apture toggles. Profile picture dont apply.
the_vanya1 said:
I use another lidroid mod. Music buttons are large. Reboot, shutdown dont work for me (its normal) and apture toggles. Profile picture dont apply.
Click to expand...
Click to collapse
Oh thanks. Ill pinned that one for JB, Got to do the screencapture toggle and profile picture, how about profile name?
Its work and see this trouble (and change the Sync and Orientation toggle icons)
the_vanya1 said:
Its work and see this trouble
Click to expand...
Click to collapse
The screenshot, Ill be working on it. Because the intent was for Touchwiz. hmm, the music button gonna resize it now. About the settings, ll update it later or tomorrow. hehe thanks
PineappleOwl said:
Screenshots​
FAQs
Click to expand...
Click to collapse
How did u reference the image ids.? Did u use package name instead?
samsoul16 said:
How did u reference the image ids.? Did u use package name instead?
Click to expand...
Click to collapse
reference? What does it mean? hehehe But I only did was to use BitmapDrawable. and sharedUserId trick
PineappleOwl said:
reference? What does it mean? hehehe But I only did was to use BitmapDrawable. and sharedUserId trick
Click to expand...
Click to collapse
I meant for linking an image in java file we used to write findviewbyid(r.id.data-on) for example what did u use instead of that
samsoul16 said:
I meant for linking an image in java file we used to write findviewbyid(r.id.data-on) for example what did u use instead of that
Click to expand...
Click to collapse
I used BitmapDrawable sir, I didnt used sharedpreference just bitmap.
The con is, you need to have a same sharedUID with the apks. and disable the signature too.
Im finding a way how to deal without disabling signature, I guess I ended up using sharepreference hehehe
Hi sir.. can we add something like this
<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
<uses-permission android:name="android.permission.MANAGE_NETWORK_POLICY" />
<uses-permission android:name="android.permission.WRITE_SETTINGS" />
<uses-permission android:name="android.permission.READ_SYNC_SETTINGS" />
<uses-permission android:name="android.permission.WRITE_SYNC_SETTINGS" />
<uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" />
<uses-permission android:name="android.permission.CHANGE_CONFIGURATION" />
<uses-permission android:name="android.permission.DEVICE_POWER" />
<uses-permission android:name="android.permission.DISABLE_KEYGUARD" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.GET_TASKS" />
<uses-permission android:name="android.permission.KILL_BACKGROUND_PROCESSES" />
in the androidmanifest.xml?
---------- Post added at 05:26 PM ---------- Previous post was at 05:21 PM ----------
and Sir.. can you make.. ===profile_picture=== file .. found in /data/data/cpm.pineappleowl.Settings
Set to RW-R-R..
coz i change it manually.. then reboot.. to appear in my SystemUi.. Sorry for my bad english..

Categories

Resources