[APP][Xposed] XMultiWindow 1.6.0-- Like Omni's Splite View[UPDATE140213] - Xposed Framework Modules

Here is a Xposed module, which port omni's splite view to other ROM.
Features:
*Support splite view and work with two workspace.
*Switch app into splite view in any situations.
*Could switch landscape and portrait.
*Support use SideBar to use.
*Sidebar Settings.
Note:
*Now,two workspace is perfect.
*MIUI user plaes allow floating window.
How to use(please install xposed before):
*FIRST,click the preference item to open the SideBar.
*THEN,you can slide from left to right and open SideBar window.
*AT LAST,you just set the SideBar window position and enjoy splite view.
Test:
*MIUI work fine.
*stock rom work fine.
Thanks to:
*@zst123(I based on his halo float window)
Change Log:
BETA-1.0.0:
*base usage.
*floting window control.
BETA-1.0.1:
*update display.
*support instruction.
BETA-1.0.2:
*fix landscape and portrait.
1.1.0
*fix sub activity'problem,close to perfect(all thanks to zst123)
*fix other devices' resolution.
*fix conflict with xhalo and omni and halo and samsung.(i change the flags that diffrent other).
1.5.0
*NEW:add SideBar and earily to use.
*clean code
1.6.0:
*NEW:Sidebar update and add Sidebar Settings
*code clean.
BUG List:
*some app not work(like fuubo and at present one)
**if exist two app,and one of them couldn't touch item.
Download page:
http://repo.xposed.info/module/com.lovewuchin.xposed.xmultiwindow
{
"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"
}
File:
1.6.0:
View attachment XMultiWindow.apk

No download link ? No picture preview ?
Sent from Bandung

Vuska said:
No download link ? No picture preview ?
Sent from Bandung
Click to expand...
Click to collapse
I am newer and uploading now

Take your time my friend cuz this is something we wait for it for ever.
Thank u so much

MR.Samo said:
Take your time my friend cuz this is something we wait for it for ever.
Thank u so much
Click to expand...
Click to collapse
but it also has some bugs and i coudn't solve it,i really hope some one can help me

Great work dev! Haha. I knew someone will create this!
I think you should say that this uses the same 0x2000 flag as Halo and will conflict with ROMs with halo.
Request to use 0x1000 (so it will not conflict and we will have best of both).

Can you upload your file here? The browser can't parse the address posted man.
Edit: already downloaded from repo now. Gonna try it later. Thanks OP.

happiness4u said:
Can you upload your file here? The browser can't parse the address posted man.
Edit: already downloaded from repo now. Gonna try it later. Thanks OP.
Click to expand...
Click to collapse
as you can see,i am a new and i could write links.
and i'll uplode file immediately.

zst123 said:
Great work dev! Haha. I knew someone will create this!
I think you should say that this uses the same 0x2000 flag as Halo and will conflict with ROMs with halo.
Request to use 0x1000 (so it will not conflict and we will have best of both).
Click to expand...
Click to collapse
i think i use a not good way to solve this problem because i use two flag with two view,and the two position will conflict,and the most problem is that the subactivity couldn't add to the pointing view,could you help me?

LovewuChin said:
i think i use a not good way to solve this problem because i use two flag with two view,and the two position will conflict,and the most problem is that the subactivity couldn't add to the pointing view,could you help me?
Click to expand...
Click to collapse
In your ActivityRecord class hook, you can use these to check. Then use taskAffinity (I refer to my source code)
Code:
boolean top_window = (i.getFlags() & 0x2000) == 0x2000;
boolean bottom_window = (i.getFlags() & 0x1000) == 0x1000;
....
....
if ( (top_window || bottom_window) && taskAffinity ) {
Field intentField = param.thisObject.getClass().getDeclaredField("intent");
intentField.setAccessible(true);
Intent newer = (Intent) intentField.get(param.thisObject);
if (top_window) {
newer.addFlags(0x2000);
}
if (bottom_window) {
newer.addFlags(0x1000);
}
intentField.set(param.thisObject, newer);
floatingWindow = true;
}
You can try this and see if it works.
(On a side note, do you speak chinese?)

zst123 said:
In your ActivityRecord class hook, you can use these to check. Then use taskAffinity (I refer to my source code)
Code:
boolean top_window = (i.getFlags() & 0x2000) == 0x2000;
boolean bottom_window = (i.getFlags() & 0x1000) == 0x1000;
....
....
if ( (top_window || bottom_window) && taskAffinity ) {
Field intentField = param.thisObject.getClass().getDeclaredField("intent");
intentField.setAccessible(true);
Intent newer = (Intent) intentField.get(param.thisObject);
if (top_window) {
newer.addFlags(0x2000);
}
if (bottom_window) {
newer.addFlags(0x1000);
}
intentField.set(param.thisObject, newer);
floatingWindow = true;
}
You can try this and see if it works.
(On a side note, do you speak chinese?)
Click to expand...
Click to collapse
yes,i speak chinese! and thank you for sloving my problem!

