Android app name not being displayed

前端 未结 13 2316
梦谈多话
梦谈多话 2020-12-29 20:53

My Android app is not displaying the application name \"app_name\", instead its displaying the activity name \"title\". This is from my manifest file;

   <         


        
13条回答
  •  误落风尘
    2020-12-29 21:49

    You can only display one label at a time. Application label or Activity label.

    If you set a label and run an activity, you will see the Activity label.

    To see Application label, doesn't set android:label="@string/title" on Main activity.

提交回复
热议问题