开发者

Android Program Name - What determines this name in Eclipse?

开发者 https://www.devze.com 2023-04-12 04:21 出处:网络
Very simple question here: I have an a开发者_JAVA百科ndroid project in Eclipse. Not understanding how packages work, I see a hundred different names for my project floating around.

Very simple question here:

I have an a开发者_JAVA百科ndroid project in Eclipse. Not understanding how packages work, I see a hundred different names for my project floating around.

Which is the specific attribute of the project that determines the name of the app as the user sees it on their phone?

As a follow up, how do I modify this.

Thanks


In your AndroidManifest.xml

Look for the line

<application android:icon="@drawable/app_icon" android:label="@string/app_name" ... >

The attribute of the application android:label defines what the name of the app is on the device and the android:icon attribute defines what is used for the icon in the launcher. In this case, it is saying the android:label is referencing a value app_name of the type String. This will be located in

/res/values/strings.xml

something like

<string name="app_name">Hello World App</string>
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号