Android app name not being displayed

前端 未结 13 2138
梦谈多话
梦谈多话 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:59

    This question explained the reason for this to me:

    Naming my application in android

    The launcher actually shows android:label and android:icon for activity(ies) that declare:

    <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>
    

    so application label is of no use.

    0 讨论(0)
提交回复
热议问题