Development help with smali & java source for long-press-recent-apps (NOT home) remap - HTC One S

Development help with smali & java source for long-press-recent-apps (NOT home) remap
Sorry to bother everyone with this thread but I was looking for some coding help and I'm not sure who has the relevant knowledge on this.
Over the last few days I've been looking in more detail into the remapping of recent apps to long-press-home mod as I wanted to figure out a way to remap recent apps to long-press-recent-apps instead of long-press-home, which would make more sense to me.
I've managed to decompile and part-convert to Java code the PhoneWindowManager class so I could make more sense of it and going thorough the code I've noticed that the remapping of recent apps to long-press-on-home is done by piggybacking on the existing method that handles the long-press-on-home. (Actually this is the way Google have designed it to work and not the way HTC have changed it.) While I was looking at that, I also noticed that the current mod also brakes the default action that is set in the stock HTC ROM - something to do with voice commands when plugged into a car dock?...
Anyway, the point is that there is no pre-defined method to handle long-press-recent-apps so this would have to be done from scratch. Now the problem is that I have no idea how this is done or if it is possible to define at all.
If anyone could help I would really appreciate it. Plus, I'm sure there are quite a few people out there who would like to have this functionality.
Thanks

+1.
I would go further, maybe set:
Long-press back > force close app
Long-press home > toggle keyboard
Long-press recent apps > recent apps
also, and I'm just curious, is there a way to toggle double-tap soft-keys? That would be sweet. ;-p
Sent from my HTC VLE_U using XDA

If we set functions to double tap, there would be a delay after we tapped every button before something happened, because it would have to wait to check if It's single or double tap. So I wouldn't recommend it
Sent from my HTC One S using XDA

Great call.
But what if you set it to a quick double-Tap? Like a 5ms delay?
Sent from my HTC VLE_U using XDA

Because humans can't tap twice in a 5ms internal lol. That is insane.
Sent from my HTC One S using XDA

Just saying, if you can do a double-click with a mouse, you should be able to with your finger. ;-p
But I don't want to derail the goal of this post, I'd love to figure out the long press for stock odex rom. And the more we can understand, the more developers we have asking "how can we", and that's the whole goal, right?
Sent from my HTC VLE_U using XDA

Just thought I should mention that I do have quite a bit of experience in C++ and Java programming but I have no experience with the Android environment and that's where I need some help.
If someone could explain to me how the bits I'm interested in fit together in Android I'm sure I'd be able to do all the programming. The problem is that I don't have the time to read all the Android documentation and go through all the source code to get up to speed with all the relevant aspects so I would need some help to get a head start on it.
Also, in response to some of the requests:
- I don't think double tap is a good idea on keys that are expected to perform a single tap function which is unrelated to the double tap function. Basically, the way the singe click / double click works with the mouse is that the double click is an additional function to what the single click does so that the system can process the single click action straight away and then wait to see if a second click was performed in the relevant timeframe - i.e. a double click on an icon in order to start an aplication involves selecting the icon first and then launching the application the icon links to. If you look at it carefully you'll see that the action of a double click is actually made up of the action of a single click (i.e. select icon) plus an additional action which is performed once the second click is detected (i.e. launch application). So the only way you can implement a double tap on a button which also has a single tap assigned to it is if the second tap performs an action that is additional to the first tap. Otherwise, as Habarug already mentioned, we would introduce a lag as the system would have to wait for a given time to decide whether it was a single tap or a double tap and only then perform the relevant action. You may say that double taps are already implemented in Android but if you actually look at each and every situation where they are used you will see that they either fit the description I've given above or they are used in a situation where a single tap would not perform any action. The only exception is in the internet browser - i.e. a double tap performs a zoom-in / zoom-out, whereas if you single tap on a link it follows the link, which is an action unrelated to the double tap. However, if you look closely you will realize that this is actually handeled the same as explained with the single-click / double-click - i.e. if you try to double tap on a link you will see that the link actually gets selected but the browser does not follow the link and instead performs a zoom-in / zoom-out. So, how does this work then? Well, very simple, a lag is in fact intoduced on all single taps in the browser! Have you noticed how when you tap on a link the browser does not follow it straight away but instead just sits there doing nothing for a split second and then performs the action? If you don't believe me just try it yourself, you'll notice it. What the system does is that it performs the bit of the single tap action which is 'safe' to perform (i.e. select the link) but then it waits to see whether it was a single or a double tap before it performs the 'unsafe' part of the action (i.e. follow link or zoom-in / zoom-out). I say 'unsafe' because this bit of the action depends on what the user has actually done, i.e. single tap or double tap, so the system cannot go ahead and perform it until it knows for sure what the user actually wants, whereas the 'safe' action is something the system can perform regardless as it will not impact on what the user is doing as the 'unsafe' action would. So I guess the whole point is, do you want to have a lag on your capacitive buttons or not? My guess is that you don't want a lag on your buttons whereas in the internet browser a lag is assumed to be acceptable.
- implementing long-press actions on all capacitive buttons would be nice but we have to start somewhere so we need to set some targets, i.e. long press on recent apps for starters and then we can look at other things. Otherwise we risk loosing the plot.

Moved To Q&A​
Please post questions in the Q&A section​

Team venom has done longpress of both recent and back capacitive buttons with their tweaks.

SteelH said:
Team venom has done longpress of both recent and back capacitive buttons with their tweaks.
Click to expand...
Click to collapse
Why did you bump this dead thead? And Team Venom is not supporting the One S right now.

Related

[Aprl 6][APP] Button savior 2.1.6 Beta testing needed

