mirror of
https://github.com/nextcloud/talk-android.git
synced 2024-11-23 13:35:33 +03:00
fix navigation bar color for call screen.
remove blue launcher screen for calls. Signed-off-by: Marcel Hibbe <dev@mhibbe.de>
This commit is contained in:
parent
7293d63485
commit
8fc963290b
2 changed files with 5 additions and 0 deletions
|
@ -58,6 +58,7 @@ class MagicCallActivity : BaseActivity() {
|
|||
override fun onCreate(savedInstanceState: Bundle?) {
|
||||
super.onCreate(savedInstanceState)
|
||||
NextcloudTalkApplication.sharedApplication!!.componentApplication.inject(this)
|
||||
setTheme(R.style.CallTheme)
|
||||
|
||||
requestWindowFeature(Window.FEATURE_NO_TITLE)
|
||||
window.addFlags(
|
||||
|
|
|
@ -42,6 +42,10 @@
|
|||
<item name="android:navigationBarColor">@color/bg_default</item>
|
||||
</style>
|
||||
|
||||
<style name="CallTheme" parent="AppTheme">
|
||||
<item name="android:navigationBarColor">@color/grey950</item>
|
||||
</style>
|
||||
|
||||
<style name="ErrorAppearance" parent="@android:style/TextAppearance">
|
||||
<item name="android:textColor">@color/nc_darkRed</item>
|
||||
<item name="android:textSize">12sp</item>
|
||||
|
|
Loading…
Reference in a new issue