프로그래밍 언어/Android

Android 앱의 이름을 변경하는 방법

Rateye 2021. 9. 15. 10:34
728x90
반응형
질문 : Android 앱의 이름을 변경하는 방법은 무엇입니까?

새 프로젝트를 생성하지 않고 앱의 이름 (런처 앱 라벨)을 변경할 수있는 방법이 있나요?

참고 : 앱 이름과 모바일 홈 화면의 런처 아이콘에 표시되는 라벨은 다를 수 있습니다.

예 : 내 앱이있는 내 모바일의 홈페이지에 아이콘과 Foo라는 이름이 있지만 이름을 Bar로 변경하고 싶습니다. 할 수 있습니까?

답변

그래 넌 할수있어. AndroidManifest.xml 의 애플리케이션 노드에서 android:label 필드를 변경합니다.

참고 : 스플래시 화면 을 추가하고

<activity
    android:name=".SplashActivity"
    android:label="@string/title_activity_splash_screen"
    android:theme="@style/AppTheme">
    <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <action android:name="android.intent.action.VIEW" />
        <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>
</activity>

시작 화면으로 이동하면 시작 관리자 아이콘 이름이 시작 화면 클래스 이름으로 변경됩니다.

레이블을 변경했는지 확인하십시오.

android:label="@string/title_activity_splash_screen"
                                            

strings.xml 파일의 스플래시 화면 활동에서. Res-> Values-> strings.xml에서 찾을 수 있습니다.

여기에서 더 많은 것을보십시오.

출처 : https://stackoverflow.com/questions/5443304/how-to-change-an-android-apps-name
728x90
반응형