Button Savior is a software button simulation App. You can use it to display a sidebar style panel with most buttons that you can find on your phone such: Back, Task, Home, Menu, Search, Vol, Camera, Call, Power, and Direction Key.
Google is now enforcing dev from modifying SElinux policy. In attempt to satisfy the new change, I have no modified my code to run without needing to modify SELinux. It works well on my devices. If your device is Kitkat or Lollipop, please help me to test if SWkey81beta.apk works on your device? Thanks in advanced for your help.
[Introduction]
If you have a phone with broken hardware keys, or you want to remove the system NAV bar from Nexus devices to expand screen useable size, or you find the hardware keys on your phone are too hard to reach with one hand, or you can find keys at night, then Button Savior is just for you to remedy your pain points.
When I developed Button Savior, I personally didn't believe keys would break. Three years have passed since my first release, I got more and more compliment from users by both email or Playstore comment saying my App saved them from having a phone with broken keys. SO KEYS DO BREAK regardless its capacitive or mechanical type.
[New in V2]
☆ Ability to hide bottom navigational bar by enabling immersive mode
☆ Ability to go full screen by enabling full screen mode
☆ Native Android Holo style UI
☆ Powerful and customizable Pop Control
☆ Direction key support
☆ HD quality graphics
☆ Adjustable swipe trigger area
☆ Android Kitkat support
☆ Add action support to send arbitrary key code
☆ Add action support to open any URL
☆ Add action support to launch any App or shortcut
☆ Add action support to media play back keys
[Features]
☆ Enable/Disable bottom navigational bar on demand.
☆ Enable/Disable full screen mode on demand.
☆ Pop Control that supports action to perform arbitrary key action, app/shortcut launch, and open any URL
☆ Hover control supported for automatic Software Button visibility control with mouse or Samsung S-Pen
☆ Free floatable trigger icon
☆ Swipe to show Button Savior panel from both sides
☆ Long press on power key to show up reboot menu
☆ Simulates 'Home' 'Back' 'Search' 'Back' 'Recent Task' 'Screen Off' 'Volume', 'Directional Key'
☆ Can set to always open or auto hide based on user customizable timer
☆ Two types of trigger action to choose from (Gesture trigger and Click trigger)
☆ Added Camera key and Call key simulation
☆ Customizable trigger position
☆ Also provides themese to support e-ink display
☆ Can change it to one click mode for super fast button action in option
☆ Can create shortcut action such as call someone or go to bookmark on Call or Camera keys. (With PRO)
[Not Root?]
☆ Home key is supported
☆ Power key is supported
☆ Volume key is supported
☆ Camera key is supported
☆ Call key is supported
[Download Link]
Playstore - Get Button Savior (Root)
[6-Apr-2015 V2.1.6 beta swkey81beta.apk]
Made Button Savior work without SELinux modification
Some bug fix.
Click to expand...
Click to collapse
[7-Jun-2014 V2.0.1 swkey73.apk]
Added immersive mode toggle in pop control
Added full screen mode toggle in pop control
Fixed trigger icon placement when device is in full screen mode
Fixed USB debug message
Click to expand...
Click to collapse
[6-Jan-2014 V2.0.1 swkey72.apk]
Added a new button to show Pop Control that can perform additional actions
Click to expand...
Click to collapse
[2-Dec-2013 V1.9.0 swkey69.apk]
Implemented hover control to control visibility of Button Savior with events of hover enter and hover exit on trigger icon, trigger are, and software buttons.
Click to expand...
Click to collapse
[9-Jul-2013 V1.8.0]
Implemented a feature to show up reboot menu when virtual power key is pressed. Next step is to bring up Google Now on swiping up on home key.
Click to expand...
Click to collapse
[4-Jul-2013 V1.8.0]
I will now come back to maintain this thread from today. I am now gradually upgrading Button Savior to V2 since last month. Today, I added a long awaited feature, D-Pad support. To use it, just press and hold your finger on D-Pad button and move your finger slightly to the direction you want to go. Its that simple.
Click to expand...
Click to collapse
[21-Feb-2012 V1.4.0]
I updated main UI to modern Android UI in this version. Also added experimental Kitkat fix. If you are still having problem to use it with kitkat, plea reply to the thread with model of your device. Thank you.
Click to expand...
Click to collapse
[7-Feb-2012]
Sorry for not maintaing my thread for such a long time. I just released an update version, V1.3.2, to Market today with new features to show native Android recent task dialog (if you have it in system) on home key long press. So Button Savior now supports ICS and HC much better now.
Click to expand...
Click to collapse
[1-Sept-2011]
Thanks to XDA member OMGWTF_BBQ, now Button Savior supports E-INK display properly with newly designed high contract theme. Please refer to this post for more detail [ORIGINAL POST]
Click to expand...
Click to collapse
[30-Jun-2011]
I published a similar app like this one but it is for clipboard management in windows office style. Read this post for more detail Everywhere Clip official XDA news
Beside than my new app, I also updated Button Savior today and brought back power off option on non root devices. But it is not yet widely tested on all kind of phones, so not sure it will work. If it doesn't please feedback.
If you want to include your own theme to my app, please send me png files with clicked and unclicked states altogether. I will add screen off button soon. So it is good idea to send me screen off picture too. [email protected]
Click to expand...
Click to collapse
Thanks xda member, bpk, who contributed his recently announced SWkey source code to public so that I have chance to learn what command shell to use to simulate keys. I only spent a morning to come out this draft but still functional. Hope you guys like it. I will eventually polish it up a bit and publish it on Market. By the way, I want to call this app, Button Savior. haha
If you have used my app, Smart Taskbar, then you should already know how to activate the sidebar style SWkey panel. If you don't, then just look carefully for an Orange circle at the right end of your screen. Click on it to trigger SWKey panel.
I basically used built in shell command 'keyevent input' learned from bpk's key simulation hack with a streamlined version of my Smart Taskbar together to come out this one. Feel free to comment
[Installation] ***** Root required*****
(1) install the apk
(2) When you click any of the 4 buttons first time(except close), you need to grant Button Savior root access. It happens only to your first ever button click.
[FAQ]
1. Why menu, search, back don't work on my device?
Ans: Make sure your device is rooted. Make sure your USB debug mode is on. Make sure you have granted superuser right to button savior. After you have done all three steps, reboot your device and restart Button Savior.
Did it ask you for root permissions? If not, go into SuperUser and check to see if the binary is up to date. If it isn't then update it. After that, try to open Button Savior and see if it asks for root permissions. If it doesn't then go into Manage Applications and clear data on this app and try again.
Click to expand...
Click to collapse
2. Why I can't uninstall Button Savior ? (Shows uninstalled unsuccessful)
Ans: Because you have Enabled screen lock. In order to uninstall, please go to /settings/location and security/device admin/ and remove button savior from the list.
thanks, will try and feedback
works great, but is there an option to make it app launcher and customized?
thanks
Fantastic app mate! Is properly what I'm searching for....
Thank you
Sent from my HTC HD2 using XDA App
thank you thank you thank you..
nice man, thank. button savior especially for hd2 xD
btw, can polish abit the interface to more nice looking?
Only home and close button worked for me.
XDAndroid
fantastic !!!!!!!!!!!!!!
thank you
fmedrano1977 said:
Only home and close button worked for me.
XDAndroid
Click to expand...
Click to collapse
Make sure ur phone is rooted and have granted root priviliage to Button Savior
jerryfan2000 said:
Thanks xda member, pbk, who contributed his recently announced SWkey source code to public so that I have chance to finish my sidebar style alternative. I only spent a morning to come out this draft but still functional. Hope you guys like it. I will eventually polish it up a bit and publish it on Market. By the way, I want to call this app, Button Savior. haha
[Installation] ***** Root required*****
(1) install the apk
(2) When you click any of the 4 buttons first time(except close), you need to grant Button Savior root access. It happens only to your first ever button click.
Click to expand...
Click to collapse
It's near perfect !
Can you please add a configuration to it to??
- Choosing theme (I want darker buttons)
- Choosing what side of screen it will be at. For easy one hand (left/right) access.
- What about hapatic feedback?
I'll rate this as 4.5 stars already now. Without connection to the hardware buttons saving.
perfect!! really usefull.. best app I ever use.. great job man..
Sent from my HTC HD2 using XDA App
Thaaaanks you so much for sharing kind sir...
been searching for this kind of app, works really great...
Nice job, thanks for this app.
I am already using Smart Taskbar.
Will test how they work together. SmartTaskbar on the left, Button Savior on the right.
woot!!! finally...prayers for soft keys has been answered
thank you!!!
THANK YOU!!! i love it!!
It would've be perfect if it was at the bottom in portrait mode. I love it to the side in land scape though. And If i may suggest, can you make the buttons highlight a little when you press on them?
Other than that, absolutely fantastic job!!!
love it
i'd like to have a try.
i use smart taskbar on milestone and it works perfectly.
love it, and the man
哈哈~~~
Completely........ perfect. Nice job mate. Very convenient. And I get to haze a search button. Now to train my hand to stay off the hard keys.
It can't hold home button open multitasking but it good app, i hope you update it....thanks so much
fmedrano1977 said:
Only home and close button worked for me.
XDAndroid
Click to expand...
Click to collapse
Same here......
I have granted root access the first time I pressed a button
jerryfan2000 said:
Make sure ur phone is rooted and have granted root priviliage to Button Savior
Click to expand...
Click to collapse
how do I make sure phone is rooted? Is it build specific? Kernel?
XDAndroid
Hi Jerryfan2000,
great work!!
Furthermore look here for some inspiration...
http://forum.xda-developers.com/showthread.php?t=841559
Regards...

