Fast... Nimble...
READ:
1.Back up (NANDROID) and your Apps (Titanium B.)
2.Boot in Recovery and wipe EVERYTHING
3.Flash the ROM
4.If you want to do 6 wipes then you can wipe again (else, skip)
5.Reboot, setup then reboot again.
Tweaked for balance between permormance and battery (kernel)
Alpha
BASE: V20n Germany
KERNEL: Sergey1369's compiled kernel (Diana based)(LED MOD)
MODS: Auto battery calibrate every 100% charged, Deodexed, Zipaligned, vm tweaks, Kernel tweaks,
Low Memory Killer adjusted, system tweaks, build.prop tweaks, e-recovery.
DOWNLOAD/LINK: http://ge.tt/2CfNE6F/v/0?c
MIRROR: http://www.mediafire.com/?qbnkm22xn491tt0 (Same MD5, thanks to ocovarr112)
MD5: 4325B638657137FCF98CE28CFFDB35B0
Brahma
BASE: V20o Germany
KERNEL: V20o
MODS: I need a full wipe on this because of a new base.
Just a simple proper mounting of partitions.
Previous Brahma zips has sysctl.conf tweaks (applying and working with a startup script)(previous are on init.omap.post_boot.sh and init.rc) but I dropped them, same performance without them and needs proper testing.
Kernel is stock (for stability) but tweaked. (DVFS enabled/more stable)(can't use SetCPU or alike)
Removed 'blur' from Power Menu.
Kindly check the 'line 1' or 'line 2' as I think I misplaced the modified SystemUI.apk.
Added modified HTC IME (gray)(will FC at boot cause of missing HIME, but after that it will be OK)
Added 360 Launcher (new version)
Added Titanium Backup
Added quickboot
Google Play
Removed some widgets (will make them flashable/addons)(some runs in background like the Intouch Widget)
Added Smooth scroll (thanks to Mastermind_hassan)
Updated the theme (still incomplete)
And what else....
Thanks to huexxx for the updated updater-script.
DOWNLOAD/LINK: http://ge.tt/9S4OSLF/v/0?c
MIRROR: http://uploaded.to/file/qbdvvajb (thanks to grabba)
MIRROR: http://i.minus.com/1332536587/McObm5W5fjlBb3pFCdVozQ/db0ImQRxXrS8pN.zip (thanks to NOOBY0815)
MIRROR: http://www.mediafire.com/?tenhb3dhejvi9tg (thanks to ocovarr112)
MD5: 7D6F24985AF5B06EFEEFD2CD3150E057
V20o Files: http://www.mediafire.com/?1oj4881y1fl09
To be fixed:
Unfinished theme
...
....
ICS Port Theme GW02
http://forum.xda-developers.com/showpost.php?p=21787061&postcount=2
{
"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"
}
Let's give credits to where credits are due:
Huexxx
knzo
Sergey1369
tkirton
droidphile
Ligux ROM
Tank you so much!!! Kepp up the good work.
Next rom today ? Hehe great xd But I have only one Black (I mean phone xD!) so I can chose only one rom
MAN!!!!...looks A-W-E-S-O-M-E!!!!!!!!......it's great bro!!!!elegant beauty!!!..i like specifically these kind of ROMs!!! ..waiting eagerly
Looks awesome. I'm really looking forward to it.
GO gabwerkz ... your works are always amazing !
Can't wait to try it mate. Looks great.
nice rom... w8ting (nice ligux wifi icon )
timvdhoorn said:
nice rom... w8ting (nice ligux wifi icon )
Click to expand...
Click to collapse
I know you love Ligux.. This is Ligux UI.
a day or two ?
that's just mean
give us that alpha, our phones won't mind
awesomeeeee job man
Nice rom
How did you remove the music widget in your taskbar
Sent from my LG-P970 using xda premium
kaassaus said:
Nice rom
How did you remove the music widget in your taskbar
Sent from my LG-P970 using xda premium
Click to expand...
Click to collapse
http://forum.xda-developers.com/showpost.php?p=23509064&postcount=240
Decompile SystemUI.apk
go to: res/layout/status_bar_expanded.xml
Find these lines:
Code:
<LinearLayout android:gravity="left" android:layout_gravity="center" android:orientation="horizontal" android:id="@id/music_status_bar" android:background="@drawable/noti_control_bar_bg" android:paddingLeft="3.0dip" android:layout_width="fill_parent" android:layout_height="77.25598dip">
And change them to:
Code:
<LinearLayout android:gravity="left" android:layout_gravity="center" android:orientation="horizontal" android:id="@id/music_status_bar" android:background="@drawable/noti_control_bar_bg" android:paddingLeft="3.0dip" android:visibility="gone" android:layout_width="fill_parent" android:layout_height="0.0dip">
So the changes would be: Add "android:visibility="gone"... and android:layout_height="0.0dip" / so from 77.25598dip to 0.0dip.
Boom there it is Nice one, looking forward to give this one a shot
gabwerkz said:
http://forum.xda-developers.com/showpost.php?p=23509064&postcount=240
Decompile SystemUI.apk
go to: res/layout/status_bar_expanded.xml
Find these lines:
Code:
<LinearLayout android:gravity="left" android:layout_gravity="center" android:orientation="horizontal" android:id="@id/music_status_bar" android:background="@drawable/noti_control_bar_bg" android:paddingLeft="3.0dip" android:layout_width="fill_parent" android:layout_height="77.25598dip">
And change them to:
Code:
<LinearLayout android:gravity="left" android:layout_gravity="center" android:orientation="horizontal" android:id="@id/music_status_bar" android:background="@drawable/noti_control_bar_bg" android:paddingLeft="3.0dip" android:visibility="gone" android:layout_width="fill_parent" android:layout_height="0.0dip">
So the changes would be: Add "android:visibility="gone"... and android:layout_height="0.0dip" / so from 77.25598dip to 0.0dip.
Click to expand...
Click to collapse
Tnx man.
Sent from my LG-P970 using xda premium
gabwerkz said:
http://forum.xda-developers.com/showpost.php?p=23509064&postcount=240
Decompile SystemUI.apk
go to: res/layout/status_bar_expanded.xml
Find these lines:
Code:
And change them to:
Code:
So the changes would be: Add "android:visibility="gone"... and android:layout_height="0.0dip" / so from 77.25598dip to 0.0dip.
Click to expand...
Click to collapse
Or if you still got the standard music app then>just open music app>options>disablemusic widget
is it going to look like echelon for cm7 or zeus? or is it going to be a whole new skin??
Felsar said:
is it going to look like echelon for cm7 or zeus? or is it going to be a whole new skin??
Click to expand...
Click to collapse
The UI will look like Ligux.
Anyway, anybody tried sergey's compiled kernel (with LED MOD). Any experience want to share?
it looks really good..did you use the toggles menu from ligux or miui?i want to try this one.and by the way 6945 i/o??really nice and clean ui.
gsal said:
it looks really good..did you use the toggles menu from ligux or miui?i want to try this one.and by the way 6945 i/o??really nice and clean ui.
Click to expand...
Click to collapse
No toggles from both as there will be modification of smalis I believe. That I/O was with rawr (from Nova Kernel). There's your hint. The tweaks mainly came from Nova kernel and Diana Kernel combined. The 3 Quadrants has info on names. (without patched sqlite, with patched sqlite, and with rawr.
If you have Nova Kernel, unpack the zip and you'll see 07nova script in init.d. Filtered+additional scripts+files will result in a massive boost in performance.
You will also see the script how to disable DVFS for (CM7 and LG stock).
Code:
# wait until init.rc sets turn_on_lg_dvfs to 1 or 100 seconds has passed
i=0; while [ `cat /sys/devices/system/cpu/cpu0/cpufreq/turn_on_lg_dvfs` == 0 -a $i -lt 100 ]; do i=$((i+1)); sleep 1; done
# then set turn_on_lg_dvfs to 0
echo 0 >/sys/devices/system/cpu/cpu0/cpufreq/turn_on_lg_dvfs
Now using that in CM7/Lezo/Ligux/Stock LG via init.d, you can use No-frills or SetCPU without the stuttering. For this one (version A) stock LG Kernel, it is placed in init.omap.post_boot for people who wants to somehow use stock and tweak via SetCPU. (version B) has sergey's compiled kernel (LED MOD) which DVFS is already off.
Those are the main tweaks that I have.
Related
{
"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"
}
--==--
As far as I know, this is the first time this has been accomplished on Sense framework for Froyo. I spent a considerable amount of time getting this to work, so I hope everyone likes it. I attempted to make this a MetaMorph theme so it would be easy to apply to any ROM, but I did not have any success. Thus, I will release this with links to framework for different ROMs.
Thanks goes to koush and cyanogen and everyone else that put code into CM6. I started with code from CM6 so it's only fair to show my gratitude for the great dev work they do for this community.
WARNING: I am not responsible for any harm this may directly or indirectly do to your phone. It is always wise to do a backup before applying a mod of this magnitude.
NOTE: You must remove the HTC Lockscreen if you have not done so already. This can be done by running the code below. This mod may also undo some theming you may have done to your rom. After flashing this mod, DO NOT replace your framework-res.apk file with another one or you will end up with a boot loop. I suggest you pull the new one from this mod and theme it manually. Otherwise, run the revert script and then flash whatever theme you want.
Remove HTC lock screen:
Code:
adb shell
mv /system/app/HtcLockScreen.apk /system/app/HtcLockScreen.bak
Install DeskClock.apk:
Code:
adb remount
adb push DeskClock.apk /system/app
Requirements:
You must be using one of the supported ROMs.
Your ROM must be deodexed.
If you are using the HTC clock for your alarms, you will have to install the vanilla clock and use it's alarms instead.
If you have a request for support on another ROM, just ask. I may even put a tutorial together on how to mod your own framework.
Install Instructions:
Remove the HTC lock screen if necessary
Install the vanilla clock if necessary
Download the framework zip for the ROM you are running
Download either the Rotary_Music or Rotary_NoMusic zip
Flash both of the zips in recovery
Reboot
Profit
--==--
Thanks to everyone that has donated
Supported ROMs and Their Framework Zip:
SkyRaider Sense 3.x -- SkyRaider_Sense_Rotary.zip (Mirror)
SkyRaider Vanilla 3.x -- SkyRaider_Vanilla_Rotary.zip (Mirror)
Virtuous 2.6 or Stock OTA -- Virtuous_Rotary.zip (Mirror)
Frankenrom -- FrankenRom_Rotary.zip (Mirror)
Themes:
Smooth Sense 1.0 (framework only; use for stock ROM) -- Smooth_Sense_Rotary.zip (Mirror) -- Original Thread
INCredible REVOlution -- Manup456_REVOlution_1_2r1-INC-rotary.zip
INCredible REVOlution (framework only) -- INCredible_REVOlution_rotary_framework.zip
Theme based on this thread with fixes -- original thread
Fixed Gmail/Voice Search
Fixed emmc not mounting
Lock Screen Options:Sense UI
Rotary w/ Music Controls -- Rotary_Music.zip (Mirror)
Rotary w/ Music Controls & Menu Unlock -- Rotary_Music_MenuUnlock.zip (Mirror)
Rotary w/ No Controls -- Rotary_NoMusic.zip (Mirror)
Revert to Tab Unlock -- Revert.zip (Mirror)
CyanogenMod
Coming soon ...
Complete Roms with Lock Screen:
CyanogenMod 6.0.2 - TouchPro Mod -- cm-6.0.2-Inc-tp-mod.zip
Additional Resources:
Vanilla Desk Clock -- DeskClock.apk
HTC Lock Screen -- HtcLockScreen.apk
TUTORIAL: How to mod your own frameworkFor this mod to work with your framework, you must alter your framework-res.apk file. It requires only editing /res/values/ids.xml and /res/values/public.xml. You need to add lines to both. There are also a couple layouts you need to add to /res/layout. Keep in mind, this tutorial only applies to dinc Sense framework.
Disclaimer: This requires knowledge of some advanced Android tools. I will not explain how to install or use them in this tutorial. I will only outline on a high level what needs to be done.
REQUIRED RESOURCES:
apktool - http://code.google.com/p/android-apktool/
DIRECTIONS:
Decompile framework-res.apk
Make the changes outlined below
Recompile
Open the original apk and delete the /res folder and resources.arsc file
Open up the newly compiled apk and copy over the /res folder and resources.arsc file into the original apk
At this point, you can push it over to your phone for testing
REQUIRED CHANGES:For ids.xml, add the following:
Code:
<item type="id" name="musicControlPlay">false</item>
<item type="id" name="musicControlPause">false</item>
<item type="id" name="musicControlPrevious">false</item>
<item type="id" name="musicControlNext">false</item>
<item type="id" name="fill_parent">false</item>
<item type="id" name="rotary">false</item>
For public.xml, add the following:
Code:
<public type="id" name="musicControlPlay" id="0x0102021e" />
<public type="id" name="musicControlPause" id="0x0102021f" />
<public type="id" name="musicControlPrevious" id="0x01020220" />
<public type="id" name="musicControlNext" id="0x01020221" />
<public type="id" name="rotary" id="0x01020222" />
And ...
Code:
<public type="layout" name="keyguard_screen_rotary_unlock" id="0x01090076" />
<public type="layout" name="keyguard_screen_rotary_unlock_land" id="0x01090077" />
Last, add these two files to /res/layout:
keyguard_screen_rotary_unlock_land.xml
keyguard_screen_rotary_unlock.xml
As always, great work ihtfp69. Do the music controls always stay on screen even if there is no music playing? I'm assuming the controls only work for the default music program?
do i need to install vanilla clock if im using your SR 2.5.2 or SR 3.0?
Nice job ihtfp69. You've been doing good things for the Inc.
You rock......
Sent from my ADR6300 using XDA App
TheWhiteBandito said:
As always, great work ihtfp69. Do the music controls always stay on screen even if there is no music playing? I'm assuming the controls only work for the default music program?
Click to expand...
Click to collapse
They are always on. They will work with whatever your default player is. It works with HTC Music, MusicMod, the stock Android Music, etc ...
zeke1988 said:
do i need to install vanilla clock if im using your SR 2.5.2 or SR 3.0?
Click to expand...
Click to collapse
Only if you are using the Sense version as you likely do not have it installed. It is already included with SkyRaider Vanilla 3.x.
Awesome.
Will this overwrite existing customizations such as status bar mods?
OSully said:
Awesome.
Will this overwrite existing customizations such as status bar mods?
Click to expand...
Click to collapse
It will not undo some status bar mods (like the ones that remove icons from the status bar or change the color of your clock), but may undo some themes like custom battery graphics.
This mod can be applied to any framework, though. It just takes five minutes of work. Currently, I have only done three. I may post a tutorial later if there is interest.
ihtfp69 said:
It will not undo some status bar mods (like the ones that remove icons from the status bar or change the color of your clock), but may undo some themes like custom battery graphics.
This mod can be applied to any framework, though. It just takes five minutes of work. Currently, I have only done three. I may post a tutorial later if there is interest.
Click to expand...
Click to collapse
It did overwrite the Revolution theme on Virtuous 2.6 rom, and I tried overwriting it by reinstalling the theme, which caused a force close on boot up and a boot loop, lol.
Nandroid ftw.
Any theme that includes a framework-res.apk file will either have to be patched or re-applied to the framework in the second post. Just post a request or have the themer pm me. To avoid boot loops, flash the revert script before flashing another theme. It will put things back.
Nothing for CM6?
ihtfp69 said:
Any theme that includes a framework-res.apk file will either have to be patched or re-applied to the framework in the second post. Just post a request or have the themer pm me. To avoid boot loops, flash the revert script before flashing another theme. It will put things back.
Click to expand...
Click to collapse
I meant no disrespect, just throwing it out there for anyone was in my shoes.
Installed this happily on my SR Vanilla 3.0 RC2! It is delightful.
However, what wasn't so delightful was that it removed my black notification bar with circle battery and replaced it with the white vanilla.
"What the heck, I did not authorize this" I say to myself.
I try to reinstall the black notification bar from rom manager and... boot loops
Color me strange but I prefer the black notification bar to the rotary lockscreen with music controls. I'm all about aesthetics!
Good thing I heeded the warnings and made a backup before install
Nice!!
Thanks ihtfp69 !!
Div033 said:
"What the heck, I did not authorize this" I say to myself.
Click to expand...
Click to collapse
lmao!
10char
Blue Theme
For those that might already have a blue theme for SkyRaider 3.1 RC3 I have ported the blue theme over to the new Rotary Framework that ihtfp69 just released. Just install it via Rom manager or recovery. Also make sure that you are running a blue theme or you will just have only parts of the theme blue. I also ported a blue them over to this rom so you can check it out in the theme section. I take no credit for anything that I did. All I did was copy and paste and rename some files. As always great work ihtfp69
File download -----> http://www.mediafire.com/?pbzs4ddjjvwm1cm
Music controls
So I cannot get the music controls to work. I am just useing the default HTC music player. I start to listen to some music then lock the screen and the pause does nothing. Nor do any of the buttons.
This is a real nice mod.
Thanks!
I know CM9 will be out soon, but many mid/low android device user cant get ICS
So let me present to you Aludra Theme for CM7 (Theme Chooser) and LS Aludra for MiLocker and WidgetLocker (see 2nd post)
This is mix theme from MIUI/MEIZU by ZduneX25, LABEL by tarunagg and LUNAR UI by RED'X. All credit goes to them.
HDPI tested by Techniclez @kaskus
MDPI tested by knzo @kaskus
LDPI tested by andreas @kaskus
CREDITS:
ZduneX25
tarunagg
RED'X
Max Rudberg for Serious SB Setting
Techniclez for some stuff on this theme
Kgill7 for the spirit
New statusbar background (more smooth than before)
{
"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"
}
Download v1.3 here [link]
Update version Aludra theme for Theme Chooser.
Download v1.2.2 here for Transparent Statusbar version [link]
Download v1.2.2 here for Black Statusbar version [link]
First release (v1.2.1)
Download V1.2.1 here [link]
change log:
v.1.2.1 (1/7/2012)
- First Release
v1.2.2 (1/9/2012)
- New Music UI
- New tab focus
v1.3 (1/12/12)
- New Statusbar_Bg
Bugs:
- Alarm doesnt show the clock (follow this guide to solved it)
Enjoy and feel free to ask here if you find some bugs
LS Aludra for MiLocker and WidgetLocker
*for MDPI only (HDPI/LDPI untested)
Download here [link]
===
LS Ursa for MiLocker and WidgetLocker
*for L/M/HDPI
Download here [link]
===
LS Polaris
Download here [link]
===
LS Polaris 'Screwed'
Download here [link]
===
LS Ursa 'Minora'
Download here [link]
===
LS Adara
Download here [link]
===
LAFT
Download here [link]
===
LS Glasia
Download here [link]
===
LS Cobby
*only for MDPI Device with MiLocker V1.3
Download here [link]
===
LS Aviora for Milocker and Widgetlocker
Download here [link]
enjoy
i've tried your theme, and i got some prob, there's a shadow after i pulldown the statbar.
maybe i should make my statbar transparent first? or what?
'cause i don't understand how to make my statbar transparent.
*sorry for my grammar*
this ****s dope!
thanks for sharing
awesome job bro and woot woot i got spirit, lol
ontic said:
i've tried your theme, and i got some prob, there's a shadow after i pulldown the statbar.
maybe i should make my statbar transparent first? or what?
'cause i don't understand how to make my statbar transparent.
*sorry for my grammar*
Click to expand...
Click to collapse
yes, you should enabled the statusbar transparent. you can follow this guide..
fergie716 said:
So I thought I'd write a little guide to help folks experiencing the "Ghosting" issue
(Feel free to link this post to OP if you want. I'll update it if needed)
These might not work for all devices! Really depends what ROM you have
Ok, so the easiest way to get rid of the ghosting in the statusbar
zdunes patcher
*Download the patcher and follow the instructions to set it up
* Place your framework-res.apk (found in /system/framework/) and your SystemUI.apk (found in /system/app/) in the "files_to_patch" folder
*Start "patcher.bat" and select "Browse Statusbar Tweaks" then "Enable only Transparent Statusbar"
*Follow the instructions and after you make the smali edit thats needed select option 5 then 6
*Put the "statusbar_patch.zip" and "statusbar_undo.zip" on your SD card and flash the patch zip in recovery. If something goes wrong, flash the "undo" zip
-UOT Kitchen
*Go to the kitchen and go to the "File Upload" section
*Upload your framework-res.apk and SystemUI.apk from your current ROM
*After apk's are uploaded, goto the "Status bar" tab and select "Use This Mod"
*Select "Enable transparency in status bar"
*Go to the "Summary" tab, then select "Submit work to kitchen"
*Remember your order number then wait to pick it up
*Download your zip form the kitchen when it's done and flash it in recovery
-apktool
*Download apktool and get it set-up. Make sure you meet all the prerequisites
*place your framework-res.apk and SystemUI.apk in your apktool folder (my path is C:\apktool\ )
*in cmd, cd your path to apktool (ex: cd \apktool)
*now enter this
Code:
apktool if framework-res.apk
apktool d SystemUI.apk
*navigate to your decompiled SystemUI folder and go to /res/layout/status_bar.xml
*Open it and scroll towards the bottom. You'll see a line like this
Code:
<com.android.systemui.statusbar.DateView android:textAppearance="@android:style/TextAppearance.StatusBar.Icon" android:gravity="left|center" android:id="@id/date" android:background="@drawable/statusbar_background" android:paddingLeft="6.0px" android:paddingRight="6.0px" android:layout_width="wrap_content" android:layout_height="fill_parent" android:singleLine="true" />
*change this line
Code:
android:background="@drawable/statusbar_background
to this:
Code:
android:background="@android:color/transparent"
*Now navigate to smali>com>android>systemui>statusbar>StatusBarService.smali
*Open it with a text editor and search for this line
Code:
invoke-direct/range {v0 .. v5}, Landroid/view/WindowManager$LayoutParams;-><init>(IIIII)V
*directly above it you will find:
Code:
const/4 v5, 0x2
*change this to:
Code:
const/4 v5, -0x3
*Save the changes you made. Now back in cmd type
Code:
apktool b SystemUI SystemUI-transparent.apk
*Take your newly compiled apk and rename to SystemUI.apk. Sign it using APKManager or something similar
*make a flashable zip out of it or copy/paste to /system/app/ and change permissions to rw-r--r--
*Reboot
The apktool method is basically the same as zdune's patcher. Just thought I'd write that one up in case someone can't download the patcher
other tips
*If using ADW or ADW EX try going to ADW's System Preferences and disable "Wallpaper Hack"
*Try using a Live Wallpaper or MultiPicture Live Wallpaper
Click to expand...
Click to collapse
SoCalSpecialist said:
this ****s dope!
thanks for sharing
Click to expand...
Click to collapse
your welcome mate
kgill7 said:
awesome job bro and woot woot i got spirit, lol
Click to expand...
Click to collapse
LOL..yeah man, i love your theming spirit
perfect!
now if only someone could convert this to MIUI theme..
its launcher pro?
HaN6787 said:
its launcher pro?
Click to expand...
Click to collapse
no, is not.
its MIUI Launcher (Tencent/QQLauncher)
it so beautiful Thx for sharing
awesome theme grats!!! finally a nice theme for mdpi cm7 phones
lactasoyiue said:
it so beautiful Thx for sharing
Click to expand...
Click to collapse
your welcome
bs828 said:
awesome theme grats!!! finally a nice theme for mdpi cm7 phones
Click to expand...
Click to collapse
Enjoy
thanks for sharing
Hy my friend mutia...i really2 love ur theme n ur blog..i want to ask some question..can i or how change font in ur great theme?? As a comparison i take this screenshot from ur theme Aludra theme Ics by achep...i want size in ur theme like to be ics theme by achep...thx agan
Sent from my GT-S5830 using xda premium
madxxxpmc said:
Hy my friend mutia...i really2 love ur theme n ur blog..i want to ask some question..can i or how change font in ur great theme?? As a comparison i take this screenshot from ur theme Aludra theme Ics by achep...i want size in ur theme like to be ics theme by achep...thx agan
Sent from my GT-S5830 using xda premium
Click to expand...
Click to collapse
thanks for your report. for me the size is normal. i will give you a guide to resize them ASAP.
mutia said:
thanks for your report. for me the size is normal. i will give you a guide to resize them ASAP.
Click to expand...
Click to collapse
woww...thx gan....i know the size is normal but i really like font size in ics theme by Achep....thx dude ur awesome...i wait ur good news...if u dont busy i want to guide how to change color too...hit button thanks for u gan...
you're just doin great gan
I love everything you do
Sorry connection error
madxxxpmc said:
Sorry connection error
Click to expand...
Click to collapse
To agan Mutia....ive found a bug in line progress...just me on mdpi handheld or maybe to all...this is a screenshot
Sent from my GT-S5830 using xda premium
LATEST i-SCREAM 13 RELEASED!!!!
FULL CREDITS GOES TO EMANNXPERIA
im just making i-scream usable for our device...
i-scream is a user-customizable rom...
trimmed/debloated to be lightweght..
You dont need to add/use other script here, coz it will break the roms configuration..
AGAIN CONFIRMED WORKING ON LOCKED BOOTLOADER
here is the latest one...
I-SCREAM_13.1_ARC/S
WHITE STATUS BAR THEME
Changelog:
added I-SCREAM MOD in setting
AOSP setup wizard
minfree value increased
few vm tweak edited
some kernel tweak removed (use default config in kernel)
ksm are not enabled by default
netfork removed, due to uncertain security issue (adfree should work this time)
7parts holo
change some png in few apk (it should look nicer)
properly zipaligned & optimized newly added apk
used default eyecandy made by emannxperia
no more icon packs (maybe i'll make one if requested)
INSTRUCTIONS
make full backup of your current rom and apps
flash .587 stock ftf
flash .587 based custom kernel - for unlocked bootloader --> i recommend arcknight 4.1
boot into recovery... Wipe data/ factory reset, wipe cache, wipe dalvik cache, format system
flash i-scream_13_rom, wait till its done
dont reboot yet, wipe dalvik cache, wipe cache, fix permission again
boot into phone homescreen, dont set any account yet, just explore the rom for a bit
reboot into recovery again and flash "white status bar theme" <<< this is optional
Credits:
EMANNXPERIA for the original rom, help and permission to do this! THANK HIM TOO!!!
ADULFO for systemUI i've used
TESTERS AND USERS
and many more!!!
by emann (for original version)
Night-Elf for The Alliance kernel
7OH for framework & awesome mod
Madfysh for 4.1.B.0.587 firmware
serajr for the home launcher
thilinaC for the blue theme
Rizal Lovins for SystemUI & Cybershot
will add more later on..
ORIGINAL THREAD: http://forum.xda-developers.com/showthread.php?t=1570499
Simple thanks is nice too..!
i-SCREAM 13 RC4.1
i-Scream 13 RC4.1
blue statusbar theme <<< OPTIONAL
changelog: RC 4.1
based on rc4
updated system apps
fixed busybox issue - thanks to igogold
adj & minfree fixed - no need to use script manager
software rendering enabled - patched to framework.jar
Netfork Tweak added
setprop in init.d moved to build.prop - more effective
minor adjustment in vm & io tweak
fixed 2g/3g function
white AOSP Status bar - thanks to Adulfo
cyber-shot 6.7.2 - thanks to Rizal Lovins
modded JB Statusbar Xperia T "Tabbed" With SystemUI Preferences - thanks to Rizal Lovins
new Xperia tablet S keyboard
fixed superuser binary issue - thanks to pen386 and ponnu006 for reporting
INSTRUCTIONS <<<<< PLEASE FOLLOW THIS CAREFULLY
Make FULL backup of your current rom and apps
Flash .587 Stock FTF
Flash .587 based custom kernel - for unlocked bootloader --> i recommend arcKnight 4.1
Boot into Recovery... Wipe data/ factory reset, wipe cache, wipe dalvik cache, format system
Flash i-Scream_13_rom, wait till its done
DONT reboot yet, wipe dalvik cache, wipe cache, fix permission again
Boot into phone homescreen, dont set any account yet, just explore the rom for a bit
Reboot into recovery again and flash "blue status bar theme" <<< this is optional
i-SCREAM 13 RC4
i-Scream 13 rc3
i-scream 13 rc2
SCREENSHOTS
RC 4.1
{
"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"
}
RC 4
Looks great! I'm about to try. Thank you!
plz screenshots
n1kolaa said:
plz screenshots
Click to expand...
Click to collapse
SCREENSHOTS at 3rd post
soybi said:
SCREENSHOTS ON ORIGINAL THREAD: http://forum.xda-developers.com/show....php?t=1570499
Click to expand...
Click to collapse
link not work.....
n1kolaa said:
link not work.....
Click to expand...
Click to collapse
try again please
EDIT: UPDATED FIRST POST.....
- ADDED MY SCREENSHOTS
- ADD - ONS UPDATED
DELETED...
i will try today if u add screenshots
and ill promise to post feedback as well
zainthesnipe said:
i will try today if u add screenshots
and ill promise to post feedback as well
Click to expand...
Click to collapse
soybi said:
EDIT: UPDATED FIRST POST.....
- ADDED MY SCREENSHOTS
- ADD - ONS UPDATED
Click to expand...
Click to collapse
look
soybi said:
look
Click to expand...
Click to collapse
Sorry it didn't load on my PC. I van see em on my phone
Ty
Will try in a couple of hours
Sent from my LT18i using xda app-developers app
Hello. I would try this rom but after a clean install It remains on boot animation. Can you help me please?
Arc S uanmasgheeeeees
soybi said:
WTF??????!!!!!! 48 DOWNLOADS w/o feedback??????????
Click to expand...
Click to collapse
Hi, this rom looks like it will be quite good. Im on arconium atm. But I am downloading this to try over the weekend. I will review after the weekend:
How stable it seemed
Smoothness
Any issues I came across
And a comparison with arconium for readers reference.
If there is anything in particular you world like me to test/use let me know.
My phone is a unlocked and rooted lt15i and I will be using stock kernel with cwm.
Swiped from my anything but stock Arc.
IronJacob said:
Hello. I would try this rom but after a clean install It remains on boot animation. Can you help me please?
Arc S uanmasgheeeeees
Click to expand...
Click to collapse
Woah! Maybe there is something wrong with the zip file. Let me fix it once i get my hands on my laptop.
So sorry. Kinda busy with work
Via Xperia Active
Originally Posted by soybi<br />
WTF??????!!!!!! <b>48 DOWNLOADS w/o feedback??????????</b>
Click to expand...
Click to collapse
<br />
<br />
Hi, this rom looks like it will be quite good. Im on arconium atm. But I am downloading this to try over the weekend. I will review after the weekend:<br />
<br />
How stable it seemed<br />
Smoothness<br />
Any issues I came across<br />
And a comparison with arconium for readers reference.<br />
<br />
If there is anything in particular you world like me to test/use let me know.<br />
<br />
My phone is a unlocked and rooted lt15i and I will be using stock kernel with cwm. <br />
<br />
<br />
<br />
Swiped from my anything but stock Arc.
Click to expand...
Click to collapse
Ok. I didnt try arconium on my phone. Cause i cant download it.
Just enjoy the rom once it boots.
Via Xperia Active
IronJacob said:
Hello. I would try this rom but after a clean install It remains on boot animation. Can you help me please?
Arc S uanmasgheeeeees
Click to expand...
Click to collapse
I can confirm this.
Fully clean install
Reboot after install
Sony logo
Xperia logo
Then bootloop.
Phone: LT15i
Stock 4.0.4 kernel with cwm
Swiped from my anything but stock Arc.
Update: uploading new zip file...
Im really sorry about that.. Maybe the zip is corrupted...
Via Xperia Active
soybi said:
Update: uploading new zip file...
Im really sorry about that.. Maybe the zip is corrupted...
Via Xperia Active
Click to expand...
Click to collapse
No worries mate, gotta expect bumps if your going where there aren't any roads.
Sent from my LT18i using xda premium
No problem let us know when we can download fixed version please. Thank you
----------------------------------------------------------------------------------------------------------------------------------------------------------------
Hello everyone
HaSSaN RoM V1
For Samsung Galaxy Tab 3
T210
--------------------------------------------------------------------------------------------------------------------------------
Click to expand...
Click to collapse
Features:
Based on firmware XXBNI1
Android 4.4.2 kitkat
Support All Languages
en-ar-es ...
Support busybox
Support init.d
Deodexed + Rooted
Aroma Installer
No Wipe
Fast Launcher
Lock Screen on status bar
Button or clock or Disable
fix permissions read/write sdcard
All Apps in Aroma
You can choose What you want to install
--------------------------------------------------------------------------------------------------------------------------------
Click to expand...
Click to collapse
kernel:
Stock kernel!
Support init.d
--------------------------------------------------------------------------------------------------------------------------------
Click to expand...
Click to collapse
Screenshot:
--------------------------------------------------------------------------------------------------------------------------------
Click to expand...
Click to collapse
Download:
{
"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"
}
in mega
T210-HASSAN-ROM-V1.0-kitkat-4.4.2-all Languages
or
xda
MD5: C43235906B6552D9FA3E8757B34BB4B3
--------------------------------------------------------------------------------------------------------------------------------
Click to expand...
Click to collapse
how to install:
use Recovery PhilZ
Copy the Rom in your Phone
Take a backup
go to Recovery mode
- turn of your device and hold volume up + home + power -
If you want high performance
And without any problem
Make Full Wipe
Select install zip from sd card and choose Hassan Rom
wait ..
reboot the device
--------------------------------------------------------------------------------------------------------------------------------
Click to expand...
Click to collapse
Update :
First release
v1.0 - Date: 09/10/2014
Click to expand...
Click to collapse
----------------------------------------------------------------------------------------------------------------------------------------------------------------
Click to expand...
Click to collapse
XDA:DevDB Information
HASSAN ROM TAB 3, ROM for the Samsung Galaxy Tab 3
Contributors
HASSAN EL BAGHDADI
ROM OS Version: 2.3.x Gingerbread
Version Information
Status: Stable
Created 2014-10-08
Last Updated 2016-02-02
MOD !!
----------------------------------------------------------------------------------------------------------------
MORE MOD !!
Click to expand...
Click to collapse
MOD :3minit battery for v1.0
Click to expand...
Click to collapse
----------------------------------------------------------------------------------------------------------------------------------------------------------------
Click to expand...
Click to collapse
Going to give it a shot
hey man can you please tell me how to include all languages in my rom and how to add lock button in status bar?
Android file host upload can you please
SM-T210 cihazımdan Tapatalk kullanılarak gönderildi
@HASSAN EL BAGHDADI if the kernel is stock then it misses the IR-blaster for sm-t210r devices so please add it and thanks for the ROM, I am downloading it r8 now
Doesn't the werewolf kernel support ir blaster
svicenty said:
Doesn't the werewolf kernel support ir blaster
Click to expand...
Click to collapse
Yes, indeed but it has problem sadly
chrome blocked your zip after download has finished, why?
Need another way to download. Mega never works for me.
Aroma installer is corrupted, i have chosen not to install chaton, splanner, videos and yahoo news daemon but they were installed also there is no 4-way reboot also please add on aroma all samsung apps, i mean every single one also every google app that is not necessary.
The rom is fast, stable but misses the basic things also can you add 4-way multiwindow like the one on nolekat
Nice to see new roms and new dev.
Even I have t211 at hand.
Sent from my GT-N7000 using XDA Premium 4 mobile app
JT1510365 said:
hey man can you please tell me how to include all languages in my rom and how to add lock button in status bar?
Click to expand...
Click to collapse
hi for all languages use my csc folder
and the lock button
Find
HTML:
<com.android.systemui.statusbar.policy.Clock android:textAppearance="@style/TextAppearance.StatusBar.Clock" android:ellipsize="none" android:gravity="start|center" android:id="@id/clock" android:layout_width="wrap_content" android:layout_height="fill_parent" android:singleLine="true" android:includeFontPadding="false" android:paddingStart="6.0dip" systemui:ampmSmall="false" />
in SystemUI - status_bar.xml add This under
HTML:
<com.android.systemui.statusbar.policy.KeyButtonView android:id="@id/back" android:paddingLeft="0.0dip" android:paddingRight="0.0dip" android:layout_width="wrap_content" android:layout_height="fill_parent" android:src="@drawable/hassan_lock" android:contentDescription="@string/accessibility_back" systemui:keyCode="26" systemui:glowBackground="@drawable/ic_sysbar_highlight" />
Put the picture in the attachments in drawable-xhdpi
Good luck
gr9nole said:
Android file host upload can you please
SM-T210 cihazımdan Tapatalk kullanılarak gönderildi
Click to expand...
Click to collapse
upload to xda host
Ripshock said:
@HASSAN EL BAGHDADI if the kernel is stock then it misses the IR-blaster for sm-t210r devices so please add it and thanks for the ROM, I am downloading it r8 now
Click to expand...
Click to collapse
I do not use the device and I have no idea about the difference between t210 and t210R
Are you sure the only difference in the kernel ?
pengpengback said:
Nice to see new roms and new dev.
Even I have t211 at hand.
Sent from my GT-N7000 using XDA Premium 4 mobile app
Click to expand...
Click to collapse
Thanks bro
HASSAN EL BAGHDADI said:
I do not use the device and I have no idea about the difference between t210 and t210R
Are you sure the only difference in the kernel ?
Click to expand...
Click to collapse
Yes, just a line ask gr8nole about it
Ripshock said:
Aroma installer is corrupted, i have chosen not to install chaton, splanner, videos and yahoo news daemon also there is no 4-way reboot also please add on aroma all samsung apps, i mean every single one also every google app that is not necessary.
The rom is fast, stable but misses the basic things also can you add 4-way multiwindow like the one on nolekat
Click to expand...
Click to collapse
I know that many basic things miss the rom
But the purpose of the Rom activate all languages
I made in two hours
I will update it later with more features
But about Aroma installer I'm sure no mistake in it
Is one else faced the same problem?
Thank you for reporting
HASSAN EL BAGHDADI said:
hi for all languages use my csc folder
and the lock button
Find
HTML:
<com.android.systemui.statusbar.policy.Clock android:textAppearance="@style/TextAppearance.StatusBar.Clock" android:ellipsize="none" android:gravity="start|center" android:id="@id/clock" android:layout_width="wrap_content" android:layout_height="fill_parent" android:singleLine="true" android:includeFontPadding="false" android:paddingStart="6.0dip" systemui:ampmSmall="false" />
in SystemUI - status_bar.xml add This under
HTML:
<com.android.systemui.statusbar.policy.KeyButtonView android:id="@id/back" android:paddingLeft="0.0dip" android:paddingRight="0.0dip" android:layout_width="wrap_content" android:layout_height="fill_parent" android:src="@drawable/hassan_lock" android:contentDescription="@string/accessibility_back" systemui:keyCode="26" systemui:glowBackground="@drawable/ic_sysbar_highlight" />
Put the picture in the attachments in drawable-xhdpi
Good luck
Click to expand...
Click to collapse
hey man i still get the same languages as before with your csc folder. I have no new languages. Also got the lock to work but the png doesn't go in drawable-xhdpi it just goes in drawable. But hey the lock works so no biggie. I want all the languages though.
rom very high mb debloated ?
Power Widget
POTech Works
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)
Update:
-Added Grid style power widget
-Added Recent Toggle
-Revamped PO Power Widget Settings
-Refurbished layout
THE THREAD IS UPDATED, NEW USER AND OLD USER OF THIS MOD, DO IT AGAIN SORRY, NO SHORTCUT FOR OLD USER
Old update:
-As some XDA Developers demand, I'll make this guide 2EZ2DO(too easy to do). No more smali included plus make your systemui.apk
-For those who made the guide already just replace the smali folder in your SystemUI.
-For new XDA-Developer who will do this, just go with the instruction.
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
Easy to do
Grid Power Widget
Click to expand...
Click to collapse
Whats not:
The Data icon isnt accurate much (Like lidroid does but working fine at dis/enabling)
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 and a Nexus 7 2013. Take a backup first
Requirements:
Notepad++
Basic Android Modding Skills
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. Download and install the APK PWidget Settings Beta2.1.apk given at the third post.
2. Download the file powerwidget_v2.3.zip given at the third post
3. Decompile your SystemUI.apk
4. After decompiling, extract the powerwidget_v2.3.zip and deploy it to the SystemUI.apk
a. Put the res folder of the powerwidget_v2.3.zip to youe decompiled SystemUI.apk
b. Put the smali folder of the downloaded file to your decompiled SystemUI.apk5. Go to statusbar_expanded.xml right from the res/layout of your decompiled SystemUI.apk
6. (This may vary with everyone's layouting, and bring the themer in you) Put this code in your statusbar_expanded.xml
For people who want horizontal power widget, put this code
Code:
<com.pineappleowl.Powerwidget.PowerWidget android:layout_width="fill_parent" android:layout_height="wrap_content" />
For user who want to add grid power widget put this code
Code:
<ScrollView android:layout_width="fill_parent" android:layout_height="fill_parent">
<com.pineappleowl.Powerwidget.PowerWidgetGrid android:layout_width="fill_parent" android:layout_height="wrap_content"/>
</ScrollView>
7. Save and recompile your APK
8. Enjoy the PO PowerWidget
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 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: 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. [/QUOTE]
Download Link:
powerwidget_v2.3.zip
PWidget Settings Beta2.1.apk
Click to expand...
Click to collapse
PLEASE DONT MIRROR THE DOWNLOAD LINK. IT THANKS MANY NIGHTS TO DO THIS, IM OBSERVING THE DOWNLOAD COUNT TOO. PLEASE I MADE IT FREE AND I PUT EFFORT DONT TRY, PLEASE(IM BEGGING). AND IF YOU SHARE YOUR MOD PUT A PROPER CREDIT, AND LINK IT HERE. (I SEE MY WORK MIRRORED, IT DISCOURAGED ME )
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)
[B]V1.2[/B]
Fix Flashlight PowerWidget
Made the guide super easy
No more smali editing
Remove Kitkat cropped feature
[/SIZE]
<!------- Other version skipped. Its private --------->
[B]V2.3[/B]
Added Grid Power Widget
Revamped Power Widget Settings
Added Recent Button
[/SIZE]
THIS IS ON DEVELOPMENT STAGE, JUST WAIT FOR FUTURE FEATURE
tnx Sir.. nice one.. im sooo excited in Grid style.. im waiting.. more power ranger sir..
SystemUI force close when i press the flashlgiht toggle sir..
Punkzappa09 said:
tnx Sir.. nice one.. im sooo excited in Grid style.. im waiting.. more power ranger sir..
SystemUI force close when i press the flashlgiht toggle sir..
Click to expand...
Click to collapse
Oh yeaah the fix will come tomorrow i forgot and I rushed xD
Finally found it..goodbye taking care of lidroids..this is what i've been waiting for..
Nice work sir.. i'll try this tommorow
Sent from my GT-S5360 using xda premium
Guide updated 2EZ2D0 now
Where is drawable folder sir?
the_vanya1 said:
Where is drawable folder sir?
Click to expand...
Click to collapse
I putted it in Settings.apk hehhe
When I choose any option - FC
PineappleOwl said:
Guide updated 2EZ2D0 now
Click to expand...
Click to collapse
Nice. zehahaha xD
the_vanya1 said:
When I choose any option - FC
Click to expand...
Click to collapse
Now updated
PineappleOwl said:
Guide updated 2EZ2D0 now
Click to expand...
Click to collapse
Nice!!sir
Sent from my GT-S5360 using xda premium
PineappleOwl said:
Guide updated 2EZ2D0 now
Click to expand...
Click to collapse
Thanks "PINYANG GWAPO" I'LL try now..
Sent from my GT-S5360 using xda premium
I got error parsing xml.. I put the codes below "quickpanel_plmn_background" in statusbar_expanded.xml
Sent from my GT-S5360 using xda premium
wizzer03 said:
I got error parsing xml.. I put the codes below "quickpanel_plmn_background" in statusbar_expanded.xml
Sent from my GT-S5360 using xda premium
Click to expand...
Click to collapse
Its layouting matter sir
PineappleOwl said:
Its layouting matter sir
Click to expand...
Click to collapse
Do i have to put LinearLayout bafore the code sir??
By the way i dont have header yet..is there any way sir??thanks
Sorry for my bad english
Sent from my GT-S5360 using xda premium
wizzer03 said:
Do i have to put LinearLayout bafore the code sir??
By the way i dont have header yet..is there any way sir??thanks
Sorry for my bad english
Sent from my GT-S5360 using xda premium
Click to expand...
Click to collapse
No. heheh just simply put where you want to put. Hehehe. Take a logcat if ever
PineappleOwl said:
Screenshots
FAQs
Click to expand...
Click to collapse
sir @PineappleOwl my statusbar is stock of dxmj1 , i made this awesome mod and i placed the
<com.pineappleowl.Powerwidget.PowerWidget android:layout_width="fill_parent" android:layout_height="wrap_content" />
before com.android.systemui.statusbar.NotificationLinearLayout
and after <ScrollView android:id="@id/scroll" android:fadingEdge="none" android:layout_width="fill_parent"
and i recompile it and flash , but after flashing my statusbar forced closed ? and i used logcat , and i says
"scroll view can host only one direct child"
Pls help , i really want this awesome mod
carlo_autor said:
sir @PineappleOwl my statusbar is stock of dxmj1 , i made this awesome mod and i placed the
<com.pineappleowl.Powerwidget.PowerWidget android:layout_width="fill_parent" android:layout_height="wrap_content" />
before com.android.systemui.statusbar.NotificationLinearLayout
and after <ScrollView android:id="@id/scroll" android:fadingEdge="none" android:layout_width="fill_parent"
and i recompile it and flash , but after flashing my statusbar forced closed ? and i used logcat , and i says
"scroll view can host only one direct child"
Pls help , i really want this awesome mod
Click to expand...
Click to collapse
Bare in mind that scrollviews should have only one child. In your case , you might do the following:
Code:
<ScrollView......> (Parent)
<LinearLayout.......> (Set the orientation to vertical) (Child)
<com.blahblah.PowerWidget....../> (Child of LinearLayout)
<com.blahblah.Notificaionblhablha......> (Child of LinearLayout)
<TextView..../> (Child of com.blahblah.Notificaionblhablha)
<TextView..../> (Child of com.blahblah.Notificaionblhablha)
<and so on....> (Child of com.blahblah.Notificaionblhablha)
</com.blahblah.Notificaionblhablha>
</LinearLayout>
</ScrollView>
It is theming matters. As I said at the instruction, Let your theming skill do the job