Android Studio: New activity opens as blank screen

后端 未结 5 1524
礼貌的吻别
礼貌的吻别 2021-01-11 15:00

Hello!
I\'m just starting in Android Studio. I searched for a matching question but no joy, please yell out if you\'ve seen this one already!

My main activity ha

5条回答
  •  滥情空心
    2021-01-11 15:24

    It sometimes happens when instead of overloading

    protected void onCreate(Bundle savedInstanceState) {
    

    you end up overloading

    public void onCreate(@Nullable Bundle savedInstanceState, @Nullable PersistableBundle persistentState) 
    

    instead. Make sure the onCreate with only savedInstanceState as a argument is overloaded.

提交回复
热议问题