I am trying to write a class BaseActivity to handle a couple of generic behaviours.
One of them is to catch the click on the application icon and to rederict to the first activity.
This sounds simple, but this BaseActivity will be in a library project. I cannot use an explicit intent (defined by a class). Instead I'm trying to use a generic intent:
@Override
public boolean onOptionsItemSelected(MenuItem item) {
if (item.getItemId() == android.R.id.home) {
// app icon in action bar clicked: go back home
Intent intent = new Intent(Intent.ACTION_MAIN);
intent.addCategory(Intent.CATEGORY_LAUNCHER);
intent.setPackage(getPackageName());
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(intent);
return true;
} else {
return super.onOptionsItemSelected(item);
}
}
My problem is that I'm getting an ActivityNotFoundException and I don't understand why.
What can I do?
