Hi..
I am trying to implement a Button which when clicked takes u to the HOME Screen on EMULATOR.
[b]for ex: to reach GALLERY on button click .. u do the following
Uri target = Uri.parse("content://media/external/images/media");
Intent intent = new Intent(Intent.ACTION_VIEW,target);
startActivity(intent);
what is to be done for HOME Screen??[/b]

