Activity did not call finish? (API 23)

后端 未结 8 1700
渐次进展
渐次进展 2020-12-08 06:47

I am getting the following error and i have no clue as to why its happening.

Error:

08-23 17:07:46.533  22454-22454/com.a.b.c E/Andr         


        
8条回答
  •  春和景丽
    2020-12-08 07:28

    where android 23> https://www.youtube.com/watch?v=NAcUGwCkrcs

    Manifest:

    android:theme="@android:style/Theme.Translucent.NoTitleBar"
    Activity extends from Activity. Not AppCompatActivity.
    

    and for version >= 23

    if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP){     
        getWindow().setStatusBarColor(getResources().getColor(android.R.color.transparent))}
    

提交回复
热议问题