I just want an app that runs some code to shortcut to a certain part of ics. How can I run this code at run time without having to launch the main.xml? I see the manifest launches the main.xml but that is about all I know.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Have you heard of Service Components in Android ? Service allows you to do work in background without disturbing your current GUI. You can do most of all the work that you want to hide from the user in GUI.
Have a look at example of Audio playing code, ( Original Source from Makarana’s Blog. )