So here's my problem, I've got a recipe app in which I want the user to be able to hit a button and then be sent to the stock android countdown app.
I can create my own timer but I think that it would be nicer to use the one that comes with the device (I wouldn't be able to make it as nice).
As far as I can tell every android device comes with one, yet I am not sure how to access them (all I want to do is launch them). Does anyone know of a specific package name or the best way to access the Time?
EDIT:
I've looked around quite a bit without success, what I'm looking to do is something like this :
PackageManager pm = getPackageManager();
Intent i = pm.getLaunchIntentForPackage("com.example.package.Timer");
startActivity(i);
Or anything else that may work.