I've recently updated my app extending Appcompatactivity
in my Activities
. Since then, the Actionbar
is gone when I launch an external library Intent.
For example, I'm using the HockeyApp
SDK to launch their FeedbackActivity
Here is my code:
FeedbackManager.showFeedbackActivity(this, Uri.fromFile(file));
And here a screenshot (you can see the ActionBar
is gone).
It used to work before until I started extending Appcompatactivity.
For the rest of Activities
it works. The ActionBar is gone
only when I launch an external library Intent
.
Any ideas?