Android tips and tricks (new)

Avoid task killers
It is best to avoid task killers such as Advanced Task Killer. Android is designed to automatically pre-load certain applications, even if you don't load them yourself. If it starts to run low on memory, it will smartly unload the oldest running apps automatically.
Manually killing tasks will only mean they get loaded in memory again. Task killers can make the phone slow, laggy, or drain battery life more quickly.
Bookmark a contact on your homescreen
To bookmark a contact on your homescreen, long press on the home screen background and select Shortcuts. Then select Direct dial.
If you call someone regularly this can be useful as you will have a shortcut to them handily placed on your homescreen
Bookmark a web page on your homescreen
To bookmark a website on your homescreen, go into your browser and find the bookmark of the page you want to create a shortcut for.
Then long press on the bookmark and select Add Shortcut to Home.
If you regularly visit certain websites, this can be handy as you will have a shortcut to the site on your homescreen.
Create folders to tidy your Apps
If you find yourself with too many Apps on the homescreen, then you can create folders to organise them.
To start, simply press and hold on an App and drag it over the top of another App. The App should change colour/shape. Then release your finger and the two Apps will be combined into a folder.
You can then drag more Apps into this folder using the same process.
To give your folder a label, simply long press on the folder and you will be able to enter a name.
Double tap for a full stop (period)
While typing emails or notes, you can simply tap the space key twice and the phone will insert a full stop / period
Install new keyboard to improve accuracy
The standard Android keyboard is good, but not great. There are many third party keyboards available which will improve your typing speed and accuracy.
Go to the Android Market and search for 'Keyboard' to see some great alternatives, many of which are more accurate and make typing much easier.
A good one is GoKeyboard.
If you see a warning saying the keyboard will collect all information (including credit cards) just ignore this. This is just a security feature that Android shows for every third-party keyboard that you install.
Accents and special characters
If you want to type non-English letters (eg those with an accent), long-press on the relevant letter. A list of options will appear for you to select.
Access the scientific calculator
To access the scientific calculator, rotate the phone to landscape mode.
The calculator will change to a scientific one
Add email or phone number from text
To add an email or phone number to your contacts from a text message, you can long-press on the email / phone number. Then select Add to contacts
Add widget to the homescreen
To add a widget, go to the homescreen and press the Apps icon (the circle with 6 dots). Then you will see a list of your Apps with the word Apps and Widgets at the top. Press Widgets, then you will be presented with a list of available widgets.
To add a widget, press and hold on it and then position it where you want
Android Easter egg
There is an Easter egg hidden in the Android operating system. To see it, go to your Homescreen, then press Menu - Settings - About phone.
Then tap on the Android version option 5 times and you will get a surprise.
Sometimes it doesn't work, so try a couple of times. By the way don't expect to see an actual Easter Egg. That is just the name given to things hidden inside software or operating systems.
Auto focus the camera
When taking photos or videos, tap the screen where you want to focus on. The phone will automatically adjust the settings to improve the image or video
Bring up more predicted words
If you have word prediction enabled while you are typing, you can long press the middle word that is suggested. This will bring up a menu allowing you to select various other suggested words.
Browse websites in full-screen mode
If you want to browse in full screen mode, without the URL bar at the top of the browser, then you can enable this..
Open the standard browser and press Menu - Settings - Labs. Then put a check mark under Full Screen .
To get access to the browser options (that are now invisible), there is now a neat hidden menu. Slide your finger in from the left or right of the screen. A circular menu will appear with various options.
Capture a still shot while recording video
To capture a still shot while recording a video, simply tap the screen while you are recording.
This will save a still image.
Change keyboards
To change keyboards (if you have additional keyboards installed), you can switch between them by pressing the small keyboard symbol in the top left of your screen. You will need to be in keyboard input mode (i.e. typing something) for this to work.
Note: you need to have more than one keyboard installed for this to work
Change quick response texts
The phone has the ability to send quick response text messages if your phone is ringing but you can't answer it.
To change these, go to your Dialer App - Settings - Quick responses. You can only have 4 of them and you may need to edit existing ones.
Change the backlight screen timeout
To change the backlight screen timeout, go to Settings - Display - Screen. Then choose the screen time out duration.
You can also tell the phone screen to always stay lit when it is plugged in via USB. Go to Settings - Developer Options. Then check Stay Awake.
Change the screen brightness
To change the screen brightness, start from the Homescreen and press Menu - Settings - Display - Brightness.
Then choose the desired brightness setting. You can also select Automatic brightness to let the phone decide for you.
If you have auto-brightness enabled, you can also press, hold and slide the top notification bar left and right. The brightness will increase and decrease accordingly.
Check phone status and battery usage
To find out information about Signal Strength, Network Information, Remaining Battery Time and Battery Usage (by Application), go to your Homescreen - Menu - Settings - About Phone.
Check the firmware version
To check your firmware version, start from the Homescreen and press Menu - Settings - About Phone- software version
This should list your Android version, Build number and Model Number.
Copy files between your phone and PC using WiFi
To copy files between your phone and PC, go to the Android Play Market and download an app called AirDroid.
This is an extremely useful App that connects your phone to your PC wirelessly, allowing you to move files and many, many other things.
Copying iTunes songs to Android
If you have decided to ditch your iPhone in favour of Android, then there is a simple way to take your iTunes music, playlists and album art with you.
Simply go the Android Marketplace and download a Free App called Easy Phone Tunes. You will also need the computer version of the software, so go to http://easyphonetunes.com and download it from there.
Then, when that is done, turn your phone into a USB storage device (this will vary from device to device, but instructions are on the website).
Once your phone is connected to your computer, open the computer version of the software and select your device from the Easy Phone Tunes list. Then follow the instructions to Sync your media
Create folders in your Quick Launch bar
If you have used up all of your Quick Launch spaces, then there is a trick.
Once it is full, press and drag an App from the homescreen and move it over the top of an App in the Quick Launch area. Then release your finger. This will create a folder containing the original App plus the new one. This is a great way to have access to regularly used App
Create shortcut to websites on your home screen
To create a shortcut to a website on your homescreen, go to your browser bookmarks.
Then long press on a site and select Add shortcut to Home
Customise your favourites tray
At the bottom of each homescreen is your favourites tray, which consists of 5 icons. You can customise it by adding icons to the tray. If it's full however, you will first need to remove some.
To remove an icon, simply press and hold an icon. Then drag it to your desktop.
Then to add a new one, simply drag an icon from your homescreen to the favourites tray.
Enable / disable vibrate / haptic feedback when you type
To disable / enable vibrate (also called haptic feedback) when you type or press the screen, go to Settings - Language & input - Settings.
Then uncheck Vibrate on keypress.
Enable sideload of Apps
If you want to install Apps outside of the Android Market (called sideloading), then go to Settings - Security - Unknown sources.
Note: use at your own risk.
Help, I have forgotten my unlock pattern
If you have forgotten your custom unlock pattern, then don't panic.
After 5 unsuccessful tries a button should appear saying 'Forgot pattern'. Press this and you will be asked to enter your Gmail username/password.
The phone will then ask for a new unlock pattern. If you don't have a Gmail account, then you might have to either call your carrier or factory reset your phone.
Hide folders or files
If you want to hide folders or files from being index or displayed, simple put a . (full stop / period) before the file or folder name.
Make volume / music louder
WARNING: Making your volume or music louder can damage your hearing.
Most phones have their volumes limited by local laws to protect our hearing. There is a way to boost your volume however. Go to the Android Market and download an App called Volume+ (Sound Boost). There is also a free version called Volume+ Free.
You will need to root your phone for this App to work.
Make your phone run faster
Here are the top 5 tips to make your phone run faster:
1) Use only essential widgets on your homescreen - each widget consumes memory and processing power which can slow your down your phone.
2) Uninstall apps that you don't use - after awhile your phone can get cluttered as some Apps are designed to always run in the background. If you rarely use an App, then uninstall it to free up memory and CPU resource.
3) Install Apps to your phone memory - if you have an SDCard, always install Apps to the phone memory, which can be accessed faster. If you have Apps on the SDCard, then move them back to the phone memory with an App called Move2SD available from the Play Market.
4) Use Static rather than Live wallpapers - Live wallpapers consume processing power and memory. Unless you really must have them, uninstall them.
5) Kill tasks occasionally - Some Apps will run in the background indefinitely unless you kill them. Most of them won't cause a problem, but it pays to check your running tasks from time to time. Hold down your Home key and check the Task Manager.
One last thing: Don't use Task Killers. Android manages tasks very well and Task Killers just make your phone unstable and can slow it down further
note this guide is mainy to help the people who didnt recieved a manual instructions booklet along with their phone like my country(INDIA)
SUPPORT THE SOFTWARE DEVELOPER'S IF YOU LIKE THE GAME / APP BUY IT
Wow thanks! Im gonna uninstall my task killer now.
Good job! Some of this are well known but many aren't so it should be sticky subject for all who are coming into Android from wherever hey are coming.
The taskkiller part should be put in red
Another one: manage your contacts in gmail. It is bscked up accesible from anywhere and so convenient. Much easier to edit from the computer after all.
Sent from my GT-I9100T using XDA
Awesome thread op. Thank you very much!
Sent from my SAMSUNG-SGH-I717 using xda premium
The calculator one only applies to the HTC calculator. In the AOSP on you swipe to the right to access advanced functions.
Sent from my HTC Wildfire using xda premium
nejc121 said:
The calculator one only applies to the HTC calculator. In the AOSP on you swipe to the right to access advanced functions.
Sent from my HTC Wildfire using xda premium
Click to expand...
Click to collapse
yes i have htc one v soo made a compilation of what has been known to me and what is facts
if anyone with new tips pls post here soo tht i can add to the op to help others
and also a request pls statehow to take screen shots on your device's because it's different on each device
dont just say thanks hit thanks if i helped
a true lfc supporter
and a former symbian lover
sent from my awesome HTC One V running rc 2.0 by CKPV5 -using xda premium
SUPPORT THE SOFTWARE DEVELOPER'S IF YOU LIKE THE GAME / APP BUY IT
Thanks paarthdesai. Did not know about the 'double spacebar to get a period'.
Another software to connect to computer is 'Software Data Cable'.
---------- Post added at 12:15 PM ---------- Previous post was at 12:11 PM ----------
Is there a way to save the dictionary on the sdcard and restore after full wipe/flashing custom rom?
the guide which I look for..sometimes I tend to forget small things and this guide could recall back
paarthdesai said:
yes i have htc one v soo made a compilation of what has been known to me and what is facts
if anyone with new tips pls post here soo tht i can add to the op to help others
and also a request pls statehow to take screen shots on your device's because it's different on each device
dont just say thanks hit thanks if i helped
a true lfc supporter
and a former symbian lover
sent from my awesome HTC One V running rc 2.0 by CKPV5 -using xda premium
SUPPORT THE SOFTWARE DEVELOPER'S IF YOU LIKE THE GAME / APP BUY IT
Click to expand...
Click to collapse
Stock ICS screenshot is Vol- and power.
I think some HTC phones have home and power
Sent from my Ainol Novo7 Elf using xda premium
k1p2n3g4 said:
Thanks paarthdesai. Did not know about the 'double spacebar to get a period'.
Another software to connect to computer is 'Software Data Cable'.
---------- Post added at 12:15 PM ---------- Previous post was at 12:11 PM ----------
Is there a way to save the dictionary on the sdcard and restore after full wipe/flashing custom rom?
Click to expand...
Click to collapse
backup the dictionary app via titanium backup app+ data
that should work
dont just say thanks hit thanks if i helped
a true lfc supporter
and a former symbian lover
sent from my awesome HTC One V running rc 2.0 by CKPV5 -using xda premium
SUPPORT THE SOFTWARE DEVELOPER'S IF YOU LIKE THE GAME / APP BUY IT
Very nice tips. Add one more, use Greenify App which silently hibernate your apps. It can save much battery and memory. A must have app.
Thanks
Handy tips
Thanks for the handy tips. Didn't know you could double tap for a full stop.
Should also include a homescreen icon for some websites. =]
Thanks! That task killer thing is really interesting!

