8,881 questions
0 votes
0 answers
27 views
Actionbar logo appears cropped from the top
Please help me Since I upgraded my target SDk to 35,Actionbarlogo became cropped and does not appear full. When I back to 34Sdk it shows correctly&normally. My Theme Hi Please help me Since I ...
0 votes
1 answer
61 views
Android Navigation - Is there a better way of changing the App Action Bar back button color to white?
I've been trying to get the back button to become white using the default App Bar in my Android App. I looked at and tried a number of suggestions in this post as well and ran up against the following ...
0 votes
1 answer
35 views
How to change center-aligned text on Android action bar programmatically?
I can achieve this center-aligned text on Android action bar with these codes: Activity protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); ...
0 votes
0 answers
129 views
How to make focusable items inside androidx.appcompat.app.ActionBar
I want to adapt our application for t9 keyboard,but i can't find way,how to make androidx.appcompat.app.ActionBar items focusable,to move errow keys between menue items,or between menue items and ...
0 votes
0 answers
22 views
Optionsmenu / Actionbar / hamburger / 3-dot menu not reachable by directional pad or keyboard
I use an action bar with a hamburger and 3-dot menu in my app. Below this are tabs to navigate between different fragments. Only the tabs and the content within them can be accessed via keyboard or ...
1 vote
0 answers
109 views
ActionBar in OssLicensesActivity covering content
I am using the OSS Licenses Gradle Plugin to include references to OSS licenses in my app. Unfortunately, the ActionBar in the OssLicensesActivity covers the license text on some devices. The ...
0 votes
0 answers
42 views
Unable to Remove Default Action Bar Behavior Before App Initialization on Android Using Custom Activity in Qt 6.7
I am developing a Qt-based Android application and attempting to remove the default action bar that briefly appears with the activity name before the app fully loads. Despite following Qt and Android ...
18 votes
7 answers
8k views
Actionbar in Android 15 is overlapping activity contents
I'm not defining any Toolbar in my XML files and I'm using the default ActionBar defined at theme: <style name="AppBaseTheme" parent="@style/Theme.AppCompat.DayNight.DarkActionBar&...
0 votes
1 answer
39 views
Menu and action bar not appearing on some devices
My app, based on a FragmentActivity, uses an ActionBar but it appears or not depending on the device it runs on. With the Android Studio emulators, either running under Android 13 or 14, the ActionBar ...
0 votes
1 answer
247 views
How to Completely Hide the Back Button (Up Button) in a Toolbar in Android?
I'm working on an Android app with one MainActivity and three fragments. I've successfully disabled the back button (Up button) in the toolbar, but it still gets rendered in the toolbar. I want to ...
-1 votes
1 answer
35 views
How to apply the correct theme color to a custom up indicator in the action bar?
How do I apply the correct color for the action bar in supportActionBar.setHomeAsUpIndicator()? I wind up getting the default icon tint color and not the action bar tint color when inflating and ...
2 votes
3 answers
656 views
How to hide action bar after splash screen in jetpack compose?
I have followed this article Splash screen for below all API levels with icon without any activity. support splash screen for both devices below android 12 and above. The splash screen works fine in ...
0 votes
1 answer
52 views
Action bar is not being hidden
So i am making a mobile app and in my main menu the actionbar/tittle bar is still showing after many atempts to hide it. I tried to change the themes witch did not work , i tried to hide it in the ...
1 vote
1 answer
134 views
Laggy performance when updating padding on scroll (Collapsing TopBar)
I have a Scaffold with a LargeTopBar and nestedScroll to collapse the bar on content scroll, everything looks good on simulator but performance is very laggy on real device (running in release mode).- ...
0 votes
1 answer
628 views
How to apply blur effect to content under ActionBar in Jetpack Compose?
So far I have a simple Scafold with a transparent ActionBar & StatusBar, and my content scrolls nicely under both bars, including a scrollBehavior to change the top color to a transparent black. ...