Hello guys
i just want to share a very small tut
the basic part .... this should help most of new guys
The topic is about settings preferences
look at this pic
{
"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"
}
first i will explain in easy words
1. Decompile your deodexed sstock settings.apk
2. Download this
If LP View attachment Settings.zip
If MM View attachment MM_Settings.zip and merge to your settings
This zip contain preference smali and preference xml
Compile and Decompile
so you will get pubilc id and replace with yours in krypton.smali
Code:
0x7f060072 = <public type="xml" name="krypton_settings" id="0x7f060072" />
If you need in Dashboard list Follow point 3
3. Now Open res/xml/dashboard_categories.xml
in that add this line (as you like to be )
as i need it in category of personal as in pic
after this line
Code:
<dashboard-category android:id="@id/system_section" android:title="@string/header_category_system">
i just added this line
Code:
<dashboard-tile android:id="@+id/system_section" android:title="Krypton Settings" [COLOR="royalblue"]android:fragment="com.android.settings.rz.krypton"[/COLOR] />
where ever you add the line it should be before this line
Code:
</dashboard-category>
If you need in Some subsettings like adding in display settings. follow point 4
4. For Example If you want the kryton settings inside a display settings
then open res/xml/display_settings.xml
Before
Code:
</PreferenceScreen>
Add this line
Code:
<PreferenceScreen android:title="Krypton Settings" android:key="krypton" [COLOR="RoyalBlue"]android:fragment="com.android.settings.rz.krypton"[/COLOR] />
5. so If you want to add logo to your preferences just add this
Code:
android:icon="@drawable/[COLOR="Red"]ic_settings_kamesh[/COLOR]"
and then add a 72x72 img to drawables with the name ic_settings_kamesh.png ( as you defined )
so code look like
If Dashboard
Code:
<dashboard-tile [COLOR="Teal"]android:icon="@drawable/ic_settings_kamesh"[/COLOR] android:id="@+id/system_section" android:title="@string/RockZ1k_settings" [COLOR="RoyalBlue"]android:fragment="com.android.settings.rz.krypton"[/COLOR]/>
If Subsettings
Code:
<PreferenceScreen [COLOR="Teal"]android:icon="@drawable/ic_settings_kamesh"[/COLOR] android:title="Krypton Settings" [COLOR="RoyalBlue"]android:fragment="com.android.settings.rz.krypton"[/COLOR] />
6. when we do here adding these lines we define Fragment path ( call smali at where we define the xml path to execute )
Code:
[COLOR="RoyalBlue"]android:fragment="com.android.settings.rz.krypton"[/COLOR]
com.android.settings.rz.krypton = smali/com/android/settings/rz/krypton.smali
If you are Done with this
You are almost ready to create your own preference layouts in sub settings or on Dashboard
you can change the PATH / NAME ( you also need to change in smali ) use notepad++
What we can do with the Preference layouts ?
was Explained in next post
I am not a tutor
i just try to explain in simple that everyone can understand
About preferences
Here i will give small example what we can do in preferences
So in above post there you had krypton_settings.xml
open with notepad++
you will find this
Code:
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen android:icon="@drawable/ic_settings_kamesh" android:title="@string/wireless_networks_settings_title"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:settings="http://schemas.android.com/apk/res/com.android.settings">
</PreferenceScreen>
you can add subsettings / switches / color boxes / checkboxes/ External app shortcuts/ Seekbar and almost all
Adding Shortcut of another APP to your settings
1. For example i need to add my kryptonian app as shortcut
Decompile the Kryptonian app ( any app you wish to add )
and open AndroidManifest.xml
you need to find Package and Targets of the app as i shown in picture below
if you find these package and target here go the code you need to add
Code:
<Preference android:enabled="true" android:title="Kryptonian Shortcut" android:summary="discription you like to give">
<intent android:targetPackage="[COLOR="SandyBrown"]com.wubydax.krypton[/COLOR]" android:action="android.intent.action.MAIN" android:targetClass="[COLOR="sandybrown"]com.wubydax.krypto[/COLOR][COLOR="Red"].MainViewActivity[/COLOR]" />
</Preference>
adding this to preference look like
Code:
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen android:icon="@drawable/ic_settings_kamesh" android:title="@string/wireless_networks_settings_title"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:settings="http://schemas.android.com/apk/res/com.android.settings">
[COLOR="DeepSkyBlue"] <Preference android:enabled="true" android:title="Kryptonian Shortcut" android:summary="discription you like to give">
<intent android:targetPackage="[COLOR="SandyBrown"]com.wubydax.krypton[/COLOR]" android:action="android.intent.action.MAIN" android:targetClass="[COLOR="sandybrown"]com.wubydax.krypto[/COLOR][COLOR="Red"].MainViewActivity[/COLOR]" />
</Preference>[/COLOR]
</PreferenceScreen>
and done you will have a Shortcut .. click on that you will enter to that app ( make sure the defined app installed )
Adding SubSettings to Subsettings ( preferences )
1. Follow Post one and Skip point 3 and follow Point 4
and done
Adding SubSettings to Subsettings Or DashBoard Settings without any Smali( preferences )
Just create any example.xml
add this preference code to empty example.xml
Code:
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen android:icon="@drawable/ic_settings_kamesh" android:title="@string/wireless_networks_settings_title"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:settings="http://schemas.android.com/apk/res/com.android.settings">
</PreferenceScreen>
so if you need to wake this example.xml all you need is
add this code to any display or any xml you like to add
Code:
<PreferenceScreen android:icon="[COLOR="SandyBrown"]@drawable/ic_sony_kamesh[/COLOR]" android:id="@+id/example_id" android:title="Give title" android:fragment="com.sonymobile.settings.GenericSettingsFragment">
<extra android:name="extra_after_id" android:value="data_usage_settings" />
[COLOR="Red"]<extra android:name="extra_fragment_preference_xml" android:value="example" [/COLOR]/>
</PreferenceScreen>
the red line value is the name of XML you give
and Done ...!
compile and test
Adding Switches and Checkbox ( preferences )
Follow this Tut
Click here
Adding Seekbar Preferences (easy use no heavy smali trails everyone can play)
Follow this link
Click here
Adding Color Preferences (easy use no heavy smali trails everyone can play)
Follow this Guide
Click here
Nah..how to compile and recompile.?
:good: very nice. Thank you :good:
It doesnt work with my Huawei. Public id is right.
@venkat kamesh hi bro
i try this but get FC.im on xperia z5 on 6.0.1
would you please read and rewrote the smali?
Blackball said:
It doesnt work with my Huawei. Public id is right.
Click to expand...
Click to collapse
Hamidreza2010 said:
@venkat kamesh hi bro
i try this but get FC.im on xperia z5 on 6.0.1
would you please read and rewrote the smali?
Click to expand...
Click to collapse
the code which i gave was working for 6.0
i had tested and i am using on my xperia z5 bro
making a rom for z5
venkat kamesh said:
the code which i gave was working for 6.0
i had tested and i am using on my xperia z5 bro
making a rom for z5
Click to expand...
Click to collapse
It excellent dear.i wait for it.
for this guidance probably i didnt understand good
would you please tell clearly ?
i make it bug get FC
cant make it easier na?:laugh:
This is the way sony use to add in their settings app on stock roms .... link : http://forum.xda-developers.com/cro...mes-apps/cm13-xperia-x-settings-port-t3364693
@venkat kamesh dear i make it successful and now want to change the " Krypton Settings " name in setting
how can i do that?
thanks
Hamidreza2010 said:
@venkat kamesh dear i make it successful and now want to change the " Krypton Settings " name in setting
how can i do that?
thanks
Click to expand...
Click to collapse
Code:
<dashboard-tile android:id="@+id/system_section" android:title="[COLOR="Red"]Krypton Settings[/COLOR]" android:fragment="com.android.settings.rz.krypton" />
Change red words bro
Hello @venkat kamesh I love your guides. But when I merge the files, it doesnt recompile?! Help!
venkat kamesh said:
Code:
<dashboard-tile android:id="@+id/system_section" android:title="[COLOR="Red"]Krypton Settings[/COLOR]" android:fragment="com.android.settings.rz.krypton" />
Change red words bro
Click to expand...
Click to collapse
Hey bro, nice tutorial but Settings of Nougat is different. Can you update the guide to be use in Nougat.
Related
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'sI 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!
{
"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"
}
Oke guys, I want to share how to make white setting on stock jb , actualy I make this guide for xperia L but it working to on xperia M cause same onstock Jb 4.2.2 ok lets guide !
REQUIREMENT:
- BRAIN
- Patient
- experience
- Know how to decompile/recompiling Apk file
- notepad++
- Tool for decompiling, : apkmanager/apktool/Virtous/apkmultitools/ or else
first of all you need installed framework before try this guide
for installed framework
Code:
apktool if framework-res.apk
for installed sony framework
Code:
apktool if semcgenericuxpres.apk
Step One
Decompile settings.apk
Download THIS and extract then copy-paste all item on res/drawable-hdpi/
go to : res/value/style.xml and find this code :
Code:
<style name="Theme.Holo" parent="@*android:style/Theme.DeviceDefault " />
<style name="Theme.Holo.NoActionBar" parent="@*android:style/Theme.DeviceDefault.NoActionBar" />
<style name="Theme.Holo.NoActionBar.Black" parent="@*android:style/Theme.Holo.NoActionBar">
Change like this see red code :
Code:
<style name="Theme.Holo" parent="[COLOR="Red"]@*android:style/Theme.DeviceDefault.Light[/COLOR]" />
<style name="Theme.Holo.NoActionBar" parent="[COLOR="Red"]@*android:style/Theme.DeviceDefault.Light.NoActionBar[/COLOR]" />
<style name="Theme.Holo.NoActionBar.Black" parent="[COLOR="Red"]@*android:style/Theme.Holo.Light.NoActionBar[/COLOR]">
Find this code :
Code:
<style name="Theme.Holo.Dialog" parent="@*android:style/Theme.DeviceDefault.Dialog" />
<style name="Theme.Holo.DialogWhenLarge" parent="@*android:style/Theme.DeviceDefault.DialogWhenLarge" />
<style name="Theme.Holo.Dialog.Alert" parent="@*android:style/Theme.DeviceDefault.Dialog.Alert">
Change like this see red code :
Code:
<style name="Theme.Holo.Dialog" parent="[COLOR="Red"]@*android:style/Theme.DeviceDefault.Light.Dialog[/COLOR]" />
<style name="Theme.Holo.DialogWhenLarge" parent="[COLOR="Red"]@*android:style/Theme.DeviceDefault.Light.DialogWhenLarge[/COLOR]" />
<style name="Theme.Holo.Dialog.Alert" parent="[COLOR="Red"]@*android:style/Theme.DeviceDefault.Light.Dialog.Alert[/COLOR]">
Now recompile and sign apk, step one done !
Step Two
Decompile SomcPhone.apk
go to : res/value/style.xml and find this code :
Code:
<style name="Theme.Settings" parent="@*android:style/Theme.DeviceDefault ">
Change like this see red code :
Code:
<style name="Theme.Settings" parent="[COLOR="Red"]@*android:style/Theme.DeviceDefault.Light[/COLOR]">
Now recompile and sign apk
Note : if you get error on recompile SomcPhone, please delete this folder on SomcPhone.apk
Code:
values-mcc454-mnc1000
values-mcc454-mnc1000-zh-rCN
values-mcc454-mnc1000-zh-rHK
values-es-rUS
values-pt-rPT
Click to expand...
Click to collapse
Click to expand...
Click to collapse
And recompile again sign apk and Step two Done !
Step Three
Decompile framework-res.apk
Download THIS and extract then copy paste all item on res/drawable-hdpi/
Recompile Done !
Note : if you get error please read log.txt and share on this thread and I will help for fixing
Click to expand...
Click to collapse
Click to expand...
Click to collapse
All guide is Done ! now push it to your phone to the /system/app directory
And don’t forget press thanks button if this guide useful for you all!
Ashadin.com
reserved
AgungDaVici said:
Oke guys, I want to share how to make white setting on stock jb , actualy I make this guide for xperia L but it working to on xperia M cause same onstock Jb 4.2.2 ok lets guide !
REQUIREMENT:
- BRAIN
- Patient
- experience
- Know how to decompile/recompiling Apk file
- notepad++
- Tool for decompiling, : apkmanager/apktool/Virtous/apkmultitools/ or else
first of all you need installed framework before try this guide
for installed framework
Code:
apktool if framework-res.apk
for installed sony framework
Code:
apktool if semcgenericuxpres.apk
Step One
Decompile settings.apk
Download THIS and extract then copy-paste all item on res/drawable-hdpi/
go to : res/value/style.xml and find this code :
Code:
<style name="Theme.Holo" parent="@*android:style/Theme.DeviceDefault " />
<style name="Theme.Holo.NoActionBar" parent="@*android:style/Theme.DeviceDefault.NoActionBar" />
<style name="Theme.Holo.NoActionBar.Black" parent="@*android:style/Theme.Holo.NoActionBar">
Change like this see red code :
Code:
<style name="Theme.Holo" parent="[COLOR="Red"]@*android:style/Theme.DeviceDefault.Light[/COLOR]" />
<style name="Theme.Holo.NoActionBar" parent="[COLOR="Red"]@*android:style/Theme.DeviceDefault.Light.NoActionBar[/COLOR]" />
<style name="Theme.Holo.NoActionBar.Black" parent="[COLOR="Red"]@*android:style/Theme.Holo.Light.NoActionBar[/COLOR]">
Find this code :
Code:
<style name="Theme.Holo.Dialog" parent="@*android:style/Theme.DeviceDefault.Dialog" />
<style name="Theme.Holo.DialogWhenLarge" parent="@*android:style/Theme.DeviceDefault.DialogWhenLarge" />
<style name="Theme.Holo.Dialog.Alert" parent="@*android:style/Theme.DeviceDefault.Dialog.Alert">
Change like this see red code :
Code:
<style name="Theme.Holo.Dialog" parent="[COLOR="Red"]@*android:style/Theme.DeviceDefault.Light.Dialog[/COLOR]" />
<style name="Theme.Holo.DialogWhenLarge" parent="[COLOR="Red"]@*android:style/Theme.DeviceDefault.Light.DialogWhenLarge[/COLOR]" />
<style name="Theme.Holo.Dialog.Alert" parent="[COLOR="Red"]@*android:style/Theme.DeviceDefault.Light.Dialog.Alert[/COLOR]">
Now recompile and sign apk, step one done !
Step Two
Decompile SomcPhone.apk
go to : res/value/style.xml and find this code :
Code:
<style name="Theme.Settings" parent="@*android:style/Theme.DeviceDefault ">
Change like this see red code :
Code:
<style name="Theme.Settings" parent="[COLOR="Red"]@*android:style/Theme.DeviceDefault.Light[/COLOR]">
Now recompile and sign apk
And recompile again sign apk and Step two Done !
Step Three
Decompile framework-res.apk
Download THIS and extract then copy paste all item on res/drawable-hdpi/
Recompile Done !
All guide is Done ! now push it to your phone to the /system/app directory
And don’t forget press thanks button if this guide useful for you all!
Click to expand...
Click to collapse
I'll decently try and tell you.
HIT THANKS IF YOU LIKE
Nice guide sir, thanks
Sent from my GT-S6310 using XDA Premium 4 mobile app
there is no
Code:
<style name="Theme.Holo.NoActionBar.Black" parent="@*android:style/Theme.Holo.NoActionBar">
and this
Code:
<style name="Theme.Holo.NoActionBar.Black" parent="@*android:style/Theme.Holo.Light.NoActionBar">
and while recompiling it giving error
no resources found that matches the name '@*android:style/Theme.DeviceDefault.Light.dailog'
giridhargp said:
there is no
Code:
<style name="Theme.Holo.NoActionBar.Black" parent="@*android:style/Theme.Holo.NoActionBar">
and this
Code:
<style name="Theme.Holo.NoActionBar.Black" parent="@*android:style/Theme.Holo.Light.NoActionBar">
and while recompiling it giving error
no resources found that matches the name '@*android:style/Theme.DeviceDefault.Light.dailog'
Click to expand...
Click to collapse
are you installed xperia stock framework before this guide ? if you already to install this guide will fully working buddy .. keep working
AgungDaVici said:
are you installed xperia stock framework before this guide ? if you already to install this guide will fully working buddy .. keep working
Click to expand...
Click to collapse
Ya I do have stock 4.1.2 FW
HIT THANKS IF YOU LIKE
giridhargp said:
Ya I do have stock 4.1.2 FW
HIT THANKS IF YOU LIKE
Click to expand...
Click to collapse
try with fw 4.2.2 .. cause I try this guide to xperia m dual and it work fine
AgungDaVici said:
try with fw 4.2.2 .. cause I try this guide to xperia m dual and it work fine
Click to expand...
Click to collapse
Oh I don't have , I was trying to make white setting from almost one month, till now didn't get. Will try for xm single?
HIT THANKS IF YOU LIKE
it ended with bootloop i skipped step 2
i cannot find somcphone.apk anyone help??
jb 4.2.2 deodexed xperia m
sidrock622 said:
it ended with bootloop i skipped step 2
i cannot find somcphone.apk anyone help??
jb 4.2.2 deodexed xperia m
Click to expand...
Click to collapse
Somcphone is ur phone apk.
And always remember when you are doing experiment with framework-res, always have backup.
HIT THANKS IF YOU LIKE
giridhargp said:
Somcphone is ur phone apk.
And always remember when you are doing experiment with framework-res, always have backup.
HIT THANKS IF YOU LIKE
Click to expand...
Click to collapse
Yeah i took backup thats not problem settings.apk successfully recompiled
framework also recompiled
my problem is one time i got bootloop
so to chk wheather framework-res.apk is correctly modified
so simply tried to install tat apk its showing "Parse error"
settings.apk is fine able to open apk
"Parse error" how to solve this plz any tested xm dual users reply
Thanks, it works on my Xperia M
And by the way, aku juga dari Indonesia gan!!
WafiAzmiHartono said:
Thanks, it works on my Xperia M
And by the way, aku juga dari Indonesia gan!!
Click to expand...
Click to collapse
M or MD?
HIT THANKS IF YOU LIKE
Xperia M Single
WafiAzmiHartono said:
Thanks, it works on my Xperia M
And by the way, aku juga dari Indonesia gan!!
Click to expand...
Click to collapse
oh really
AgungDaVici said:
oh really
Click to expand...
Click to collapse
Yes
Thanks a lot, that's very useful :good:
WafiAzmiHartono said:
Iya gan
Maksih banyak :good:
Click to expand...
Click to collapse
Use English language. It's xda rule.
HIT THANKS IF YOU LIKE
giridhargp said:
Use English language. It's xda rule.
HIT THANKS IF YOU LIKE
Click to expand...
Click to collapse
I'm sorry, i already change it
Success recompiling 4.2.2 xperia m
thank you
what i did was after recompiling
instead of signing settings.apk,phone.apk and framework-res.apk
i replaced META-INF folder and AndroidManifest.xml from original apk to
compiled apk's(followed this wonderful guide http://forum.xda-developers.com/showthread.php?t=1806602#5)
no prase error after doing tat
****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 ???
How to port Xperia Z2 Styled tabbed statusbar
Many people asked me to release my tabbed view so here it is. its very easy because these tabs all needs you to add all ids and such and then in all smali you need to fix 0x730254 etc values.
BUT NOW!!! that time is over i have been working on these toggles for a few days now and its set so it will get all values etc with only packagename
so you only need to copy paste the stuff i say you to
{
"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"
}
REQUIREMENT:
- BRAIN
- Patient
- Know how to decompile/recompiling Apk file
- notepad++
- Tool for decompiling, : apkmanager/apktool/Virtous/apkmultitools/ etc,
1. Decomple SystemUI.apk
/res/values/ids.xml
Add the following values to ids.xml
Code:
<item type="id" name="spomc_xperia_tabs">false</item>
<item type="id" name="spomc_xperia_tabbuttons">false</item>
2. Copy paste the Attached TabContent.zip to ur systemui/
This will add the resources and tabbed smali's.
3. Goto /res/layout/statusbar_expanded.xml
after opening the layout you will see something like this in first few rows.
Code:
xmlns:android="http://schemas.android.com/apk/res/android">
Paste the following code under it.
Code:
<com.spacey.xperiatabs.TabButtons android:gravity="center" android:layout_gravity="top" android:orientation="horizontal" android:id="@id/spomc_xperia_tabbuttons" android:background="#aa000000" android:layout_width="fill_parent" android:layout_height="42.0dip" />
<com.spacey.xperiatabs.TabBase android:id="@id/spomc_xperia_tabs" android:background="#aa000000" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_weight="0.8" android:layout_below="@id/spomc_xperia_tabbuttons">
<LinearLayout android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="wrap_content">
[COLOR="Magenta"]<TextView android:textColor="#ffffffff" android:gravity="center" android:paddingBottom="8.0dip" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="This you can fill up " android:layout_centerInParent="true" android:layout_centerHorizontal="true" android:layout_centerVertical="true" />[/COLOR]
</LinearLayout>
and before
Code:
</com.android.systemui.statusbar.ExpandedView>
add this
Code:
</com.spacey.xperiatabs.TabBase>
4. Save it all
and Recompile SystemUI.apk
5. U should be done now.
FAQ
The Magenta colored code you can change with like maybe my toggles http://forum.xda-developers.com/galaxy-y/general/mod-easy-grid-toggles-copy-paste-t2854197 or anything else
CREDITS:
[/B]
AuliaYF
TentenPonce
TuxKids
Aryne
Potato Bro's
SonyXperiaZ2 for pngs
SpaceCaker ofcourse!
Attachements:
TabContent.zip dl link https://dl.dropboxusercontent.com/u/56034188/1CM7 acei/TabContent.zip
or see bottom of post for attached zip
spaceholder
sorry sir but
one last question m on jb 4.2.2 with serajr toggles xperia l
and can u tell me how to edit or pls do it for me I will give u my statusbarexpanded.xml
Solved
yeaaaa.... you should create more bro!
Holy status bar! Need to try it asap.
EDIT: How can I put text on buttons sir @SpaceCaker ? And How do I put the Notifications on First Tab sir and also how do I put the toggles on Second Tab? Sorry for the noob question.
jasper~ said:
Holy status bar! Need to try it asap.
EDIT: How can I put text on buttons sir @SpaceCaker ? And How do I put the Notifications on First Tab sir and also how do I put the toggles on Second Tab? Sorry for the noob question.
Click to expand...
Click to collapse
uh the linearlayout is where you want to put the toogles
its automatically detect the first layout to notif sir
Mranggapo said:
uh the linearlayout is where you want to put the toogles
its automatically detect the first layout to notif sir
Click to expand...
Click to collapse
The attachment below is the screenshot of first tab sir. I received sms and there is no notification on the first tab.
yeah,,sir,,,nice,,i try to it on my 4.3:fingers-crossed:
jasper~ said:
The attachment below is the screenshot of first tab sir. I received sms and there is no notification on the first tab.
Click to expand...
Click to collapse
give me your expanded.xml sir
jasper~ said:
The attachment below is the screenshot of first tab sir. I received sms and there is no notification on the first tab.
Click to expand...
Click to collapse
its all layouting
yash989 said:
sorry sir but
one last question m on jb 4.2.2 with serajr toggles xperia l
and can u tell me how to edit or pls do it for me I will give u my statusbarexpanded.xml
Click to expand...
Click to collapse
put ur expanded.xml on pastebin.com ok ?
i will try for you
only because today i am nice
jasper~ said:
The attachment below is the screenshot of first tab sir. I received sms and there is no notification on the first tab.
Click to expand...
Click to collapse
sir,i think two layout is two tab.
Mranggapo said:
uh the linearlayout is where you want to put the toogles
its automatically detect the first layout to notif sir
Click to expand...
Click to collapse
Mranggapo said:
give me your expanded.xml sir
Click to expand...
Click to collapse
Here is my edited expanded.xml .
Myth2014 said:
sir,i think two layout is two tab.
Click to expand...
Click to collapse
what do you mean sir?
---------- Post added at 02:58 PM ---------- Previous post was at 02:57 PM ----------
SpaceCaker said:
put ur expanded.xml on pastebin.com ok ?
i will try for you
only because today i am nice
Click to expand...
Click to collapse
Can mine, too?
jasper~ said:
what do you mean sir?
---------- Post added at 02:58 PM ---------- Previous post was at 02:57 PM ----------
Can mine, too?
Click to expand...
Click to collapse
yeah,,,look like:
<com.spacey.xperiatabs.TabBase android:id="@id/spomc_xperia_tabs" android:background="#aa000000" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_weight="0.8" android:layout_below="@id/spomc_xperia_tabbuttons">
<TextView android:textColor="#ffffffff" android:gravity="center" androidaddingBottom="8.0dip" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="First Tab " android:layout_centerInParent="true" android:layout_centerHorizontal="true" android:layout_centerVertical="true" />
<TextView android:textColor="#ffffffff" android:gravity="center" androidaddingBottom="8.0dip" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="Second Tab" android:layout_centerInParent="true" android:layout_centerHorizontal="true" android:layout_centerVertical="true" />
</com.spacey.xperiatabs.TabBase>
A layout is a Tab,,,
SpaceCaker said:
put ur expanded.xml on pastebin.com ok ?
i will try for you
only because today i am nice
Click to expand...
Click to collapse
i and samsoul fix it
thanks for help and awsome guide
will there be update fir toggles like profile reboot and all?
yash989 said:
i and samsoul fix it
thanks for help and awsome guide
will there be update fir toggles like profile reboot and all?
Click to expand...
Click to collapse
reboot toggle
dude super smart :3 thanks will try to implement
SpaceCaker said:
reboot toggle
dude super smart :3 thanks will try to implement
Click to expand...
Click to collapse
here are some toggles I can say
profile sync reboot power off teetering lockscreen USB Debugging flash light stay awake roaming and if time (stamina nfc)
just suggestions
u r great
Can the button on the bottom?:fingers-crossed:
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 SystemUI4. 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 Exit9. 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..