How do I make an app automatically run on booting up/turning on my tablet?
How do I open an from another app? In order words I am running "app A" and while running that, I want to open "app B" from with "app A". Is it possible.
Eg. If an "app A" contains books; I want to put a button at the bottom of "app A" screen that links to "app B" which is a dictionary. When done with "app B", I can close it and automatically, I am back to "app A"
You will need to create a service and set it to "start at boot", the service will start your app.
How do I open an from another app? In order words I am running "app A" and while running that, I want to open "app B" from with "app A". Is it possible.
Eg. If an "app A" contains books; I want to put a button at the bottom of "app A" screen that links to "app B" which is a dictionary. When done with "app B", I can close it and automatically, I am back to "app A"
1. Use a service and check Project - Service properties - Start at boot.
2. You should create an Intent with the target application component (package name and activity) and then call StartActivity.