[APP] [4.1+] Android Bot Maker - Do repetitive tasks easily

[BETA STAGE] Android Bot Maker​​
Don't expect a perfect version at this stage, any suggestion / bug report is welcome ​
Why is it for?
It's a FREE automation tool that allows you to turn your Android device into a bot, making repetitive tasks easily.​
Requirements:
Rooted device
Android 4.1+ (4.4 recommended)
Features:
Taps, swipes, pauses, text and physical keys input supported.
Wake-Lock to prevent screen turning off
Tasker Plugin integration (synchronous tasks)
Delayed start, gives you the necessary amount of time to do what you need before starting the execution.
Share / import your edited files (.csv extension files)
Add, select, switch, edit, and remove actions from the list.
Export it to a shell script, runnable from the terminal emulator or via ADB.
Add widgets to run prebuilt lists
FAQ / TIPS:
To edit an action long press it and change the desired values
Bot not stopping?? To avoid weird behaviours, please add at least one Sleep action just after any other action, setting at least the amount of time that the action consumes. (ie. 1 tap (5sec), > 1 Sleep (5sec).
ABM or CSV? ABM file extension is completely deprecated and you shouldn't use it. ABM files are not compatible between app updates so you should stick with CSV files instead.
Download:
https://play.google.com/store/apps/details?id=com.frapeti.androidbotmaker​
Please test it and report back
UPDATE: Version 3.6 is out!
- Finally added Tasker Plugin integration (synchronous tasks)
- Fixed layout bugs, soft keyboard bugs, and more
- Fixed redraw and change loss after orientation changed
- Widgets should work ok now
To review:
- Swipe actions on non kitkat devices​
XDA:DevDB Information
Android Bot Maker, App for the Android General
Contributors
frapeti
Version Information
Status: Beta
Current Beta Version: 3.6
Created 2014-05-27
Last Updated 2014-05-27
Excellent idea. Will be awesome with some polishing
Issues on my Verizon Galaxy S3.
1) Sleep timer doesn't seem to wait as many seconds as you enter
2) When using with an app that hides notification bar its a pain to switch focus and stop the script without 20 other apps being opened. Maybe use a floating icon interface like gameguardian or gamecih use? or allow a hot-key to be set for start-stop? Seems like it always ends up crashing while I'm trying to close apps that it opened. If I switch focus to the botmaker then depending on the script you can really mess things up... first effort I hadn't exported, saved, or even written down anywhere and was about 30 lines long... even though i immediately hit pause when i got to botmaker the auto-taps kept going and deleted about 7 lines of my script before it crashed and shutdown
3) A working directory to save and load scripts from would be great to have. The current import/export seems a little awkward
Will download when I get 4.1
BxMxK said:
Excellent idea. Will be awesome with some polishing
Issues on my Verizon Galaxy S3.
1) Sleep timer doesn't seem to wait as many seconds as you enter
2) When using with an app that hides notification bar its a pain to switch focus and stop the script without 20 other apps being opened. Maybe use a floating icon interface like gameguardian or gamecih use? or allow a hot-key to be set for start-stop? Seems like it always ends up crashing while I'm trying to close apps that it opened. If I switch focus to the botmaker then depending on the script you can really mess things up... first effort I hadn't exported, saved, or even written down anywhere and was about 30 lines long... even though i immediately hit pause when i got to botmaker the auto-taps kept going and deleted about 7 lines of my script before it crashed and shutdown
3) A working directory to save and load scripts from would be great to have. The current import/export seems a little awkward
Click to expand...
Click to collapse
Thanks, I will try to fix those with next updates, the most important bug I found is Android killing the process after certain amount of time
Sent from my GT-I9070 using xda app-developers app
This looks great. Would be great t if we could have a coordinate mapper of sorts. I dont know how to guess the x and y coordinates haha.
I has a sig
neuropsychosis said:
This looks great. Would be great t if we could have a coordinate mapper of sorts. I dont know how to guess the x and y coordinates haha.
I has a sig
Click to expand...
Click to collapse
Depending on your device and ROM you can do this already. On my galaxy s3 running CleanROM I have an option under Settings->Developer options->Show pointer location. This puts an overlay at the top of screen so you can see the X,Y of each touch.
Great App! Would like to the an option to repeat endless. Atm I have the same sequence over and over.
Meteox said:
Great App! Would like to the an option to repeat endless. Atm I have the same sequence over and over.
Click to expand...
Click to collapse
It repeats endlessly for me.
Just 4.1+ ?
I see definitely great potentials in this app. I will test it ASAP
Great Idea, can you please just add an a record option, It's really hard to know the coordinations i want.
Again, Wonderful Idea
Brilliant idea.
It would be good if you could record gestures for talkback and assign them to widgets / navbar shortcuts.
For example, I`d like to add a widget / icon in the navbar or home screen that would emulate swipe down - then - swipe right as this pauses talkback. My wife has brain damage and is blind and the gestures on Talkback are a right pain in the arse!
I have a Nexus 4 running PA with Franco kernel and I put the said action in, hit play and it kept going over and over. I was unable to pause or stop it. I had to reboot the handset.
That said, this is a marvellous idea. Being able to record complicated multi-point swipes and assign them to a softkey/widget would be fantastic. There could be a security risk (potentially) if the app records silently and stores touches on the pattern unlock.
Good work, OP, good work.
Works great! The was able to take the X Y from my CM10.1 D2VZW and have it drop an item from Ingress! Would like to be able to copy/paste action lines or repeat action etc for repetitive tasks.
Please keep up the good work! I'm very excited about this project.
Very nice app, congratulations :good:
I've recently been doing research on how to inject keyEvents to other applications for the Glass on Android port, and the only way I could find was to create an InputMethod.
Could you please give me some insight as to how you achieved this? Did you have to use the NDK or made use of some hidden API?
been waiting for something like this for so long! thanks so much dev! :good::good::good:
Have been looking for this for so long. Had looked at every inch of Google and couldn't find and there I just bumped into it today. Thanks Dev.
frapeti said:
Features:
Export it to a shell script, runnable from the terminal emulator or via ADB.
Click to expand...
Click to collapse
Do you plan a Tasker integration to run makros via Tasker?
Tasker
cramu said:
Do you plan a Tasker integration to run makros via Tasker?
Click to expand...
Click to collapse
I do believe it is possible to run scripts in Tasker already.
docinthebox said:
I do believe it is possible to run scripts in Tasker already.
Click to expand...
Click to collapse
Yes this. I saw this and came here to give the same idea. Making a tasker plug-in with this would be too cool.
Well, actually it is possible but a plugin would be much more comfortable.

[APP][2.2+]Assistive Zoom - One finger zoom control in any browser (ROOT) test needed

NOTE: This App is ROOT required
First time on Android device. This App allows you to send pinch to zoom in/out event on any window with JUST ONE FINGER. So when you are only one hand free, and want to zoom in a web page, Assistive Zoom can help you big time. Just hold on the floating zoom button of Assistive Zoom and move up/down to control the scale factor. This App works in any pinch to zoom enabled window or App.
Since this is my first release and due the the fragmentation of Android system, I am not sure it works on all kind of platforms. I have tested on my 2.2, 4.0, 4,1, 4.2 devices without a problem. So please help to test if it works on your device. If you experience any problem, please let me know. Also, any suggestion is welcome.
[Features]
☆ Works in any pinch to zoom enabled window
☆ Floating trigger button can be disabled/enabled at anytime
☆ Control scale ration at finest level
☆ 3 styles of trigger icon to choose from
☆ Customizable triggering and zooming options
☆ Works from Froyo (2.2) to latest Jelly Bean (4.2)
[Download]
(1) Playstore Link [HERE]
(2) Attachment below.
[Video By Robert Olejnik]
FAQ
(1) Why it doesn't work?
Ans: This App requires root to function properly. If you are greeted by message your device is not rooted upon launching the App first time, then you probably have an unrooted device.
(2) Why webpage scales unexpectedly?
Ans: Please enable alternative pinch action
(3) Why some text on a webpage is automatically selected after scale is finished?
Ans: Please disable alternative pinch action
Amazing. Never thought it was possible. Good job. It really comes in handy when i neesnit.
convenient. I think Button Savior can also have this button.
Very convenient! Although, I suggest that the icon for the zoom could look a bit more minimal and nice looking. Other than that, it's very good!
EpiclyEpic said:
Very convenient! Although, I suggest that the icon for the zoom could look a bit more minimal and nice looking. Other than that, it's very good!
Click to expand...
Click to collapse
I will add more zoom button styles in later release. If you want minimal design, there is a style called Hilo in trigger icon style. Also, you can set lower transparency value in auto dim transparency setting to make zoom button even less obstructive looking.
Great app! but one question
is there any way to change position of zoom button vertically?
nice app....really handy
fanfan-liu said:
is there any way to change position of zoom button vertically?
Click to expand...
Click to collapse
hi,
currently u cant move vertically. I am still finding a good way to do it. The problem is if zoom button is not centered vertically, user will get unequal distance in either vertical direction to triggernzoom action.
Sent from my SCH-I535 using xda app-developers app
good to know no failed case for now. looks like my 2.2 to 4.2 handling is good.
Sent from my SCH-I535 using xda app-developers app
jerryfan2000 said:
hi,
currently u cant move vertically. I am still finding a good way to do it. The problem is if zoom button is not centered vertically, user will get unequal distance in either vertical direction to triggernzoom action.
Sent from my SCH-I535 using xda app-developers app
Click to expand...
Click to collapse
If this is the main concern, then you will have same problem if you want to integrate this function in Button Savior.
Hi, new user to the forum and expecting my first tablet, Sony Xperia Tablet Z on Thursday.
I stumbled across this forum and thread while searching for Android apps that might be able to zoom in/out with one finger. I am a high level quadriplegic and use a capacitive mouthstick made by griffin for touchscreens since I cannot use my arms/hands/fingers. I am looking forward to seeing this app progress to the point that I can use it. Being new to tablets, I am not going to be comfortable rooting a brand new device that I have much to learn about, but maybe after a few weeks I'll be ready to experiment and help test this app.
I am just excited to see that someone is trying to develop such an app, so kudos to jerryfan2000!
fanfan-liu said:
If this is the main concern, then you will have same problem if you want to integrate this function in Button Savior.
Click to expand...
Click to collapse
yes, this feature would poses some challenges to me on Button Savior if I want to make it as easy and simple to use as it is right now on Assistive Zoom. So far, the best solution I figure out is to show a separate zoom button at middle of screen upon tapping on Zoom Button on Button Savior. So that would require user to press 2 times compared to 1 touch to zoom on Assistive Zoom.
Bob422 said:
Hi, new user to the forum and expecting my first tablet, Sony Xperia Tablet Z on Thursday.
I stumbled across this forum and thread while searching for Android apps that might be able to zoom in/out with one finger. I am a high level quadriplegic and use a capacitive mouthstick made by griffin for touchscreens since I cannot use my arms/hands/fingers. I am looking forward to seeing this app progress to the point that I can use it. Being new to tablets, I am not going to be comfortable rooting a brand new device that I have much to learn about, but maybe after a few weeks I'll be ready to experiment and help test this app.
I am just excited to see that someone is trying to develop such an app, so kudos to jerryfan2000!
Click to expand...
Click to collapse
It is glad to know it has potential to help you. Rooting is not as harsnor dangerous as you think. You still need to manually grant root permission to any App that requests root. And you can also unroot at any time if you need to send your device back for repair.
Sent from my SCH-I535 using xda app-developers app
Bob422 said:
Hi, new user to the forum and expecting my first tablet, Sony Xperia Tablet Z on Thursday.
I stumbled across this forum and thread while searching for Android apps that might be able to zoom in/out with one finger. I am a high level quadriplegic and use a capacitive mouthstick made by griffin for touchscreens since I cannot use my arms/hands/fingers. I am looking forward to seeing this app progress to the point that I can use it. Being new to tablets, I am not going to be comfortable rooting a brand new device that I have much to learn about, but maybe after a few weeks I'll be ready to experiment and help test this app.
I am just excited to see that someone is trying to develop such an app, so kudos to jerryfan2000!
Click to expand...
Click to collapse
Welcome.
I think this would be great for use with mice or the S-pen, but I have 2 suggestions that would improve on it.
1: allow (homescreen) shortcuts to enable, disable, and toggle the service so it's easy to automate it with apps like tasker and GMD S-pen control.
2: undo dimming upon "mouse over"/hover for supported devices like a mouse, or Samsung airview(Note 2/8, S4)
this would make the icon easier to find if it's set to hide completely.
edit:I noticed a small problem that makes this app useless in some apps.
in opera mobile classic it only switches between zoomed out and standard(double tap) zoom states, nothing in between.
and in the image viewer built into FX File Explorer you can only switch between zoomed in completely, and zoomed out completely.
I just started testing the pro version, and find it to be a great app. It's particularly useful to me when operating my Note II with one hand.
My first suggestion is to enable faster zoom speeds.
Tis is a really great idea. I tried it for five minutes and then bought the Pro version.
Well done and very many thanks for a great app!
thedicemaster said:
I think this would be great for use with mice or the S-pen, but I have 2 suggestions that would improve on it.
1: allow (homescreen) shortcuts to enable, disable, and toggle the service so it's easy to automate it with apps like tasker and GMD S-pen control.
2: undo dimming upon "mouse over"/hover for supported devices like a mouse, or Samsung airview(Note 2/8, S4)
this would make the icon easier to find if it's set to hide completely.
edit:I noticed a small problem that makes this app useless in some apps.
in opera mobile classic it only switches between zoomed out and standard(double tap) zoom states, nothing in between.
and in the image viewer built into FX File Explorer you can only switch between zoomed in completely, and zoomed out completely.
Click to expand...
Click to collapse
Hi,
Both suggestions are good Idea. I will take them. I don't have s pen device but I can try mouse over with my nexus 7. I am not sure is it possible to detect mouse over in Android but I will try.
For problem with opera and image view, you can try testing again with alternative pinch fix on or off. I will also try it on my phone. But if you have discontinuous zoom problem, alternative pinch action toggle is always the first to try.
mouse-over is definitely possible on android, many websites rely on this for their menu and those websites work fine in opera mobile classic if I use a stylus or mouse.
Photoshop touch, and many Samsung apps support it through airview.
and the xtralogic remote desktop app can track the mouse cursor so the remote cursor follows the android cursor.
and I did test the different zoom methods, but there was no difference.
particularly in FX it's annoying, because it's zoom levels are so far apart and it doesn't have double-tap zoom.
Nice app!!
This is a great app - I've been looking for something like this! Works well for my GSII on Android 4.1.2. I just saw that the Pro version allows to control whether or not the zoom is shown per app, so I'm going to have to give that a try. Ideally I'd just like to have the assistive zoom for a few apps: Chrome, Evernote, etc. ...
thanks!

Any way to get "swype down" to close apps in android? - + one more Q

Coming from Nokia's N9 myself I realy miss some of the feature of the Meego OS, and was wondering if these are available on android:
Is it possible to get a function to "swype" downwards to close an app ?.
Also is it possible to get a quick "mini menu" where the top status bar is - where one could togle things like blutooth, wifi, etc.
Also how does one "clear" the status messages without having to click everyone of them ?.
Is there also a way to close all apps (I know the Galaxy Tab have this feature - but I guess that is something built into some samsung stuff) ?
mmass23 said:
Coming from Nokia's N9 myself I realy miss some of the feature of the Meego OS, and was wondering if these are available on android:
Is it possible to get a function to "swype" downwards to close an app ?.
Also is it possible to get a quick "mini menu" where the top status bar is - where one could togle things like blutooth, wifi, etc.
Also how does one "clear" the status messages without having to click everyone of them ?.
Is there also a way to close all apps (I know the Galaxy Tab have this feature - but I guess that is something built into some samsung stuff) ?
Click to expand...
Click to collapse
My friend looking at your post, it seems like you are not familiar with the term called "rooting" and "custom roms".
Three of the features out of four you've asked are there in custom roms.
The swype down feature.. Looks interesting BUT i am afraid so far we haven't seen it in android yet.
eefo said:
My friend looking at your post, it seems like you are not familiar with the term called "rooting" and "custom roms".
Three of the features out of four you've asked are there in custom roms.
The swype down feature.. Looks interesting BUT i am afraid so far we haven't seen it in android yet.
Click to expand...
Click to collapse
Yea - know there is way to root it - but haven't realy looked into it as this is a company phone, so would like to keep it "clean" - was hoping maybe some launcher/apps would add this functionality.
However I found the nexus actually have a quick mini menu at least Not sure it provide everything I wanted but it's a start
thnx for the reply
Root + Xposed + Gravity will do all except swipe down.
mmass23 said:
Coming from Nokia's N9 myself I realy miss some of the feature of the Meego OS, and was wondering if these are available on android:
Is it possible to get a function to "swype" downwards to close an app ?.
Also is it possible to get a quick "mini menu" where the top status bar is - where one could togle things like blutooth, wifi, etc.
Also how does one "clear" the status messages without having to click everyone of them ?.
Is there also a way to close all apps (I know the Galaxy Tab have this feature - but I guess that is something built into some samsung stuff) ?
Click to expand...
Click to collapse
http://forum.xda-developers.com/xposed/modules/app-swipeback-v2-0-0-swipe-apps-t2592116
That's the closest thing I know of for swipe down to close apps. It can close apps by swiping from any edge you want, but requires the Xposed framework
Any gesture navigation app will give you the "swype downwards to close an app" ***current app
Just set the gesture
There are a couple of problems with the things you wish to do as far as I can see it:
1) swiping downwards to close an app will cause you some issues in the long run, specifically given that this is how you open the notification panel. From the videos of the N9 that I have seen, the close-app gesture is started from the edge of the screen, not somewhere in the middle? This is exactly how you open the notification panel...
2) It's not as quick as it could be (yet) but there is a mini-menu for toggles in the notification pull-down if you pull down with two fingers, or pull down with one then tap the icon in the top right
3) There should be a little icon looking like three staggered rectangles in the notification pull-down when you have multiple status messages. Tapping this should clear all status messages.
4) Closing all apps on Android is (generally) a bad thing to do. With Meego (and Maemo before it), all open applications are true multi-tasking so will be holding active RAM in use in the background so closing all running apps has a practical use (I used to use an N900). With Android, however, we actually only have a partial hybrid multi-tasking, where only apps with an API call to explicitly stay active will remain fully active in the background (eg. music playback). Everything else is put into a partial suspend state. If you keep fully closing everything, then Android will have to re-open it from ROM rather than RAM which will have a detrimental effect on your battery life. This is heavily paraphrased from an Android development engineer. As for Samsung, this is basically pandering to customer ignorance who still think that anything in the "recents" menu is draining their battery because that's how it works with Windows. To put it very bluntly, Android is better at memory management than you are
Unlike with Meego/Maemo, the entries in the Recents menu are not actually all open and active. As the name suggests, this is only a "history" list of apps you have had open since boot. The lower down this list, the more likely it may still be active, but not guaranteed.
Sorry if any of the above is borderline patronising, but I feel that this sort of Android RAM misinformation needs to be explained whenever I see it! :silly:
chaosdefinesorder said:
There are a couple of problems with the things you wish to do as far as I can see it:
1) swiping downwards to close an app will cause you some issues in the long run, specifically given that this is how you open the notification panel. From the videos of the N9 that I have seen, the close-app gesture is started from the edge of the screen, not somewhere in the middle? This is exactly how you open the notification panel...
2) It's not as quick as it could be (yet) but there is a mini-menu for toggles in the notification pull-down if you pull down with two fingers, or pull down with one then tap the icon in the top right
3) There should be a little icon looking like three staggered rectangles in the notification pull-down when you have multiple status messages. Tapping this should clear all status messages.
4) Closing all apps on Android is (generally) a bad thing to do. With Meego (and Maemo before it), all open applications are true multi-tasking so will be holding active RAM in use in the background so closing all running apps has a practical use (I used to use an N900). With Android, however, we actually only have a partial hybrid multi-tasking, where only apps with an API call to explicitly stay active will remain fully active in the background (eg. music playback). Everything else is put into a partial suspend state. If you keep fully closing everything, then Android will have to re-open it from ROM rather than RAM which will have a detrimental effect on your battery life. This is heavily paraphrased from an Android development engineer. As for Samsung, this is basically pandering to customer ignorance who still think that anything in the "recents" menu is draining their battery because that's how it works with Windows. To put it very bluntly, Android is better at memory management than you are
Unlike with Meego/Maemo, the entries in the Recents menu are not actually all open and active. As the name suggests, this is only a "history" list of apps you have had open since boot. The lower down this list, the more likely it may still be active, but not guaranteed.
Sorry if any of the above is borderline patronising, but I feel that this sort of Android RAM misinformation needs to be explained whenever I see it! :silly:
Click to expand...
Click to collapse
Overdose1986 said:
Any gesture navigation app will give you the "swype downwards to close an app" ***current app
Just set the gesture
Click to expand...
Click to collapse
lopezk38 said:
http://forum.xda-developers.com/xposed/modules/app-swipeback-v2-0-0-swipe-apps-t2592116
That's the closest thing I know of for swipe down to close apps. It can close apps by swiping from any edge you want, but requires the Xposed framework
Click to expand...
Click to collapse
martinsskutans said:
Root + Xposed + Gravity will do all except swipe down.
Click to expand...
Click to collapse
mmass23 said:
Yea - know there is way to root it - but haven't realy looked into it as this is a company phone, so would like to keep it "clean" - was hoping maybe some launcher/apps would add this functionality.
However I found the nexus actually have a quick mini menu at least Not sure it provide everything I wanted but it's a start
thnx for the reply
Click to expand...
Click to collapse
eefo said:
My friend looking at your post, it seems like you are not familiar with the term called "rooting" and "custom roms".
Three of the features out of four you've asked are there in custom roms.
The swype down feature.. Looks interesting BUT i am afraid so far we haven't seen it in android yet.
Click to expand...
Click to collapse
mmass23 said:
Coming from Nokia's N9 myself I realy miss some of the feature of the Meego OS, and was wondering if these are available on android:
Is it possible to get a function to "swype" downwards to close an app ?.
Also is it possible to get a quick "mini menu" where the top status bar is - where one could togle things like blutooth, wifi, etc.
Also how does one "clear" the status messages without having to click everyone of them ?.
Is there also a way to close all apps (I know the Galaxy Tab have this feature - but I guess that is something built into some samsung stuff) ?
Click to expand...
Click to collapse
Swipe down to close app is there in Xposed using swipe back module.
You can read that Swipe back has a feature to change thje swipe edge , top to bottom or vice versa
chaosdefinesorder said:
There are a couple of problems with the things you wish to do as far as I can see it:
1) swiping downwards to close an app will cause you some issues in the long run, specifically given that this is how you open the notification panel. From the videos of the N9 that I have seen, the close-app gesture is started from the edge of the screen, not somewhere in the middle? This is exactly how you open the notification panel...
2) It's not as quick as it could be (yet) but there is a mini-menu for toggles in the notification pull-down if you pull down with two fingers, or pull down with one then tap the icon in the top right
3) There should be a little icon looking like three staggered rectangles in the notification pull-down when you have multiple status messages. Tapping this should clear all status messages.
4) Closing all apps on Android is (generally) a bad thing to do. With Meego (and Maemo before it), all open applications are true multi-tasking so will be holding active RAM in use in the background so closing all running apps has a practical use (I used to use an N900). With Android, however, we actually only have a partial hybrid multi-tasking, where only apps with an API call to explicitly stay active will remain fully active in the background (eg. music playback). Everything else is put into a partial suspend state. If you keep fully closing everything, then Android will have to re-open it from ROM rather than RAM which will have a detrimental effect on your battery life. This is heavily paraphrased from an Android development engineer. As for Samsung, this is basically pandering to customer ignorance who still think that anything in the "recents" menu is draining their battery because that's how it works with Windows. To put it very bluntly, Android is better at memory management than you are
Unlike with Meego/Maemo, the entries in the Recents menu are not actually all open and active. As the name suggests, this is only a "history" list of apps you have had open since boot. The lower down this list, the more likely it may still be active, but not guaranteed.
Sorry if any of the above is borderline patronising, but I feel that this sort of Android RAM misinformation needs to be explained whenever I see it! :silly:
Click to expand...
Click to collapse
Thanks for the clarification appreciated
Yea the N9's screen is part of the swype system (the screen sides are curved), as it differs from swyping from the edge of the screen or within - it's the same from the sides, one can either swype from edge of the screen - flipping thru the apps that is open - or one can swype from just inside the edge to scroll thru f.ex images in an image viewer - the N9 also have a "notification" bar - or atleast a "top" bar, but that's activated only by a touch of the top line (where it shows status) - instead of dragging it down.
mmass23 said:
Thanks for the clarification appreciated
Yea the N9's screen is part of the swype system (the screen sides are curved), as it differs from swyping from the edge of the screen or within - it's the same from the sides, one can either swype from edge of the screen - flipping thru the apps that is open - or one can swype from just inside the edge to scroll thru f.ex images in an image viewer - the N9 also have a "notification" bar - or atleast a "top" bar, but that's activated only by a touch of the top line (where it shows status) - instead of dragging it down.
Click to expand...
Click to collapse
Clearly based on other responses there is an Xposed module that allows you to close and app with a downwards swipe, so my response may not therefore be the whole truth
With some sort of selectable "active area" of the Xposed swipe you might be able to get the best of both worlds; i.e. swipe from top left downwards to close current program, or top middle and top right to open notifications? (or any combination thereof of course!)
mmass23 said:
Coming from Nokia's N9 myself I realy miss some of the feature of the Meego OS, and was wondering if these are available on android:
Is it possible to get a function to "swype" downwards to close an app ?.
Also is it possible to get a quick "mini menu" where the top status bar is - where one could togle things like blutooth, wifi, etc.
Also how does one "clear" the status messages without having to click everyone of them ?.
Is there also a way to close all apps (I know the Galaxy Tab have this feature - but I guess that is something built into some samsung stuff) ?
Click to expand...
Click to collapse
try Jolla launcher
http://d-h.st/hTF

Categories

Resources