How can i close the floating blue circle?

Great idea but I think it need some work... Apps show above other apps... Alot of space under the down workspace and the navbar bar... And after that whatever app I open normally it shows on above workspace
Sent from my Nexus 5 using XDA Premium 4 mobile app

Simply amazing. Keep up dev:good:

very good, working perfectly on my galaxy s4-I9505 with android 4.3 stock

Well dev..does it conflict with xhalo floating window module?
Sent from my Micromax A110Q using XDA Premium 4 mobile app

great module, works good. Got a reboot while trying it but I can understand its just an initial release.

wow wow wow wow wow!!! thankssssss

Tried it in Tab 2 with 4.2.2 Stock and Touchwiz. App got confused and opened the launcher in half the screen and now everything is a mess Also it doesn't close all windows to restore everything when the option is chosen so I had to reboot Great work. Can't wait for the bugs to get ironed out
After touchwiz crashed and with the main homescreen loaded, I managed to open feedly and youtube together with no problem.

Good work. Please don't give up, all people want this !!!

Related

[App] MTreeSize v0.6 build 25

Hello people of xda-developers,
I wrote a small application that recursively finds out folder sizes for any folder.
I was using it when my Trinity was shouting at me "Storage space is critically low" (or something like that) and I didn't know what to delete.
Now you can see what folders take up most space and delete them entirely or specific files.
I'll just let the pictures speak for themselves, but you can read more on my site.
{
"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"
}
Now looking good on VGA screens too (as of build 25)
Awaiting feedback
L.E.: Thanks for everyone's support. If you have any suggestion (especially new features), please feel free to express them.
Version history
v0.6 build 25
- created resources for 192DPI screens (480x640 pixels); now it should look fine on VGA screens (didn't tested for sqare screens though)
New version, 0.6 build 23
- (hopefully) fixed the bug reported by stylez and db77 (thanks for the reports)
New version, 0.6 build 21
- changed drive icons due to possible licensing issues; switched to Crystal Project icons
- (hopefully) fixed a bug reported by stylez
If an error occurs while getting a foder's subfolders/files, a node with an warning icons is being added, for each situation respectively.
this is a great contrbution
i would screamed for this app when i had my universal
i dont have much need for it on the HD but i think ill have it anyway, you never know when itll be needed
thanks very much
Cool app all fine on Tilt, only thing could do with is being .cab'd up
"Same as comment bellow get crashes sometimes on device mem storage card fine"
First off Thank you! grate app and varry usefull.!
but it keeps crashing on
me.. wen i try to scan my storage card it reads afew thousand files or soo and i get: ""An unexpected error has occurred in MTreeSize.exe.
Select Quit and then restart this program, or select Details for more information.""
is this cause im tryi to read to much info? even folders i know used Alot of memory crash tha app? any addvice ?
thanks for tha work...
wow, interesting software. Can't wait for testing.
Thanks and regards
criminalogic said:
First off Thank you! grate app and varry usefull.!
but it keeps crashing on
me.. wen i try to scan my storage card it reads afew thousand files or soo and i get: ""An unexpected error has occurred in MTreeSize.exe.
Select Quit and then restart this program, or select Details for more information.""
is this cause im tryi to read to much info? even folders i know used Alot of memory crash tha app? any addvice ?
thanks for tha work...
Click to expand...
Click to collapse
Sorry about that, I didn't handle some errors. Please try the new version (v0.6 build 15).
Also, it could be very helpful for me to get some details about the errors , so if you encounter some more please post the stack trace.
A stack trace looks like this (you'll see it if you select "Details"):
Code:
MTreeSize.exe
IOException
at System.IO.__Error.WinIOError()
at System.IO.Directory.InternalGetFileDirectoryNames()
at System.IO.Directory.InternalGetFiles()
at System.IO.DirectoryInfo.GetFiles()
at ChitzaSoft.MTreeSize.MTreeNode.GetFiles()
at ChitzaSoft.MTreeSize.Utils.PopulateTree()
at ChitzaSoft.MTreeSize.MainForm.miSelect_Click()
at System.Windows.Forms.MenuItem.OnClick()
...
stylez said:
Cool app all fine on Tilt, only thing could do with is being .cab'd up
Click to expand...
Click to collapse
This evening I'll make some time to create a CAB and maybe sign the assemblies.
Thanks a lot for the feedback.
Great idea and great application! Working good on Hermes.
this is the thing that i really wanted.thx u so much 4 ur great effort.
Was recieving the same error as previously posted hwne it came to scanning large file areas, but I see you already addressed this. Great job and great app.
Although I handled the errors (if anything goes wrong, a tree node with a warning sign and "!" text is created) , usually they're an indication of corrupted files/folders, I would recommend a scan of the storage cards.
In a future version I'll log those errors and display them to the user when the scan is finished.
Great App! I was waiting it for a long time
Posted a review for tomorrow on pianetaPDA.com
Thank you for this, been looking for this kind of apps. It crashes when I launch it for the first time but after that its working all the way....
Catodo said:
Posted a review for tomorrow on pianetaPDA.com
Click to expand...
Click to collapse
http://pocketnow.com/index.php?a=portal_detail&t=news&id=7049
red_hanks said:
Thank you for this, been looking for this kind of apps. It crashes when I launch it for the first time but after that its working all the way....
Click to expand...
Click to collapse
Could you please post the error message here? Maybe I can fix it...
Thanks
New Version installed on Device mem was same when installed on storage.
Still getting error message the folder that i'm trying to open in \Windows\AppMgr or \My Documents.
Storage card fine.
Error message:
MTreeSize.exe
InvalidOperationException
at System.Collections.ArrayList.ArrayListEnumeratorSimple.MoveNext()
at ChitzaSoft.MTreeSize.Utils.PopulateTree(TreeView& tree, String path, List`1 excludedFolders, Control ctrl)
at ChitzaSoft.MTreeSize.MainForm.miSelect_Click(Object sender, EventArgs e)
at System.Windows.Forms.Control.OnClick(EventArgs e)
at System.Windows.Forms.LinkLabel.WnProc(WM wm, Int32 wParam, Int32 lParam)
at System.Windows.Forms.Control._InternalWnProc(WM wm, Int32 wParam, Int32 lParam)
at Microsoft.AGL.Forms.EVL.EnterMainLoop(IntPtr hwnMain)
at System.Windows.Forms.Application.Run(Form fm)
at ChitzaSoft.MTreeSize.Program.Main()
Click to expand...
Click to collapse
On tytn2 it works as it should, thx for this app
Ok working nice for me here is the cab file you were all asking for
Thanks wapvirus.
I posted the new version and the screen shots and I was about to go to sleep when I saw your post, so I created the CAB myself (from now on I'll only post CAB files).
By the way, do you have any idea about keeping a file when installing a new version? I really don't like overwriting user preferences... and I saw some apps asking whether or not to keep the settings, I'd like to do that too.
Thanks
chitza,
Did get an error and have had the occasional crash will post log when get it again "Was able to view folders previesly not".
This is awesome as used to using WinDirStat on computers for the same purpose
stylez.
MTreeSize.exe
NullReferenceException
at ChitzaSoft.MTreeSize.MTreeNode.InvokeAddChild(MTreeNode child)
at ChitzaSoft.MTreeSize.MTreeNode.GetRecursiveFoldersAndFiles(List`1 excludedFolders, String filePattern, List`1 topFiles)
at ChitzaSoft.MTreeSize.Utils.Recurse(Object callbackDataObject)
at System.Threading.ThreadPool.WorkItem.doWork(Object o)
at System.Threading.Timer.ring()
Click to expand...
Click to collapse
http://pianetapda.com/post/611/mtre...ente-dimensione-delle-cartelle-windows-mobile
Here it is. Updated with last version. Thank you Chitza!

[APP][WM6.5]Titanium CommManager [v0.32] test for All Resolution

Comm Manager for Titanium
This is only for QVGA and default Theme
{
"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"
}
You need install the Mortscript First
v0.1 test version - 4pages (10-5-09)
Phone: Cellular Radio On/Off
Wifi: On/Off
Bluetooth: On/Discoverable/Off
FlightMode: Turn off all connectoin (Phone, Wifi, Bluetooth)
v0.2 (11-5-09)
fix some bugs
for all resolution-hopefully
pls help to test and feedback
v0.22 (11/5/09)
still need test for all resolution
change the bluetooth toogle tool, only on & off, no discoverable mode
enable the data connection
v0.3 (26/5/09)
add notify icon
wifi & bluetooth come with 2 option, pls try which one work for you
(after first setup, if you want to change the wifi or bluetooth setting, go "Program Files\CComm"
open the "Setup-Wifi.mscr" or "Setup-Bluetooth.mscr"
v0.32 (11/6/09)
add Setting page & fix wqvga layout (thanks Grant)
add option to change Condensed Page to text or icon
Known Bugs: when turn off the phone connection, will reflash the screen (don't know why )
-Thanks to AppStar for the Themes Installer
Registry
cause this plugin is use the Mortscript to check the status in registry,
so maybe this not work on all device
if you found your status not update, pls help to check your registry
Bluetooth
HKLM\System\State\Hardware\Bluetooth
8=OFF
9=On
11=Discoverable mode
Wifi
HKLM\System\State\Hardware\Wifi
1,5=Off
3=wifi: unavailable
11,17=wifi: available
19,23=Connected
Phone
HKLM\System\State\Phone\Radio Ready State
0=Off
11=Searching
15,31=Connected
Data
HKLM\System\State\Connections\Cellular\Count
0=Off
1=On
Wil this panel overwrite the cpr files, or just inject the code for the panel only? I ask because i have many custom panels (At fav people, weather, system, office, quick launcher etc etc) installed and dont want to loose them.
claus1953 said:
Wil this panel overwrite the cpr files, or just inject the code for the panel only? I ask because i have many custom panels (At fav people, weather, system, office, quick launcher etc etc) installed and dont want to loose them.
Click to expand...
Click to collapse
sorry forgot to told you that include ATThemes Installer
please vga version
hyperfire21 said:
please vga version
Click to expand...
Click to collapse
i try in next version
Please WVGA version too
Thanks, i've been waiting for this....
chriscsh said:
Comm Manager for Titanium
This is only for QVGA and default Theme
You need install the Mortscript First
v0.1 test version - 4pages (10-5-09)
Phone: Cellular Radio On/Off
Wifi: On/Off
Bluetooth: On/Discoverable/Off
FlightMode: Turn off all connectoin (Phone, Wifi, Bluetooth)
Known Bugs: when turn off the phone connection, will reflash the screen (don't know why )
-Thanks to AppStar for the Themes Installer
Click to expand...
Click to collapse
Thanks for the efforts to make such a panel.
I'm using a Kaiser. Although the panel could be loaded, it won't work. Mortscript had been installed.
There same error messages appears for all the panels. FYI, I had checked the registry settings and they are correct.
Invalid parameter count for 'Connect'
Line 5(\Program Files\CComm\Setup.mscr):connect = RegRead("HKLM","System\State\Connections\Network","Descriptions")
Works on P535...
to update statuts... need delete line 5 in setup.mscr...
bluetooth doesn't work !
thx for this plugin ! A must have !
zard said:
Thanks for the efforts to make such a panel.
I'm using a Kaiser. Although the panel could be loaded, it won't work. Mortscript had been installed.
There same error messages appears for all the panels. FYI, I had checked the registry settings and they are correct.
Invalid parameter count for 'Connect'
Line 5(\Program Files\CComm\Setup.mscr):connect = RegRead("HKLM","System\State\Connections\Network","Descriptions")
Click to expand...
Click to collapse
I Have a hermes and I'm getting the same error message.
@ Problem with Line 5...
try attached mscr...
After some rework CPR files...
can i request a vga version please!
thank you
zard said:
Invalid parameter count for 'Connect'
Line 5(\Program Files\CComm\Setup.mscr):connect = RegRead("HKLM","System\State\Connections\Network","Descriptions")
Click to expand...
Click to collapse
pls help to check, do u have this line in registry?
jaycee1981 said:
Please WVGA version too
Click to expand...
Click to collapse
can you post your Titanium cpr file to me?
I get setup on all of the commands..
bluetooth....plane mode... etc....
when i click on it it says Invalid parameter count for "connect"
and more stuff in that message
hope somebody can help me fix it
thanks
v0.2-All resolution
v0.2 is up.
it add for all resolution, but need to test
pls feedback, cause i only try on my qvga device
it doesn't show on wqvga at all. But maybe it s a ROM thing, even showaco's opera and weather tab won't show, other tabs work just fine
Good !
chriscsh said:
pls help to check, do u have this line in registry?
Click to expand...
Click to collapse
i have this line but it s empty entry...
And To work, i have delete this line after all works great...
Why ? i don't know...
_-_-_-_-_-_-__-_-_-_-_-__-
Bluetooth problem : It doesn't Turn ON
registry :
Bluetooth
HKLM\System\State\Hardware\Bluetooth
8=OFF
9=On
11=Discoverable mode
Same on my P535...
v.02... work identical...
THX for Ur Time and HArd Work !
lesscro said:
i have this line but it s empty entry...
And To work, i have delete this line after all works great...
Why ? i don't know...
Click to expand...
Click to collapse
this is for wifi station name, so it only show when you connect to any wifi station,
anyway i delete the line in setup file at v0.2
the bluetooth problem: i use the VJVolubilis, maybe that not work on all device, i will try to search other tool

[ROM] [N1] Evervolv Kitkat 4.4

Presenting Google's latest treat. Android 4.4 Kitkat.
What is Evervolv?
We are an AOSP port aimed at Snapdragon powered devices.
Our rom includes all the basics:
Extended PowerMenu
Battery %,
Volume button music control.
Trackball Wake
Theme manager
Unique additions include:
sixbar signal strength
lockscreen dialpad, and a few lockscreen mods
However our biggest feature is the ability to turn all that off with one switch in the toolbox, giving you 100% aosp look and feel.
We also do eng builds (instead of userdebug like everyone else) providing more open experience (ie adb root by default) and full complement of commandline tools (busybox, vim, ssh, curl/wet with ssl support!)
Our newest addition is a custom updater written from scratch by Preludedrew and myself, featuring automatic update checks, support for downloading gapps, and advanced automatic install (TWRP and CWM supported but TWRP prefered)
Notes:
Superuser is in the toolbox.
Some display issues.
wifi hotspot (tether) is broke
4.2/3 issues carry over:
data (3g) might be unstable
no camcorder
no usb tether
Everything else should be fine.
Gapps:
available in updater ( source http://forum.xda-developers.com/showthread.php?t=2012857 )
STOP!! NOT FOR STOCK HBOOT
Q: What is blackrose? A: DON'T download if you don't know http://forum.xda-developers.com/showthread.php?t=1270589
About space constraints. Kitkat is the biggest android to date. To save space the following apps have been removed from the system img.
VideoEditor
Calendar (can download GoogleCalendar from Market)
Email/Exchange (use gmail or flash attached zip to add them back.)
QuickSearch (replaced by GoogleSearch in gapps anyway)
Only including newest sounds package (Ringtones/Notifications/Alarms)
No bootanimation
If demand is high enough i am open to adding Calendar back in. VideoEditor is out for good its just way too big. I have attached a flashable zip containing Email/Exchange if you need it, at 6mb they are also too big to put back in by default.
If you have other ideas of things to remove, feel free to comment. Obviously any evervolv apps are not going to be removed so don't even ask.
Download:
http://evervolv.com/devices/passion
Evervolv version 4.0.0
Squished package should fit (with gapps) on 250MB /system
Nightlies will return soon.
Screens:
Visit our website. http://evervolv.com/features/
Extra info:
Save space on /system with External Gapps: http://forum.xda-developers.com/showpost.php?p=28574807&postcount=3
Info on builtin Apps2sd: http://forum.xda-developers.com/showpost.php?p=21222591&postcount=1374
Desk/Car dock BT pairing: http://forum.xda-developers.com/showpost.php?p=48392056&postcount=181
Holy crap man! This is amazing. Great Work!
WOW.... That is just amazing... I was thinking about that this morning... Haha! Well Done. Thanks very much. Will have a try now.
Does not appear to be working with ART (I get a bootloop) This is on a 250/10 system partition, do I need larger for ART? This is both with and without gapps.
Still, awesome work!
parkedraccoon said:
Does not appear to be working with ART (I get a bootloop) This is on a 250/10 system partition, do I need larger for ART? This is both with and without gapps.
Still, awesome work!
Click to expand...
Click to collapse
I believe ART only works with odexd (user) builds
EDIT: I tried a user build. ART is broken on that as well.
SUCCEEDED...
This deserves to be on the XDA portal. C'mon guys vote for it!
texasice said:
I believe ART only works with odexd (user) builds
EDIT: I tried a user build. ART is broken on that as well.
Click to expand...
Click to collapse
How much extra space does the rom take odexed?
parkedraccoon said:
How much extra space does the rom take odexed?
Click to expand...
Click to collapse
272MB odexed
Just flashed the ev_passion-4.0.0p1-perdo-squished.zip and can't believe how smooth it is. Very good job!
One major problem I find is that I cannot screen capture using ddms and there's is no "preview" on "recent" (long press home button). So I wonder if it is due to the display driver isn't quite fit to this ROM.
Here's logcat when I tried to take screenshot using ddms:
Code:
11-24 15:43:03.219: E/libgenlock(125): perform_lock_unlock_operation: GENLOCK_IOC_DREADLOCK failed (lockType0x1,err=Not a typewriter fd=80)
11-24 15:43:03.219: E/gralloc(125): gralloc_lock: genlock_lock_buffer (lockType=0x2) failed
11-24 15:43:03.219: W/GraphicBufferMapper(125): lock(...) failed -22 (Invalid argument)
11-24 15:43:05.751: D/dalvikvm(672): GC_FOR_ALLOC freed 483K, 57% free 3494K/7988K, paused 34ms, total 40ms
11-24 15:43:05.852: E/libgenlock(125): perform_lock_unlock_operation: GENLOCK_IOC_DREADLOCK failed (lockType0x1,err=Not a typewriter fd=80)
11-24 15:43:05.852: E/gralloc(125): gralloc_lock: genlock_lock_buffer (lockType=0x2) failed
11-24 15:43:05.852: W/GraphicBufferMapper(125): lock(...) failed -22 (Invalid argument)
This is a humongous job, many thanks Texasice, i was was hoping for a full working camera/camcorder app, do you think we have a chance?
Can I ask what is the best you can recommend including cache and data besides system at 250? ty
lolobabes said:
Can I ask what is the best you can recommend including cache and data besides system at 250? ty
Click to expand...
Click to collapse
I'm using 242/8 with Bank's core gapps. 6mb free space in system.
Thank you texasice, you are awesome :good:
this rom is soooo goood... many thanks texasice
Here we go
{
"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"
}
good news, youtube , google map just perfect
this rom is awosome
Kitty Kat
Man! This is absolutely amazing...totally!
~
Da Baron
Great stuff here! Looks like Google Maps is acting right as well.
For some reason my notification bar stopped working though, no notifications are coming through and I can't get it to show the settings panel. Also the home key doesn't seem to do anything.
Other than that, so far so good!
i play this rom about 12 hrs, this only no work is : hotspot(even in open), screen caption, camcorder.
others just perfect, this is the best rom ever.
the six bar signal change to 5 bar are work perfect
long press home key go to "recent app"
metheos said:
Great stuff here! Looks like Google Maps is acting right as well.
For some reason my notification bar stopped working though, no notifications are coming through and I can't get it to show the settings panel. Also the home key doesn't seem to do anything.
Other than that, so far so good!
Click to expand...
Click to collapse
I think the problems I was having were caused when I installed gapps and somehow the phone got partially stuck in the setup mode where those functions are disabled. I reformatted and tried again (making sure to install gapps before booting) and everything seems fine.

[4.2.2][MIUIv5 4.2.7] Photon 4G

// Photon 4G
// Android 4.2.2
// Current Version [ 4.2.7 ]
// All Languages
{
"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"
}
MIUI ROM 4.2.7 Full Changelog
[Lock screen, Status bar, and Notification shade]
New - Added the option to customize carrier name (Settings-Notifications-Additional settings-Edit service provider name)
Optimization - Improved pulldown notification shade and displayed some information in the status bar
[Weather]
Fix - Location issues of places outside China
[Security Center]
Fix - Display error of phone internal storage in Cleaner
Click to expand...
Click to collapse
MIUIv5 4.2.7 Download
2-xx-2014: Pending
Working:
- We'll see
MIUI General FAQ
Q: How do I root this?
A: Enable root in the perm manager, which can be found in the security folder.
Q: Why is G-Apps not listed for Download?
A: Too Bloaty, add a Google account and install the play store as an APK, I suggest using Aptoide to find it.
Q: 4G LTE isn't working
A: Load the Phone, dial *#*#4636#*#*, goto Phone information, Set preferred network type to LTE/CDMA auto (PRL).
Q: Help! Phone/SystemUI/Keyboard Isn't working/Is Force Closing!
A: Make sure to do a completely clean wipe, also I'm not sure how well this will work if flashed in CWM.
Q: The Browser looks terrible.
A: Settings -> Advanced -> User agent string -> MiOne (It Renders much better & more naturally!)
Q: My Filesystems won't mount/My PC can't see my device/My phone won't act as a MTP/USB Mounting isn't working!
A: Settings -> Developer Options -> Enable Development / USB Debugging (switch both to on)
Hi everyone, I'm Tquetski; mostly active on en.miui
give me a few days to get this all in order, source build takes many hours and I'm forking MIUI to the whole device tree so..
Question...you're saying building from source? You have access to MIUI source? How does one go about getting access to that?
Th3Bill said:
Question...you're saying building from source? You have access to MIUI source? How does one go about getting access to that?
Click to expand...
Click to collapse
I'm building CM from source then using PatchROM to apply it, you can find PatchROM at the MiCode Github.
I wrote a bit about PatchROM here:
http://en.miui.com/thread-6395-1-1.html
I've wrote about it a bit for folks curious. I've already completed Patch-related preps and intend to fork across all devices I built for using:
http://en.miui.com/thread-14246-1-1.html
Waiting
Sent from my Electrify using Tapatalk
Tquetski said:
I'm building CM from source then using PatchROM to apply it, you can find PatchROM at the MiCode Github.
I wrote a bit about PatchROM here:
http://en.miui.com/thread-6395-1-1.html
I've wrote about it a bit for folks curious. I've already completed Patch-related preps and intend to fork across all devices I built for using:
http://en.miui.com/thread-14246-1-1.html
Click to expand...
Click to collapse
Ok. That makes a bit more sense. I used to port miui for this device back in the miui.us days....that site's been pretty dead since May.
If u need source, I have my git pretty up to date on cm10.1
Sent from my HTCONE using Tapatalk
No need, I have my own source with edits to accommodate this ROM; It'll be done tomorrow.
It's not that I'm lazy just swamped, I have over 20 devices and growing under my belt :S
I can test anything if needed
Sent from my Nexus 7 using XDA Premium 4 mobile app
Completeness
How complete is this rom? Is the graphics still borked? Are there any other problems/issues with the rom, like many other JB roms? I want to use JB as a daily but I need working graphics. Also your screenshot says "Verizon Wireless", is that a screenshot from another phone or from the photon? I would like to find out how to get Verizon working on my phone and working 3G.
It's from my phone but the project shares identical code so it's relevant; anyway I have to mess around with my base to fix the tearing issue present so this is why other devices have gotten this but this one hasn't, I don't want to have to redo work yet
MB853 electrify
Tquetski said:
It's from my phone but the project shares identical code so it's relevant; anyway I have to mess around with my base to fix the tearing issue present so this is why other devices have gotten this but this one hasn't, I don't want to have to redo work yet
Click to expand...
Click to collapse
can use at MB853 electrify ??
Tquetski said:
No need, I have my own source with edits to accommodate this ROM; It'll be done tomorrow.
It's not that I'm lazy just swamped, I have over 20 devices and growing under my belt :S
Click to expand...
Click to collapse
Waiting..
Sent from my sunfire using xda premium
overscan HDMI mirroring
Does HDMI mirroring works well?
Does settings menu has 'HDMI' item with Overscan option as 2.3.4 has?
It will be very good if adding patch for JB add overscan function at this ROM is possible.
Tquetski said:
No need, I have my own source with edits to accommodate this ROM; It'll be done tomorrow.
It's not that I'm lazy just swamped, I have over 20 devices and growing under my belt :S
Click to expand...
Click to collapse
Hi, good job, I can test anything if needed to day adn tomorrow and after that.
This will get updated at some point, I'm also working on 4.4 for you guys too so be chill :s
This is great news, I can't wait.:laugh:
MIUIv5 4.2.7 for Photon 4G
Good news ...:laugh:
Thread closed until OP is able to release. PM me when you want me to open the thread.

[BL LOCKED] [818P] Pyrophag v1.2 [v20h] [BUTTERY SMOOTH] [ICY COOL]

{
"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"
}
Pyrophag is a customized system image for the 818P based off of completely stock v20h factory image.
There is absolutely no change in appearance, except for LG's stock font Foxrain, which has been replaced with Roboto Condensed (a favorite font of mine); so the ROM is suitable for those who are interested in stuff "under the hood" only. It's basically a boosted stock ROM.
Buttery smooth, incredibly optimized and stable performance all over the ROM;
Significantly reduced amount of heat produced during heavy tasks;
Dual Window for all apps;
60fps FHD video recording;
Slow Motion video recording;
100% photo quality;
Completely stock looks;
None
***YOU WILL NEED TO HAVE MARSHMALLOW (preferably v20h) INSTALLED IN ADVANCE***
***THE PROCEDURE IS SAFE AND NO ISSUE SHOULD HAPPEN. NEVERTHELESS, I DO NOT ACCEPT RESPONSIBILITY FOR POTENTIAL BOOTLOOPS/DATA LOSSES OR ANYTHING DURING OR AFTER THE PROCESS***
Backup everything to SD Card through LG Backup;
Extracted the downloaded file (the ROM) and copy s.img into the internal memory of your device;
Turn off the phone, wait for the blinking notification light to go off, press and hold volume up button and connect the phone to your PC simulataneously (do make sure in advance that you have all required drivers installed) to enter Download Mode;
Now open LGUP, choose a v20h KDZ and press Start Flashing;
Keep an eye on the percentage and the other on the phone. As soon as the percentage reaches 9, look at the phone, and the moment a green port number (e.g. COM6) appears on the screen, disconnect the phone immediately (or everything will be erased on your internal memory, so you'll have to copy the system image again) and close LGUP;
Open the folder you have assumingly extracted LG_Root files in, hold down the shift button, right click on the window and choose Open Command Window Here;
Type "Send_Command.exe \\.\COMX" without the quotation marks (X represents the port number shown on your phone);
If you have all drivers installed, you'll be able to commmunicate with the driver now. Type "id" and you should get a response. If so, then it means everything is all right and you're good to go;
Carefully input the following command and press Enter. It will go to a new line and an underscore will start blinking. After a couple of minutes, a hashtag sign will appear. Type "LEAVE", plug out the device, pull the battery and re-start the phone.
Code:
dd if=/data/media/0/s.img bs=8192 seek=55296 count=529920 of=/dev/block/mmcblk0
Enjoy!
Attached
DPI 640 (normal)
DPI 540
@jskasia, @warBeard_actual, @Pfeffernuss
Status: Stable
Android Version: 6.0
Linux Kernel Version: 3.10.84
Great work, many thanks. :good:
Another development thread for H818p! Thanks mate! Gonna try this one! It's great if the ROM will have a 540 dpi variant. :good:
MitoTakatori said:
Another development thread for H818p! Thanks mate! Gonna try this one! It's great if the ROM will have a 540 dpi variant. :good:
Click to expand...
Click to collapse
You can do it yourself see this => http://android.wonderhowto.com/how-...creen-resolution-without-root-access-0160439/
jskasia said:
You can do it yourself see this => http://android.wonderhowto.com/how-...creen-resolution-without-root-access-0160439/
Click to expand...
Click to collapse
Thanks! Got to try this. Won't this affect anything in the rom?
I guess not.
jskasia said:
I guess not.
Click to expand...
Click to collapse
Nice. Thanks. Does Genisys theme still have issues with V20H?
MitoTakatori said:
Nice. Thanks. Does Genisys theme still have issues with V20H?
Click to expand...
Click to collapse
Yes, it is.
MitoTakatori said:
Thanks! Got to try this. Won't this affect anything in the rom?
Click to expand...
Click to collapse
It will. Icons will be messed up. The menu icon will be enlarged by, say, 20, and lockscreen shortcuts will disappear. If you really want a 540 dpi version, I could make one.
I apologize to those who had wanted to download the ROM but failed. I hadn't made the link public. It's fine now.
jskasia said:
Yes, it is.
Click to expand...
Click to collapse
I see. Hope it'll be solved soon. Thanks mate.
---------- Post added at 18:15 ---------- Previous post was at 18:13 ----------
ashkan-khatar said:
It will. Icons will be messed up. The menu icon will be enlarged by, say, 20, and lockscreen shortcuts will disappear. If you really want a 540 dpi version, I could make one.
Click to expand...
Click to collapse
Hi. I see. If it's okay, I do want a 540 or if 530 dpi is possible, then I do want that one. Thanks in advance mate! :good:
ashkan-khatar said:
It will. Icons will be messed up. The menu icon will be enlarged by, say, 20, and lockscreen shortcuts will disappear. If you really want a 540 dpi version, I could make one.
Click to expand...
Click to collapse
I want... Hehehe...
Thanks before for make lg g4 alive
Sent from my LG-H818 using XDA-Developers mobile app
Screenshots can be?
Can u make H815 version?
I'll wait for the 540 or 530 dpi variant mate.
You can use osfmount to modify build.pro or use minimal ADB for any dpi you want, it's very simple and can find by google
BananowyPotwor said:
Can u make H815 version?
Click to expand...
Click to collapse
Yes, please, H815 version.
phuonglev said:
You can use osfmount to modify build.pro or use minimal ADB for any dpi you want, it's very simple and can find by google
Click to expand...
Click to collapse
Any problem with playstore bro if i do this?
Sent from my LG-H818 using XDA-Developers mobile app
phuonglev said:
You can use osfmount to modify build.pro or use minimal ADB for any dpi you want, it's very simple and can find by google
Click to expand...
Click to collapse
Changing DPI through adb has consequences, you shouldn't do that. It'll mess up with icons.
Update:
DPI 540 version added-
Screenshots added (though, no visual difference, really, comparing to stock; I've only tried to show the slight differences like Dual Window)- @sandrox96 @MitoTakatori

Categories

Resources