-
Notifications
You must be signed in to change notification settings - Fork 51
Open
Description
I am attempting to hide the action bar (title bar) in my Turbo Native application in Android Studio but the usual way doesn't seem to be working.
I am using the call inside my MainActivity.kt:
supportActionBar?.hide()
Full code:
package com.strategiccoach.winstreak
import android.os.Bundle
import androidx.appcompat.app.AppCompatActivity
import dev.hotwire.turbo.activities.TurboActivity
import dev.hotwire.turbo.delegates.TurboActivityDelegate
class MainActivity : AppCompatActivity(), TurboActivity {
override lateinit var delegate: TurboActivityDelegate
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
supportActionBar?.hide()
setContentView(R.layout.activity_main)
delegate = TurboActivityDelegate(this, R.id.main_nav_host)
}
}
And I've also made sure the themes.xml has no action bar set like so:
<resources xmlns:tools="http://schemas.android.com/tools">
<!-- Base application theme. -->
<style name="Base.Theme.myapp" parent="Theme.Material3.DayNight.NoActionBar">
<!-- Customize your light theme here. -->
<!-- <item name="colorPrimary">@color/my_light_primary</item> -->
</style>
<style name="Theme.myapp" parent="Base.Theme.myapp" />
</resources>
But neither of these seem to work. Is something in Turbo setting the action bar?
Metadata
Metadata
Assignees
Labels
No labels