Android Application Name Appears as Activity Name

前端 未结 6 2024
长发绾君心
长发绾君心 2020-12-15 17:27

I have reviewed the manifest for application, and under apps launcher it displays as Activity Name rather than its app name? Why is this. I have another application where w

6条回答
  •  伪装坚强ぢ
    2020-12-15 18:05

    When you create an Activity via Eclipse, the property android:label inside your activity is automatically set to "@string/your_activity_name" in the AndroidManifest.xml. Adding the intent filter to provide a launcher for this activity, your launcher gets the same label as your Activities android:label.

    If you want to label the launcher with your application name, you should change the Activities android:label to something like "@string/app_name".

提交回复
热议问题