I want to hide this when my app is open. I want my application to always appear on top. Thank you.
Related
I just want to show an alert box at just killing the application in android.
It's like a Notepad application, if we simply kill the app (on clicking the close button) then we get an alert box asking for save changes.
I just want to add same thing in my application.I have tried onBackPressed() and its working fine on clicking on Back Button. But I need same thing on closing the application.
There is now way to be sure if the app is being closed but you can place a check if the application is in foreground or not which is a better metric IMHO as this tells you when the user moved away from your application.
To check the ProcessLifeCycleOwner this will help you find state of process. You can check this Github sample or this stackoverflow question in how to use it.
image
I am sharing a link from another app like youtube to my app but Now it opens my app and then saves the link. My need is to not save the link without opening the app
There are two solutions:
You don't need dialog or anything like it. Just make the activity fully transparent, process data and finish it. Optionally, you can show Toast as a feedback. It would look and feel like everything is processed in the background.
You need dialog or some kind of UI. For this, you can use floating windows that you can show over other apps. Many apps use this approach such as Pocket, etc. There is complete guide on how to do it: https://localazy.com/blog/floating-windows-on-android-1-jetpack-compose-room
I want the App to have predefined gestures like: goOnline(); that opens WhatsApp,
then click on the first chat, read the message and reply with a Dialogflow Interaction.
Yet, i did find something about WhatsApp not having an API and not letting it do things with it Programmatically, so i want to have an app that runs in the background or the foreground, that just controls the phone itself with gestures that do that for me.
Phone battery or having the screen on forever isn't a Problem. It will always be On and Charging.
For example, goOnline(); just draws upwards from the bottom, opening the App Drawer.
Then it clicks on the App that is pre-defined with coordinates, then opens the first chat, once again, with coordinates. Then click on the bottom chat field so the keyboard opens, write something random (Dialogflow) Then answer by pressing the enter key to and then go back to the Chat overview (pressing the back button at the top left) Close WhatsApp again by pressing the home button at the bottom.
Now my actual question and tl;dr:
Can i make scripted paths like swiping and clicking in Android Studio with coordinates and build them into functions?
I hope someone can help.
I want to receive the broadcast in my android app whenever soft-keyboard show/hide from any other application.
That is not possible. If the application you're writing about doesn't expose such events, then you're out of luck. Besides, soft keyboard is a separate app and it doesn't have events for showing or hiding it. That's why even if you would only like to detect these events in your app, you would need hacks to handle that. Here you can find an idea: SoftKeyboard open and close listener in an activity in Android?
I have created an Android app that I am also running on BB10 devices. It has some functionality regarding call logs, but one of the most important functions is that the app has to open (assuming it's in the background currently) whenever a phone call has ended. Worded differently, it needs to foreground itself whenever a phone call has ended. I currently have it creating a dialog that opens within the app, but it will not appear until the app has been manually foregrounded. I do not have a requirement as to how it opens itself, but I do need a yes / no dialog to appear when it does.
Is there any way to have the app auto-open itself? Or is that not possible?