Related
You can create either minimalistic
text-based clock widget or full blown
(weather, clock, battery)
widget by yourself directly in your
Android phone. Any layout is possible.
Except current time and
date you can add battery info,
weather icon, weather forecast or
memory stats.
If you have a Taskmanager/Task
Killer running please exclude/
uninstall.
Supported features:
- you can make your own layou of all
elements
- you can adjusts many options for
screen objects
Supported widget sizes:
- 1×1, 1×2, 2×1, 2×2, 3×1,3×2, 4×1, 4×2
Clock
- 12/24 hours Date & Time
- Custom date format
Widget Editor Features:
- Text size
- Text color
- Adjustable color of the text
- Adjustable transparency
- Background color
- Font size
Widget features:
- Single Tap to start App
- Disable Tap on Click
Web Gallery
- download designs from the web
There is also pro version of this
widget that contains following
features:
Battery
- Battery Voltage
- Battery Temperature
- Remaining Battery Capacity
- Various battery indicators – circle,
pie chart (coming soon)
Weather
- Weather forecast autorefresh
- Beautiful Weather Icon
- Weather Forecast
- Current Temperature
- Minimum Temperature
Download here
http://rapidgator.net/file/31414806/
Also visit my blog galaxyygamers.wordpress.com
Sent from my GT-S5360 using xda premium
upload it in 4shared. downlnad problem
Sent from my GT-S5360 using xda premium
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
This is not the complete halo. This is only the popup window
How to Launch in Floating Mode?
The module includes these SystemUI mods for your convenience:
1) Long Press Notifications: Adds a "Open in Halo" option when long pressing a notification
2) Single Click Notifications: Open your notifications directly in halo mode by single clicking
3) StatusBar TaskBar: Pin Apps into the notification panel for "quick launching"
(They are made for AOSP ROMs, so I cannot guarantee it will work for manufacture ROMs or custom ROMs.)
You can use apps that are created to launch apps in halo mode. Examples include Portal, Floatifications, Bubble Launcher, MultiWindowSidebar
Can't get more than one window to open at the same time (side by side)?
Are you on Android 4.4.0 / Android 4.4.1 / Android 4.4.2 / Any OmniROM versions ?
You need this patch to fix the bug. The module will fail to work properly without it
(Why? Read the 4th Post under "ROMs with Issues")
Source code
This module is open-source
The sources can be found here
Developers, please help in the development by sending pull requests or creating an issue with tips, bug reports.
Translators, feel free to translate and send pull requests too.
(Please do not send compiled APKs with translations. Send strings.xml please (and tell me the language it is in))
For Developers
Launching Apps in Floating Mode
(In both Paranoid Android's Halo & in this module) Apps can be launched in floating mode using
Code:
intent.setFlag(0x00002000);
It is known as FLAG_FLOATING_WINDOW in Paranoid Android sources.
Note also that it is the same integer used in OmniROM's MultiWindow.
As of v2.28
You can launch apps directly snapped to the top/bottom/left/right of the screen with these codes
Code:
public final static int [COLOR="blue"]SIDE_LEFT[/COLOR] = [COLOR="SeaGreen"]1[/COLOR];
public final static int [COLOR="blue"]SIDE_TOP[/COLOR] =[COLOR="SeaGreen"]2[/COLOR];
public final static int [COLOR="blue"]SIDE_RIGHT[/COLOR] = [COLOR="SeaGreen"]3[/COLOR];
public final static int [COLOR="Blue"]SIDE_BOTTOM[/COLOR] = [COLOR="SeaGreen"]4[/COLOR];
intent.setFlag(0x00002000);
intent.putExtra(“com.zst.xposed.halo.floatingwindow.EXTRA_SNAP_SIDE", [COLOR="DarkRed"]*side*[/COLOR] );
where *side* is the integer of the respective side as specified above. It is derived from AeroSnap.java
Click to expand...
Click to collapse
Thanks (in order of importance)
rovo89 for Xposed Framework
Tungstwenty for Xposed codes samples
ParanoidAndroid Team for HALO codes
gflam for Movable and Resizable codes.
MohammadAG for Tinted StatusBar codes
XpLoDWilD for Multi-Window codes
Colt's Blog for this article
Microsoft for Aero Snap idea.
Samsung for Multi-Window idea.
XxnewflarexX my real-life friend for inspiration
All who posted in this thread and giving me ideas
(If I have missed out any body, feel free to contact me and I'll add you in)
XDA:DevDB Information
XHaloFloatingWindow, Xposed for the Android General
Contributors
zst123, zst123
Xposed Package Name:
Version Information
Status: Stable
Current Stable Version: v2.40
Stable Release Date: 2014-07-21
Created 2013-10-09
Last Updated 2014-07-23
Download from Xposed Module Repository
Backup Download from Google Drive
(updated later/slower) Requirements
1) Have Xposed Framework Installed
2) Ability to read the 4th post (especially the "ROMs with Issues" section). <-- Seriously, I'm not joking
Setup Instructions
1) Download and Install XHaloFloatingWindow
3) Enable XHaloFloatingWindow in Xposed Installer
4) Restart device
5) If you have a ROM with Halo already bundled in, disable Halo
6) Test the module by going to "Testing Area" and open Settings.
Usage Instructions
You will need a "helper" app to launch apps in floating mode.
I recommend MultiWindowSidebar for a Samsung Multiwindow Experience
There are more ways to use this module:
• Floating Notifications/Floatifications Guide by -Cupper-
• Another Guide by Exedion
Can't get more than one window to open at the same time (side by side)?
Are you on Android 4.4.0 / Android 4.4.1 / Android 4.4.2 / Any OmniROM versions ?
You need this patch to fix the bug. The module will fail to work properly without it
(Why? Read the 4th Post under "ROMs with Issues")
=
Want Samsung-like MultiWindow?
Follow these settings:
• Enable Movable & Resizable
• Go to Moving Settings
• Disable Allow ActionBar To Move
• Go to Resizing Settings
• Enable Snap-in Windows
• Enable Split Bar
• Install MultiWindowSidebar
• Change Drag Launch Mode inside MultiWindowSidebar to XHaloFloatingWindow (Portrait)Usage:
• Drag 2 apps from the MultiWindowSidebar to the top and bottom of the screen
• A Samsung-like Split Bar will appear.
• Enjoy!
Click to expand...
Click to collapse
Latest Changelog:
2.40 Beta - 21 July 2014 - 1935 GMT+8
• Replace Internal APIs references with Reflection:
--> Completely replaced usage of internal API's with reflection!
--> Update misc project files to remove internal API references
--> Cleanup deprecated codes
• Delay retrieval of ActivityManager, WindowManager (may reduce SystemUI FCs)
• Migrate basic window management code to an IPC service
• Initialize Window Resizing Outline later into the system boot
• Fix FC when resizing windows that are started snapped
• Fix bug on Kitkat where Recent Apps screen stays open when using "open in halo"
• Made Statusbar Taskbar's priority from high to max
• Cleanup Snap-in Window code
• Don't allow module to be moved to the SD Card
• Tweak first-use text (not shown in the app yet)
• Update Chinese (China+Taiwan) Translation by Pocket Fan
Older Changelog:
v2.38 - 09 June 2014 - 0925 GMT+8
• Add new gravity chooser
• Add base code for First Use Screen (not ready yet)
• Change Main Preference to a sliding navigation
• Change ActionBar to dark + Replace action bar icons with white ones
• Made popup alpha and popup dim preference live update
• Code Refactoring:
--> Optimized Movable Window hooks
--> Fix mistake in blacklist and whitelist
--> Revert "Simplify hook for the Testing Area."
2.36 Beta - 06 June 2014 - 2230 GMT+8
• Fix Xposed 2.6 issues on ICS
• Fix IllegalArgumentException thrown by Tinted Titlebar
• Fix bug where keyboard sometimes remain open when closing a window with the titlebar
Code Refactoring:
--> Simplify hook for the Testing Area.
--> Rearrange main hook load codes
--> Major Optimization to original Halo codes (Should speed things up)
2.34 Beta - 29 May 2014 - 2150 GMT+8
• Fix Compatibility with Xposed 2.6
• Fix FC of apps list on Samsung devices
• Fix rounding off error for preferences using percentage
• Fix bug when multiple activities are open and the titlebar is hidden (by maximizing), the previous activity continues showing it.
• Fix possible NPE in ActionBarColorHook
• Fix MultiWindow popup buttons being always white
• Fix IllegalArgumentException log spam by Tinted TitleBar
• Fix MultiWindow outline not being shown above the nav bar using Immerse Me
• Add option to use old icons for titlebar
• Add Option to treat apps as single windows. (pressing close on the titlebar will close the entire app)
• Move out Titlebar Snap Window options to individual items
• Add Portuguese Translation by DouglasGomes123
• Cleanup code
2.32 Beta - 14 May 2014 - 2320 GMT+8
• Change OverlayView to inflate using the module's context
• Change the SplitBar to use DPI in build.prop instead of per app DPI
• Add Snapped Apps List. (Access from the SplitBar buttons)
• Add New Titlebar icons (by @BachMinuetInG)
• Add "Galaxy Note 3"-like multi window dragger menu
• Add Colorable White Touch Drawables for Split Bar (thanks @BachMinuetInG)
• Fix Activity starting out unsnapped if it was previously resized
• Fix resizing outline shows but doesn't disappear when using the corner to close the window
• Fix Force Close when resizing window with AeroSnap disabled
• Fix Windows sometimes syncing when it is not in halo mode
• (Partial) Fix for SplitBar showing on top MultiWindowSidebar
• Revert "(Attempted) Fix for TitleBar going under status bar for TouchWiz devices" (since it didn't work)
• Revert "(Attempted) Fix for closing apps on shows an animation black screen glitch" (since it didn't work)
• Update German Translation (thanks @Schokonuss)
• Update Chinese (China/Taiwan) Translations (Thanks @Pocket Fan)
2.30 Beta - 26 April 2014 - 1200 GMT+8
• Add New Design for Split Bar
---- Make the bar look like Samsung Galaxy Note 3's Multiwindow
• Add Split Bar Color Option
• Add option to hide StatusBar Taskbar icon
• Add option to hide Titlebar when snapped
• Add option to hide Titlebar when maximized
• Add Window Position Syncing for Dialogs
• Fix Split Bar's Focused App Indicator not switching after using "Swap Windows"
• Fix Split Bar disappearing when pressing back
• Fix Overlay View being (sometimes) added more than once.
• Fix "Drag To Move" Bar not dragging when "Allow ActionBar to Move" is disabled
• Fix some apps not starting snapped directly when it is set (seen when using MultiWindowSidebar)
• Fix resizing while snapped doesn't restore previous size
• (Attempted) Fix for Overlay View not taking up entire window <-- Tell me if this works
• (Attempted) Fix for TitleBar going under status bar for TouchWiz devices <-- Tell me if this works
• (Attempted) Fix for closing apps on shows an animation black screen glitch <-- Tell me if this works
• Code Cleanups:
---- Catch a NPE in ActionBarColorHook
---- Memory Optimizations to Overlay View
---- Remove Titlebar from overlay view if not in use.
---- Code Cleanup to Split Bar
---- Optimize checking of halo flag & movable preferences
• Update Russian Translations (Thanks @migel13)
• Update Chinese (China/Taiwan) Translations (Thanks @Pocket Fan)
• Update German Translation (thanks @Schokonuss)
2.28 Beta - 14 April 2014 - 2145 GMT+8
• Add method to start apps directly snapped to sides (See OP for more details, "How to Launch in Floating Mode; For Developers")
• Add "Snap Window" Options to TitleBar's 3-dot menu
• Add Snap-in Window (2 finger) Swiping to next app (Not enabled by default because it is a little buggy)
• Move Movable & Resizable and Testing Settings into new actionbar drop-downs
• Fix some App Chooser crashes
• Fix Window Overlay Views not showing for some apps.
• Fix Snap-in Windows snapping to the wrong side after disabling "Retain Window Position on Start"
• Fix Split Bar Options auto showing when moving bar.
• Fix bug in split bar mode where tapping titlebar causes app to re-snap itself
• Fix Split Bar Swap Windows not swapping apps properly when one app has an even number of activities open
• Fix some bugs in Single/Long Click Notification Options
• Fix duplicated split bars sometimes occurring
• Fix App Choosers not showing apps with same name but different package
• Update Chinese (China/Taiwan) Translations (Thanks @Pocket Fan)
• Update German Translation (thanks @Schokonuss)
• Small optimization to code: Make objects (inherited from the activity) to constants
2.26 Beta - 21 March 2014 - 1100 GMT+8
• Add Focused App Indicator for Split Bar (Arrow points to the focused app, like in Samsung's multiwindow)
• Add Swap Windows, Reset Positions Option to Split Bar
• Add Snap Windows Option in Drag To Move Bar
• Fix Split Bar not working properly in landscape.
• Fix Split Bar not taking up entire screen width
• Fix Mistake in Tinted Title Bar (that caused it to stop working)
• Fix StatusbarTaskbar reloading running apps even when screen is off
• Fix Split Bar still visible after minimizing apps using the Home button
• Fix for apps always showing Drag To Move bar bug (eg. Gmail) :
--- Add alternative method to find views with tag
--- Allow TitleBar OnClickListener to use tags to find view
--- Fix for Transparency Dialog crashing (in apps with always showing Drag To Move bar bug)
• Code Cleanup + Optimization :
--- Move Movable & Resizable overlay to another view class
--- Move Transparency Dialog into a new XML file
--- Optimize Tinted TitleBar Codes
--- Catch Exception in MultiWindowDragger
--- Optimize retrieving overlay view in onResume
--- Optimize some codes to reduce memory usage
• Add Chinese Traditional Translations (thanks to Pocket Fan)
• Update Chinese Simplified Translations (thanks to Pocket Fan)
• Update German Translation (thanks to @Schokonuss)
2.24 Beta - 17 March 2014 - 2330 GMT+8
• Add Snap-in Split Bar
(A feature similar to Samsung's Multiwindow split bar but integrated to snap-in windows in this module)
• Add Statusbar Taskbar
(Thanks @pijulius for the original idea and codes. Thanks @DHM47 for some codes.)
• Cleanup PackageNameAdapter codes & Optimize AppAdapter
[Should fix Blacklist/Whitelist Force Closing]
• Optimize (Whitelist, Blacklist) App Loading
• Revert "Fix position not saved after starting app." from v2.22
[Fixes another bug for apps that use a splash screen (and did not get
touched by the user) and open the main screen without user interaction]
• Fix VPN problems when Tinted Titlebar is enabled
• Fix Snap-in Windows snapping before the blue outline is shown
• Change Snap-in Window Default Value to true
(so new users won't need to turn it on manually)
• Add Chinese Simplified Translations (by Pocket Fan)
• Add German Translation (by Schokonuss)
2.22 Beta - 28 February 2014 - 1630 GMT+8
• Add Tint Window Corners (set enabled by default)
• Add Italian Translation (thanks to Raffaa)
• Add Russian Translations (thanks to migel13)
• Fix NPE in changeTitleBarColor
• Fix Titlebar not being tinted instantly when app starts
• Fix app position not saved after starting app. (Constant Window Position)
• Fix "Constant Window Position" not working fully on corner triangle/quadrant drag
• Fix for Kitkat (All apps opening in halo with "Force New Windows in Halo" enabled) Bug
• Fix "Restore App" Notification not removed when restoring without using notifications
• Reduce Preference Retrieving for Constant Window/Retain Start Position
• Changed default value of these to true: (so new users won't be so confused)
(1) Disable Auto Close, (2) TitleBar Enabled, (3) Border Enabled, (4) Border Color
• Fixed Dependency of this:
(1) Quadrant Dependency
2.20 Beta - 26 January 2014 - 2330 GMT+8
• Add Tinted TitleBar Option (based on Tinted StatusBar by @MohammadAG)
• Add Option to Force Apps in Recents
• Add another Whitelist / Blacklist Option
[Blacklist all apps & only allow whitelisted apps to be opened in halo]
• Add Customizable TitleBar Separator (Thanks to @pijulius)
• Add option to toggle if app shows a notification in statusbar when you minimize it (Thanks to @pijulius)
[the "Restore Application, This floating app has been minimized" notification]
• Change "Hide Entire App" to "Minimize App" for Corner Actions.
[since we already have the option to enable/disable "Minimize to Statusbar"]
• Fix unsnapping windows sometimes not going back to original size (Snap-in Windows)
• Fix tapping on buttons without moving window cause it to be unsnapped (Snap-in Windows)
• Fix Maximizing Window when snapped causes a FC (Snap-in Windows)
• Fix titlebar not able to move window when "Allow ActionBar To Move" is disabled
• Fix top of window border hidden under titlebar
2.18 Beta - 12 January 2014 - 2300 GMT+8
• Add Whitelist / Blacklist Options
1) Always open apps in halo except blacklisted apps
2) Never open apps in halo except whitelisted apps
• Removed Previous TW fixes because it had no effect
• (Another Possible) Fix for TouchWiz Devices closing window on touch outside with movable windows.
• Fix Outline Resizing not showing correct size on Android 4.3+
• Fix 1 pixel gap in snap-in windows
• Fix Bug where Snap-in Windows is enabled on triangle/quadrant regardless of settings
• Optimize Minimizing App with notification
• Improve Blacklisting Code (if whitelist worked for you, then blacklist bug should be fixed.)
• Small Cleanups in code (Remove duplicated code, text)
2.16 Beta - 01 January 2014 - 1320 GMT+8
• Add Snap-in Windows (similar to Aero Snap) >> Video
• Add Whitelisting
• Add Outline Resizing (set to default, you can switch back to live resizing in the settings.)
• Remove checking if parent activity is halo if itself is already halo (speeds up launching)
• Fix Bottom-left resizer moving Window to the right on first touch and when dragging out of the screen
• Fix Window not restoring old size after maximizing
• Fix crash with some apps that launch a floating window. (especially on kitkat)
• Partially Fix gmail bug. (Titlebar may/may not show properly still.)
• Fix QuickSettings Mods for Non-Cyanogenmod-Based ROMs
• (possible) Fix for touchwiz touch outside bug
2.14 Beta - 28 December 2013 - 0020 GMT+8
• Fix Bug with Quick Settings using if Long Press option's preference box.
• Fix Bug with triangle not resizing properly when window is maximized
• Fix Bug where Drag To Move bar will be overlapped by the statusbar when at the very top
• Optimize + Fix Bottom-Left resizing by disabling animation inserted by Android
• Optimize Bottom-Right Resizing
• Optimize App Focus Changing
• Add Auto-Resize and Auto Re-position on Rotate. (very buggy)
(Some apps refuse to take note of the rotation change)
• Add TitleBar for Dragging with Close, Maximize, Minimize.
Merry Christmas!
2.12 Beta - 25 December 2013 - 0240 GMT+8
• Add Maximize App Option for Quadrant/Triangle Single/Long Press
• Add ability to drag using triangle/quadrant to move
• Add ability to disable dragging the actionbar to move
• Add Option in Drag To Move Bar to minimize app with notification. (slightly experimental)
• Fix bug where toggling movable windows only takes effect after restarting twice.
• Fix Bug where 1st Resizing moves app into the top-left / top-right corners
2.10 Beta - 22 December 2013 - 2115 GMT+8
• Attempt to prevent apps from noticing that another app has opened.
(Maybe helps prevent from acting weird when opening another app)
• Add Corner Action to Show Drag To Move Bar without hiding corners.
• Add Recent Apps Screen "Open in Halo" option
• Add Testing Screen to test opening apps and check if module loaded successfully
• Fix Transparency Slider Initial Text showing wrong value (100% all the time)
• Fix Single/Long Press Notification Exception when notification is updated (on ICS)
• Fix Bug where blacklisting system ui makes app focus changing fail to work
• Fix Bug where done button stops working after opening & closing new activity
• Fix disabling App Pausing on ICS
• (Untested) Possible Fix disabling App Pausing on TouchWiz.
• (Untested) Possible Fix for Bug where touching outside will close window even with resizing enabled
2.08 Beta - 19 December 2013 - 1140 GMT+8
• Backported Long/Single Press Notification Option to ICS
• Blacklist Apps to never open in floating mode.
(Really never, including "force new windows in halo")
• Option to Prevent Moving Home to the front (when using recent apps screen)
• Corner Actions for Transparency Slider and Hide Entire App
• Fix bug where closing an activity via the corner will break closing for other activity of same app
• Optimized SystemUI Restarting Method
• Changed App Description and some Settings Description
2.06 Beta - 10 December 2013 - 2240 GMT+8
• Fix Corner Actions "Close App" on ICS
• Use HW acceleration for app that support it to have smoother resizing.
• Add resizing for Quadrant.
• Allow Triangle/Quadrant to be hidden + to disable resizing.
• Add Customizable Border around movable window
• Add Single Click Action for Triangle
• Retain Window Position on Start
(When opening a new window of the same app, place them in the same position and size of the original.)
• Constant Window Position
(When resizing or moving a window, windows of the same app behind it will also be updated.)
2.04 Beta - 02 December 2013 - 2350 GMT+8
• Changed apps opening over halo into a preference.
• Fix Triangle Showing as Squares for ICS
• Added Choosable Action for Triangle Long Press
• Added Bottom Right Quadrant with Single/Long Press Option
2.02 Beta - 29 November 2013 - 0900 GMT+8
• Added Restart SystemUI Option (Requires Superuser permission)
• Fix Apps Opening in Fullscreen above Halo Window
• Optimized (quite a few) Reflections in App Launch
• Possible Fix for some apps still not showing resize triangle
• Option for Quick Settings to be open in floating mode.
(Also works with Cyanogenmod's Quick Access Ribbon)
2.00 Beta - 27 November 2013 - 0010 GMT+8
• KitKat Compatibility! ~90% Compatible.
• Major Code Optimization for faster app starting
• Re-did UI to an actual preference screen
• Fix Transparency Dialog Percentage showing in black for some apps
• Fix Triangle not showing on some apps
• Fix Triangle not touchable on some apps (eg. Google Play)
• Customizable Triangle Color, Transparency, Size
• Option to have Single Click Notifications to open in halo. Long press to "Open Normally"
• Option to Disable Auto Close on Screen Off or Home Press
• Option to Allow App to be shown in Recents
Changelogs for version 1.00 to version 1.24 are here
(Version No. are only even numbers, odd numbers are for testing between beta releases)
FAQ
Where's the HALO bubble like in ParanoidAndroid?
This is only the popup window. No bubble is included.See Instructions
Compatibility
Any ROM (ICS onwards)
There are some exceptions. Please see the ROMs with Issues below
ROMs with issues
All Kitkat ROMs
Some Kitkat ROMs prevent multiple windows from opening on the homescreen. This is ROM bug is present if your ROM does not contain the patch that was created on Jan 9, 2014.
Some ROMs (especially OmniROM hasn't included this fix until now Android 4.4.4)
Fix: Use this Xposed patch to fix this issue
ROMs with OmniROM Multi-window
OmniROM uses the same flag 0x00002000 for multiwindow. Therefore, the 2 will conflict.
No fix yet.
(it is planned to have an option to use a different flag in future versions)
ROMs with ParanoidAndroid HALO
ParanoidAndroid uses the same flag 0x00002000 for HALO. Therefore, both the ROM's codes and this module's code will run at the same time. This might cause some lag and slow-downs, but should not impact the functionality.
Disable Halo in the settings if possible
ROMs with "Floating window with multitasking"
The code is mostly based on those in XHaloFloatingWindow. Therefore, both the ROM's codes and this module's code will run at the same time. The native code will "win" and this module will appear non-functional.
No fix yet
(it is planned to have an option to use a different flag in future versions)
Samsung TouchWiz ROMs
Pauses app behind regardless of setting & movable and resizable windows close on touch outside
There are problems with Samsung Stock ROMs due to MultiWindow Codes conflicting.
Possible Workarounds:
1)Disabling Multiwindow
(1) Manually Disable Samsung Multiwindow
(2) Flashable ZIPs to Disable Samsung Multiwindow
2) Change the transparency to 99%
http://forum.xda-developers.com/xpo...floatingwindow-beta2-16-t2419287/post53259392
If there are any issues and you would like to help in the development, please report in this thread.
Thanks for reading through all the posts!
Reserved
reservedd
I cannot find the halo bubble op.I already installed xposed framework and HALO ))).MY devices is Xperia j.android 4.1.2. Stock
your modded HALO is prase error in my xperia.so i use my modded HALo for 4.1.2 backported version.
Sent from my ST26i using xda premium
hacker0377 said:
I cannot find the halo bubble op.I already installed xposed framework and HALO ))).MY devices is Xperia j.android 4.1.2. Stock
Sent from my ST26i using xda premium
Click to expand...
Click to collapse
This is not the HALO bubble. This is the HALO Floating Window only. It is the one seen in the screen shots where apps open in a downnsized mode above your current app.
For HALO bubble, use Floating Notification which is compatible with this mod. You can then use "Launch apps in Halo window (Supported ROM's only)" in Settings of the Floating Notification app with this mod.
As for my HALO))) not working, I tried downloading it again and installing on my phone. It works for me. Maybe try redownloading and give more info on the error?
here are some screenshots of my devices
zst123 said:
This is not the HALO bubble. This is the HALO Floating Window only. It is the one seen in the screen shots where apps open in a downnsized mode above your current app.
For HALO bubble, use Floating Notification which is compatible with this mod. You can then use "Launch apps in Halo window (Supported ROM's only)" in Settings of the Floating Notification app with this mod.
As for my HALO))) not working, I tried downloading it again and installing on my phone. It works for me. Maybe try redownloading and give more info on the error?
Click to expand...
Click to collapse
i download three time your HALO )) apk and same prase error on my xperia 4.1.2.i will try later on my cm10.or Can you mod the HALO))) apk in my attachment on the above comment
EDITED
i look into the Android Mainfest.xml of your HALO))) apk and your min sdk version is 17 and target sdk version is 18,since sdk version of 4.1.2 is 16.i think your Modded HALO))) apk will not work in 4.1.2 device.i think.
hacker0377 said:
i download three time your HALO )) apk and same prase error on my xperia 4.1.2.i will try later on my cm10.or Can you mod the HALO))) apk in my attachment on the above comment
EDITED
i look into the Android Mainfest.xml of your HALO))) apk and your min sdk version is 17 and target sdk version is 18,since sdk version of 4.1.2 is 16.i think your Modded HALO))) apk will not work in 4.1.2 device.i think.
Click to expand...
Click to collapse
oh so that's where the problem is. can you confirm that pressing the menu button and clicking on open Xposed installer from XHaloFloatingWindow opens it in floating mode? if it does, the mod is working and Floating Notifications from Play Store will be able to make use of it. mean while, I will re-edit the APK for my modded HALO)))
I confirm. Parse error upon installation in 4.1.2
Sent from my Micromax A92 using Tapatalk 2
zst123 said:
oh so that's where the problem is. can you confirm that pressing the menu button and clicking on open Xposed installer from XHaloFloatingWindow opens it in floating mode? if it does, the mod is working and Floating Notifications from Play Store will be able to make use of it. mean while, I will re-edit the APK for my modded HALO)))
Click to expand...
Click to collapse
yes it open in floating mode when i open xposed instaler from menu of your XHFW.but it can only open xposed installer.not for others
Can someone link me to the ported halo bubble..?
Sent from Navi
Not exactly sure why, but every application works except for Facebook lol
Sent from my HTC6435LVW using XDA Premium 4 mobile app
Mostly working on my HTC One with TrickDroid 2.0 (Google Edition).
The popup shows up, but it does not dim the background.
hacker0377 said:
yes it open in floating mode when i open xposed instaler from menu of your XHFW.but it can only open xposed installer.not for others
Click to expand...
Click to collapse
Try this: https://docs.google.com/file/d/0B7CBSsJQIV5-VGJyNVpSLXg2UHc/edit
michaelg117 said:
Can someone link me to the ported halo bubble..?
Sent from Navi
Click to expand...
Click to collapse
https://play.google.com/store/apps/details?id=robj.floating.notifications&hl=en
UchihaKite said:
Not exactly sure why, but every application works except for Facebook lol
Sent from my HTC6435LVW using XDA Premium 4 mobile app
Click to expand...
Click to collapse
Yea. Still looking into facebook and some other large apps.
Therealkris said:
Mostly working on my HTC One with TrickDroid 2.0 (Google Edition).
The popup shows up, but it does not dim the background.
Click to expand...
Click to collapse
It does not dim? It can be changed from settings if it does not dim.
or it Blackens to opaque? That means your ROM has a changed "fullscreen" field in "com.android.server.am.ActivityRecord". I'll look into the source codes and update my mod if so.
I can confirm this works on CM10 but not all apps will work.
I hope u can make halo bubble port also.
Gotta say, a legit halo bubble that integrates this would be far better then using with FN
Sent from Navi
zst123 said:
Try this: https://docs.google.com/file/d/0B7CBSsJQIV5-VGJyNVpSLXg2UHc/edit
https://play.google.com/store/apps/details?id=robj.floating.notifications&hl=en
Yea. Still looking into facebook and some other large apps.
It does not dim? It can be changed from settings if it does not dim.
or it Blackens to opaque? That means your ROM has a changed "fullscreen" field in "com.android.server.am.ActivityRecord". I'll look into the source codes and update my mod if so.
Click to expand...
Click to collapse
thz you.i will try.i will help you in future .thz for your hard work Good luck
After some painful times trying to figure out what key means what in the custom, scalable fonts provided by MyColorScreen, I realized I could extract the TTFs from the APK and create my own keymap. You can either download the PDFs to see just the characters or use the two lists below to find the icons you're looking for by description.
Do note that there're a few "missing" and cut-off punctuation characters (they actually display correctly in the widget). I left them as is to show how much the descender is lower than in Arial for reference.
You can also install Kii keyboard, which supports custom fonts, but I find it a bit cumbersome to use (switching fonts).
I hope MyColorScreen isn't upset with me taking the liberty to snoop around the APK.
Themer Icons description
A - person / contact
B - person / contact with plus sign (add)
C - share icon
D - dollar sign
E - credit cards
F - American football
G - normal football
H - book with a bookmark
I - phone headset with sound (ringing)
J - phone headset
K - a picture in a frame
L - camera
M - headphones 1 / cans
N - headphones 2
O - four squares
P - three bars of different width / sort icon
Q - message icon with the tail on the right
R - message icon with the tail on the bottom
S - back icon
T - bookmark
U - three dots arranged vertically
V - three squares arranged vertically (Android 4.0+ menu key)
W - Android settings icon
X - notifications pull-down icon
Y - pen / pencil / edit icon
Z - paintbrush
a - clock face showing 12:15
b - sneaker / sports shoe / tennis shoe
c - dumbbell
d - gamepad / game controller white
e - gamepad / game controller solid
f - cog wheel with a white ring
g - solid cog wheel
h - paper with torn top edge / newspaper
i - folded news paper
j - outlined white envelope
k - solid envelope
l - calendar with marked days
m - tear out calendar page
n - cloud
o - sun during eclipse / full brightness icon
p - half brightness icon
q - crescent / half moon
r - location pin with a GPS marker inside
s - solid location pin
t - round globe
u - world map square
v - film clapperboard closed
w - film clapperboard open
x - bag / cart
y - shopping basket
z - 3 person icons (one in front, two behind)
` - left arrow with a stick
1 - airplane flying around the globe
2 - Android airplane mode icon
3 - text / page / sheet of paper icon
4 - tag icon
5 - open folder icon
6 - heart
7 - microphone
8 - phone / device icon
9 - Themer logo
0 - outlined / wire 5-point star
- - dash
= - equals sign
[ - left bracket
] - right bracket
; - semi-colon
' - apostrophe
, - comma
. - period
/ - slash
~ - tilde
! - filled 5-point star
@ - magnifying glass / loupe / search icon
# - delete / backspace icon
$ - check mark
% - pointer up (no stick)
^ - pointer down (no stick)
& - refresh icon (two arrows in a circle)
* - pointer left (no stick)
( - pointer right (no stick)
) - right arrow with a stick
_ - underscore
+ - plus sign
{ - left brace / curly bracket
} - right brace / curly bracket
: - colon
" - quotation mark
< - less than sign
> - greater than sign
? - question mark
Themer Media Icons description
A - rewind icon in a solid circle (two less than signs sequential)
B - forward icon in a solid circle (two greater than signs sequential)
C - rewind icon in a solid circle (two less than signs overlapping)
D - forward icon in a solid circle (two greater than signs overlapping)
E - rewind icon in a solid circle (two wire triangles sequential)
F - forward icon in a solid circle (two wire triangles sequential)
G - rewind icon in a solid circle (two wire triangles merged)
H - forward icon in a solid circle (two wire triangles merged)
I - rewind icon in a solid circle (two wire triangles overlapping)
J - forward icon in a solid circle (two wire triangles overlapping)
K - rewind icon in a solid circle (two wire less than signs sequential)
L - forward icon in a solid circle (two wire greater than signs sequential)
M - rewind icon in a solid circle (two wire less than signs overlapping)
N - forward icon in a solid circle (two wire greater than signs overlapping)
O - pause icon
P - play icon (solid triangle)
Q - wire pause icon
R - play icon (wire triangle)
S - pause icon in a solid circle
T - play icon in a solid circle
U - wire pause icon in a solid triangle
V - play icon (wire triangle) in a solid circle
W - pause icon in a solid circle
X - play icon in a solid circle
Y - wire pause icon in a solid triangle
Z - play icon (wire triangle) in a solid circle
a - rewind icon (two solid triangles sequential)
b - forward icon (two solid triangles sequential)
c - rewind icon (two solid triangles overlapping)
d - forward icon (two solid triangles overlapping)
e - forward icon (two solid triangles overlapping)
f - forward icon (two solid triangles sequential)
g - rewind icon (two less than signs sequential)
h - forward icon (two greater than signs sequential)
i - rewind icon (two less than signs overlapping)
j - forward icon (two greater than signs overlapping)
k - rewind icon (two wire triangles sequential)
l - forward icon (two wire triangles sequential)
m - rewind icon (two wire triangles merged)
n - forward icon (two wire triangles merged)
o - rewind icon (two wire triangles overlapping)
p - forward icon (two wire triangles overlapping)
q - rewind icon (two wire less than signs sequential)
r - forward icon (two wire greater than signs sequential)
s - rewind icon (two wire less than signs overlapping)
t - forward icon (two wire greater than signs overlapping)
u - rewind icon (two solid triangles sequential)
v - forward icon (two solid triangles sequential)
w - rewind icon (two solid triangles merged)
x - forward icon (two solid triangles merged)
y - rewind icon (two solid triangles overlapping)
z - forward icon (two solid triangles overlapping)
` - left arrow with a stick
1 - solid circle
2 - Android settings icon
3 - three dots arranged vertically
4 - three squares arranged vertically (Android 4.0+ menu key)
5 - text / page / sheet of paper icon
6 - open folder icon
7 - headphones 1 / cans
8 - headphones 2
9 - three bars of different width / sort icon
0 - outlined / wire 5-point star
- - dash
= - equals sign
[ - left bracket
] - right bracket
; - semi-colon
' - apostrophe
, - comma
. - period
/ - slash
~ - tilde
! - filled 5-point star
@ - magnifying glass / loupe / search icon
# - delete / backspace icon
$ - check mark
% - pointer up (no stick)
^ - pointer down (no stick)
& - refresh icon (two arrows in a circle)
* - pointer left (no stick)
( - pointer right (no stick)
) - right arrow with a stick
_ - underscore
+ - plus sign
{ - left brace / curly bracket
} - right brace / curly bracket
: - colon
" - quotation mark
< - less than sign
> - greater than sign
? - question mark
nice one and thanls
That's great! But, what about the rest of these?
{
"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"
}
Supuhstar said:
That's great! But, what about the rest of these?
Click to expand...
Click to collapse
I created character maps in April. I need to see whether the fonts have changed since then.
Sent from my LT30p using XDA Free mobile app
bsined said:
I created character maps in April. I need to see whether the fonts have changed since then.
Sent from my LT30p using XDA Free mobile app
Click to expand...
Click to collapse
Can't wait!
I made some keys
So I made a custom widget with the following text in it:
Code:
QWERTYUIOP
ASDFGHJKL
ZXCVBNM
qwertyuiop
asdfghjkl
zxcvbnm
@$&_():;"
!#=/+?
,- '.
And applied all the fonts to it. I don't have time to make a custom key for all these, but I hope this will do well enough:
(Imgur gallery ASDyJ)
Roboto (key):
Themer_Icons:
Themer Icons Revised:
Themer_Media_Icons:
Android-Dev-Icons-1:
Material icons 01:
Material icons 02:
Vintage Decorative Signs 4:
dripcons:
life icons:
media icons..:
neus icons:
round icons:
SIMPLE LINE ICONS 2:
sosa:
thin icons:
ttf fonts
Where are the .ttf file if someone wants to use it in the phone or as a font.
Ultrawatch is a fully customizable watchface for your wear.
You could switch between a SciFi face to a minimal one, using DIGITAL or ANALOG display.
Features:
- Weather, Temperature
- Time Digital and Analogic
- Date
- Battery meter
- Next calendar events
- 3D Parallax background
- Steps counter
- Configure Weather refresh interval
- Increase interactive mode duration
- Change colors or texture
To install:
After install run 'resync app' on android wear if not availlable
Long press your watch and choose Ultrawatch
Compatible with round watch
Tested with LG Watch R
Your comments are welcome on the thread. I will try to add whats you want to the watch face, priorised by the most thanked one.
https://play.google.com/store/apps/details?id=com.reunidevapps.utw1
Evolution X 7.9 for the OnePlus 7 & 7 Pro [guacamoleb][guacamole]
{
"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"
}
Living, Breaking, Keep Evolving.
Pixel UI, customization and more, we are Evolution X!
- Team Evolution X -
@joeyhuab (Founder/Lead Developer)
@peaktogoo (Project Manager/Co-Founder)
@AnierinB (Project Specialist/Co-Founder)
Reach us on Twitter! @EvolutionXROM
Check out our website!
Spoiler: Feature List
Code:
Themes
- Theming Settings (Style, Color Source, Accent Color, Accent Background, Background Color, Luminance, Chroma, Tint Background)
- Custom Themes (Black, Clear, Vivid, Paint In The Snow, Espresso)
- Dark Theme Schedules
- Lock screen Clock Fonts (16 Fonts)
- Headline/Body Fonts (53 Fonts)
- SB Icon Packs (10 Styles)
- SB Signal Icon Packs (14 Styles)
- SB WiFi Icon Packs (10 Styles)
- System Icon Shape Packs (16 Styles)
- 3 Button Navbar Styles (10 Styles)
Status bar
- Status Bar Lyrics
- Clock Styles (Right, Center, Left)
- Clock & Date Configs (Auto Hide, Hide Duration, Show Duration, Seconds, AM/PM, Font Size, Date Position/Case/Format)
- SB Logo Pack (20 Styles, Right/Left)
- Network Traffic Indicators
- Battery Icon Styles (19 Styles)
- Battery Percent (Hidden, Inside Icon, Next To Icon)
- Battery Bar (Thickness, Alignment, Blend Colors, Reverse Direction, Colors, Animation)
- System SB UI Tuner
- Data Disabled Icon (On/Off)
- Old Style Mobile Data
- 4G Instead Of LTE
- Roaming Indicator
- WiFi Type Icon
- Colored Icons
- Notification Count
- Bluetooth Battery Status
- Mic/Camera Privacy Indicator
- Location Privacy Indicator
- Media Projection Privacy Indicator
Notifications
- ReTicker
- App Colored Background For Reticker
- Heads Up (Time Out, Importance Threshold, Less Boring, Stoplist/BlockList)
- Force Expand Notifications
- Notification Sound If Active
- Kill App Button
- Blink Flashlight For Incoming Call (When Ringing, When Silent, When Entierly Silent, Always)
- Blink Flashlight For Notifications
- In-Call-Vibrations (Connect, Waiting, Disconnect)
Quick Settings
- Clock
- Clock Font Size
- Date
- Battery Style (15 Styles)
- Battery Percent Location (Hidden, Inside Icon, Next To Icon)
- Battery Estimates
- Secure QS Tiles Requires Unlocking
- Quick QS Pulldown (Disabled, Right, Left, Always)
- Brightness Slider (Never, Expanded, Always)
- Brightness Slider Position (Top, Bottom)
- Auto Brightness Icon
- Hide Labels
- Label Text Size
- Smart Pulldown
- Vertical Layout
- Columns In Portrait (2-5)
- Columns In Landscape (2-6)
- QS Tile Animation Style (3 Styles)
- QS Tile Animation Druations (3 Speeds)
- QS Tile Animation Interpolator (8 Styles)
- Vibration On Touch
- Vibration On Touch Duration
- QS Footer Warnings
- Show Data Usage
- User Account Icon
- Edit Icon
- Power Menu Shortcut
- Running Services Shortcut
- Settings Shortcut
- Clear All Button (10 Styles, 5 Backgrounds)
Power Menu
- System Settings (Hold PWR Assistant + Hold Duration)
- Disable Power Menu On LS
- Power
- Restart
- Advanced Reboot Options
- Screenshot
- On-The-Go Mode
- Settings
- Lock Down
- Emergency
- Device Controls
- Users
- Logout
- Bug Report
Gestures
- System Settings
- Quick Tap
- Volume Button Playback Control
- Swipe To Screenshot
- Brightness Control
- PWR Button Torch
- Double Tap To Sleep Status Bar
- Double Tap To Sleep Lock screen
- AOSP Gestures
- Pill Length
- Pill Radius
- Hide IME Button Space
- Back Gesture Animation
Lock screen
- Edge Light
- Always On Fingerprint
- UDFPS Icon Picker (55 Styles)
- UDFPS Animation Picker (38 Styles)
- Lock screen Charging Info
- Hide Status Bar
- Hide QS During Secure Lock screen
- Media Cover Art (5 Filters)
- Ripple Effect
- Fingerprint Authentication Vibration
- Fingerprint Error Vibration
Buttons
- Navigation Bar
- Compact Layout
- Invert Layout
- Show Vol Panel On Left
- Per App Vol Control
- On-Screen NavBar
- Reorient Volume
- Volume Rocker Wake
- Keyboard Cursor Control
- Alert Slider Notifications
- Alert Slider Pulse
- Block Alert Slider In Pocket Mode
- Click To Partial Screenshot
Animations
- Screen Off Animation (3 Styles)
- Power Menu Animations (11 Styles)
- Android P Animation Style
Miscellaneous
- AOD Display Schedule
- Google Services
- Parallel Space
- Game Space
- Smart Pixels
- App Lock
- Launch Music App On Headset Connection
- Unlimited Photos Storage
- Unlock Higher FPS In Games
- Netflix Spoof
- Pulse Music Visualizer (Navbar, LS, Ambient)
- Volume Panel Timeout
- Jitter Test
- Ignore Secure Window Flags
- Show CPU Info
- Toast App Icon
- Sensor Block Per Package
- Wakelock Blocker
- Alarm Blocker
- Default USB Configuration
- Radio Info
Evolution X Launcher
- Icon Packs
- Notification Dots
- Icon Size
- Icon Font Size
- Max Lines For App Label
- Lock Layout
- Add App Icons To Home
- Dark Status Bar
- Double Tap To Sleep
- Wallpaper Scrolling
- Wallpaper Zooming
- At A Glance
- Swipe To Access Google Feed
- Hide/Show Status Bar
- Top Shadow
- Icon Labels On Desktop
- Hotseat Background
- Google Search bar
- Themed Icons
- Corner Radius
- Themed Icons In App Drawer
- App Drawer Search bar
- Icon Labels In App Drawer
- App Drawer Row Height
- App Drawer Background Opacity
- Recents Background Opacity
- Recents Scroll Vibration
- Recents Screenshot
- Recents Google Lens
- Recents Clear All
- Suggestions In All Apps List
- Suggestions On Home
- Blocked Suggestions
- Parallel Space
- Taskbar
- Rotation
- Hidden & Protected Apps
Spoiler: Device specific feature List
Code:
My signature Universal OPlusExtras application:
- Awesome alert slider (Notification/Flashlight/Brightness/Rotation/Ringer/Notification & Ringer/Refresh rate)
- Ambient display gestures (raise2wake)
- Kcal
- Per-app refresh rate
- DC-Dimming toggle
- HBM toggle
- Auto HBM toggle (with lux adjustment preference)
- Power efficient Workqueue toggle
- MSM touchboost toggle
- fsync toggle
- Adrenoboost preference (off, light, medium, aggressive
- FPS overlay (9 Positions, 11 Colors & accent, 9 Sizes
- TP edge limit toggle (disable edge detection)
- USB-OTG toggle
- USB2.0 Fastcharge toggle
- System Vibration Strength preference
1. You tell me
DO NOT FLASH GAPPS, ALREADY INCLUDED
First Time Install / Clean Flash
1. Have an unlocked bootloader and latest OOS 12 flashed to both slots
2. Download vbmeta, recovery & rom for your device from here
3. Reboot to bootloader
4. fastboot flash vbmeta vbmeta.img
fastboot flash boot boot.img
fastboot reboot recovery
5. While in recovery, navigate to Apply update -> Apply from ADB
6. adb sideload rom.zip (replace "rom" with actual filename)
7. Format data, reboot to system & #KeepEvolving
Update / Dirty Flash
1. Reboot to recovery
2. adb sideload rom.zip (replace "rom" with actual filename)
3. Reboot to system & #KeepEvolving
OTA
1. Check for update. If available, select "Download and install" (approx 10-15 min)
2. Reboot & #KeepEvolving
Android version: 13.0_r43
Security patch level: May 2023
Build author: Anierin Bliss
Kernel Source: https://github.com/Evolution-X-Devices/kernel_oneplus_sm8150
Clang version: 14.0.6
ROM Developer: joeyhuab
Source code: https://github.com/Evolution-X
Credits: @jabashque @LuK1337 @ZVNexus
Spoiler: OnePlus 7 (guacamoleb) latest downloads
rom:
https://sourceforge.net/projects/evolution-x/files/guacamoleb/evolution_guacamoleb-ota-tq2a.230505.002-05101941-unsigned.zip/download
boot:
https://sourceforge.net/projects/evolution-x/files/guacamoleb/boot/boot.img/download
vbmeta:
https://sourceforge.net/projects/evolution-x/files/guacamoleb/vbmeta/vbmeta.img/download
Spoiler: OnePlus 7 Pro (guacamole) latest downloads
rom:
https://sourceforge.net/projects/ev...q2a.230505.002-05102003-unsigned.zip/download
boot:
https://sourceforge.net/projects/evolution-x/files/guacamole/boot/boot.img/download
vbmeta:
https://sourceforge.net/projects/evolution-x/files/guacamole/vbmeta/vbmeta.img/download
Reserved
Edited
Are payment apps working properly...?
princemouli said:
Are payment apps working properly...?
Click to expand...
Click to collapse
Yes
Would you have to go through all the steps from OOS12 if you are already on unofficial EvolutionX?
I guess you used OOS12 source so things changed?
Hey, thank you for the rom! One quick questions,
I'm stuck in GM1900_11_H28 for now. Can i install this rom, without waiting for the update (h30/31) to be available ?
Thx
Zocker1304 said:
Would you have to go through all the steps from OOS12 if you are already on unofficial EvolutionX?
I guess you used OOS12 source so things changed?
Click to expand...
Click to collapse
Yes , you'll need to come from the firmware mentioned in the OP. Upcoming builds will have fw included. Until then you can follow the guide as is, or you can flash lineage, reboot to bootloader and follow my guide starting with step 2.
AnierinB said:
Yup, you'll need to come from the firmware mentioned in the OP. Upcoming builds will have fw included, so follow the guide AS IS for now.
Click to expand...
Click to collapse
Does this have OOS camera?
Is this ROM erofs?
Bug 1 : in always on display fingerprint unlock doesn't work after 4 seconds while always on display being active.
in one plus 7
hopefully it will be fixed very soon.
Bug 2 : after disconnecting phone from the charger it keeps saying charging for some amount of time.
in one plus 7.
<Moderator Note>:
Fegelein said:
Bug 1 : in always on display fingerprint unlock doesn't work after 4 seconds while always on display being active.
in one plus 7
hopefully it will be fixed very soon.
Bug 2 : after disconnecting phone from the charger it keeps saying charging for some amount of time.
in one plus 7.
Click to expand...
Click to collapse
Hi @Fegelein,
I hope all is well. I deleted your first post above that one for a couple of reasons:
Making two or more posts in a row in a thread is discouraged. You can always click the Edit button on your existing post and change it as much as you need to.
Accidents happen, and when you do make a second post by mistake, please use the Report button on your own post and ask us to delete it for you.
Last, but not least: your initial post gave off the impression of being very demanding of the developer, who generally does this work for free and in their spare time. Your second post is much better, although still on the very edge of demanding, but doesn't quite cross the line.
If you have any questions or need to discuss any of this, please send me a PM, and don't reply here so that we keep the thread on-topic.
Thank you,
@roirraW "edor" ehT
What is the kernel version, may I ask?
alessio89g said:
Is this ROM erofs?
Click to expand...
Click to collapse
Nope. I will not be migrating to it either. Erofs has been known to cause app launch regression. I ship with erofs on 8 series although I'll probably be migrating back to ext4 soon as well.
Zocker1304 said:
Does this have OOS camera?
Click to expand...
Click to collapse
No and I will not be adding it, nor will I be adding Dolby. I do the same for 6, 8 and 9 series.
AnierinB said:
No and I will not be adding it, nor will I be adding Dolby. I do the same for 6, 8 and 9 series.
Click to expand...
Click to collapse
How is camera performance compared to oos/ can it be added later on?
Zocker1304 said:
How is camera performance compared to oos/ can it be added later on?
Click to expand...
Click to collapse
As for performance, well, you can use a gcam mod with xmls. I suggest using LMC 8.4
Edit: There is an issue with Always-on-display. When you have pocket mode enabled and put your phone in your pocket with AOD active, it will show the pocket mode info screen all the time. I guess this will cause burn in and battery drain.
Is it Google play certified? The banking apps are allowing access with this room?