Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: action bar issue #441

Merged
merged 5 commits into from
Jan 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## XX.XX.XX
* Mitigated an issue where, the action bar was overlapping with the content display.

## 24.7.8
* Added a config option to content (setZoneTimerInterval) to set content zone timer. (Experimental!)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@ public class TransparentActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
Log.d(Countly.TAG, "[TransparentActivity] onCreate, content received, showing it");

// there is a stripe at the top of the screen for contents
// we eliminate it with no action bar full screen and this adds more smoothness
// the stripe is because of our transparency
setTheme(android.R.style.Theme_DeviceDefault_NoActionBar_Fullscreen);
super.onCreate(savedInstanceState);
overridePendingTransition(0, 0);

Expand Down
Loading