앱 이름을 따로 변경하지 않으면 자동으로 프로젝트 이름으로 지정되어 버린다.
완성된 앱의 배포용이름을 변경 할 수 있다.
수정할곳.
1. 파일 AndroidManifest.xml을 연다.
2. 코드 상단의 <application>안의 label과 그 아래 <activity>안의 lable의 @string/app_name부분을 수정한다.
수정전.
...
<application
android:theme="@android:style/Theme.NoTitleBar"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:configChanges="keyboardHidden|orientation"
android:name=".ChobbangActivity"
android:label="@string/app_name"
android:screenOrientation="landscape">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
...
...
<application
android:theme="@android:style/Theme.NoTitleBar"
android:icon="@drawable/ic_launcher"
android:label="쵸코크림빵" >
<activity
android:configChanges="keyboardHidden|orientation"
android:name=".ChobbangActivity"
android:label="쵸코크림빵"
android:screenOrientation="landscape">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>...
수정해야할 곳, android:label이 두군데 이다.
첫번째 <application 안의 android:label 은 어플의 내부 파일명이다. 설치시 화면에 노출되는 부분이 아니다.
단, 어플리케이션 관리 화면에 목록엔 여기 설정된 이름의 파일명으로 보여진다.
두번째 <activity 안의 android:label 은 어플 설치시 화면에 나타나는 이름이다. 영문/한글 모두 원하는 이름으로 변경 할 수 있다.
'전체카테고리' 카테고리의 다른 글
iPad3 아이콘 xCode4 에 등록하기 (0) | 2012.03.27 |
---|---|
iPad3 아이콘 크기 (0) | 2012.03.27 |
iPhone/iPad Touch: Icon.png:icon dimensions (114 x 114) don't meet the size requirements. The icon file must be 57x57 pixels, in .png format. (0) | 2012.03.05 |
icon dimensions (0 x 0) don't meet the size requirements. The icon file must be 57 x 57 pixels, in .png format (0) | 2012.03.05 |
java.io.IOException: Received authentication challenge is null (0) | 2012.02.28 |
Google Code Jam Korea 2012 (0) | 2012.02.22 |
chobbang.php -> chobbang.bread: apache(아파치) 확장자 추가 (0) | 2012.02.22 |
MAC: JAVA JDK 설치 (0) | 2012.02.22 |
댓글