Launcher app name android

Как изменить имя приложения Android?

Есть ли способ изменить имя (Launcher App Label) приложения, не создавая новый проект?

Примечание. Название приложения и метка, отображаемая на значке запуска на главном экране мобильного телефона, могут различаться.

Пример: на домашней странице в моем мобильном телефоне, где находятся мои приложения, у меня есть значок и имя Foo, но я хочу изменить имя на Bar. Я могу сделать это?

Да, ты можешь. Изменяя android:label поле в вашем узле приложения в AndroidManifest.xml .

Примечание. Если вы добавили заставку и добавили

на вашем экране-заставке имя иконки запуска изменится на имя вашего класса класса экрана-заставки.

Пожалуйста, убедитесь, что вы изменили метку:

в вашей активности на заставке в файле strings.xml. Его можно найти в Res -> Values ​​-> strings.xml

Есть ярлык android: для приложения и ярлык android: для запуска. Первый — это то, что вы видите в разделе «Настройки» -> «Приложения» -> «Управление приложениями» на вашем устройстве. Последнее — это то, что вы видите в разделе «Приложения» и, соответственно, в любом ярлыке для вашего приложения, например

Это простая вещь в Android Studio,

перейдите в папку res -> values ​​-> strings.xml

измените имя приложения (в приведенном ниже примере: MitsuhoSdn Bhd) на любое новое имя, которое вы хотите.

Я заметил, что есть некоторые различия в том, как имя приложения может появляться в устройствах Lollipop. До Lollipop у вас могут быть разные имена приложений с этим:

В Lollipop это будет так:

В Lollipop android:label фильтр намерений в принципе бесполезен, тогда как заголовок панели действий и панель запуска значков идентичны. Итак, если вы хотите другой заголовок на панели действий, у вас нет выбора, кроме как установить динамически

Возможно, вам также придется изменить название вашего основного действия «android: label», как описано в разделе «Наименование моего приложения в Android».

Это зависит от того, что вы хотите сделать. Я лично хотел переименовать свой проект, чтобы он не отображал MainActivity в верхней части приложения и под значком в меню моего телефона.

Для этого я зашел в файл Android Manifest.xml и отредактировал

И отредактировал, android:name=».Mynewname» а затем отредактировал строку title_activity_main в файле strings.xml в соответствии с именем.

Надеюсь, это поможет!

если вы хотите изменить имя приложения под значком запуска, измените его android:label=»@string/app_name» в теге активности основного запуска

И если вы хотите изменить имя приложения внутри

Настройки -> Диспетчер приложений -> скачано

где у вас есть все установленные приложения, затем измените это android:label=»@string/app_name» внутри тега приложения

Источник

How can I change the app display name build with Flutter?

I have created the app using Flutter create testapp. Now, I want to change the app name from «testapp» to «My Trips Tracker». How can I do that?

I have tried changing from the AndroidManifest.xml , and it got changed, but is there a way that Flutter provides to do that?

14 Answers 14

Android

Open AndroidManifest.xml (located at android/app/src/main )

Open info.plist (located at ios/Runner )

Читайте также:  Что делать если файл не удаляется андроид

Don’t forget to run

UPDATE: From the comments this answer seems to be out of date

The Flutter documentation points out where you can change the display name of your application for both Android and iOS. This may be what you are looking for:

For Android

It seems you have already found this in the AndroidManifest.xml as the application entry.

Review the default App Manifest file AndroidManifest.xml located in /android/app/src/main/ and verify the values are correct, especially:

application: Edit the android:label in the application tag to reflect the final name of the app.

For iOS

See the Review Xcode project settings section:

Navigate to your target’s settings in Xcode:

In Xcode, open Runner.xcworkspace in your app’s ios folder.

To view your app’s settings, select the Runner project in the Xcode project navigator. Then, in the main view sidebar, select the Runner target.

Select the General tab. Next, you’ll verify the most important settings:

Display Name: the name of the app to be displayed on the home screen and elsewhere.

Write file pubspec.yaml:

You can get the same result as editing AndroidManifes.xml and Info.plist .

You can change it in iOS without opening Xcode by editing the project/ios/Runner/info.plist CFBundleDisplayName to the String that you want as your name.

FWIW — I was getting frustrated with making changes in Xcode and Flutter, so I started committing all changes before opening Xcode, so I could see where the changes show up in the Flutter project.

Review the default app manifest file, AndroidManifest.xml , located in /android/app/src/main

Edit the android:label to your desired display name

There are several possibilities:

1- The use of a package:

I suggest you to use flutter_launcher_name because of the command-line tool which simplifies the task of updating your Flutter app’s launcher name.

Usage:

Add your Flutter Launcher name configuration to your pubspec.yaml file:

After setting up the configuration, all that is left to do is run the package.

If you use this package, you don’t need modify file AndroidManifest.xml or Info.plist.

2- Edit AndroidManifest.xml for Android and info.plist for iOS

For Android, edit only android:label value in the application tag in file AndroidManifest.xml located in the folder: android/app/src/main

Code:

Screenshot:

For iOS, edit only the value inside the String tag in file Info.plist located in the folder ios/Runner .

Code:

Screenshot:

Do a flutter clean and restart your application if you have a problem.

By default, when a flutter app gets installed, the app name on the launcher is your Flutter project name. To change that to your desired application name on Android or iOS both, you need to change AndroidManifest.xml and Info.plist respectively. here is a two way to achieve this

1 By plugin

You can use a flutter rename plugin. It helps you to change your flutter project’s AppName and BundleId for different platforms, currently only available for iOS, Android and macOS

You can change the bundleId and appName in the following steps

Default Usage if you dont pass -t or —target parameter it will try to rename all available platform project folders inside flutter project.

Читайте также:  Rode wireless go 2 android

Run this command inside your flutter project root.

Custom Usage if you want to run commands directly (without using pub global run) ensure you add system catche bin directory to your path

To target a specific platform use the «—target» option. e.g.

2 By manual

For Android

App Name is reflected under Android>src>main>Androidmanifest.xml The label name in the Android manifest is responsible for giving the App Name for Android Application

Navigate to the : android/app/src/main/AndroidManifest.xml

The Androidmanifest.xml can now be modified. Choose the

For Package Name

This portion represents the actual Android file naming system. Important information like Launcher Icon and App name can be controlled here. Modify the android:label to change the App Name only.

For iOS

For iOS, open info.plist . Change CFBundleName (Bundle Name).

Go to the Xcode project folder and open Info.plist for edit (in Xcode you can choose Open As > Source Code in the file context menu). All we need is to edit the value for key CFBundleName . It’s a user-visible short name for the bundle.

Navigate to the: project/ios/Runner/Info.plist

Find the CFBundleName . This denotes the Key that holds the app name. The app name now can be changed by modifying the below that.

That’s it. By having these changes, That’s achieved, an updated application name in the launcher when an app gets installed on a device. your new app name will be displayed on your phone now.

Источник

How to change an Android app’s name?

Is there a way to change the name (Launcher App Label) of an app without creating a new project?

Note: Name of the App and The label shown on the Launcher Icon on Home Screen on Mobiles can be different.

Example: On the home page in my Mobile where my apps are, I have an icon and the name Foo, but I want to change the name to Bar. Can I do this?

20 Answers 20

Yes you can. By changing the android:label field in your application node in AndroidManifest.xml .

Note: If you have added a Splash Screen and added

to your Splash Screen, then the Launcher Icon name will be changed to the name of your Splash Screen Class name.

Please make sure that you change label:

in your Splash Screen activity in your strings.xml file. It can be found in Res -> Values -> strings.xml

There’s the android:label for the application, and the android:label for the launch activity. The former is what you see under Settings -> Applications -> Manage Applications on your device. The latter is what you see under Applications, and by extension in any shortcut to your application, e.g.

This is a simple thing in Android Studio,

go to: res folder -> values -> strings.xml

change the app_name (in the bellow example:MitsuhoSdn Bhd) to any new name you want.

I noticed there are some differences in how the app name can turn up in Lollipop devices. Before Lollipop, you can have different app names with this:

In Lollipop, it will be like this:

In Lollipop, android:label in intent-filter is basically useless, while actionbar title and icon launcher is identical. So, if you want a different title in actionbar, you have no choice but to set dynamically

Читайте также:  On post create android

You might have to change the name of your main activity «android:label» also, as explained in Naming my application in android

It depends what you want to do. I personally wanted to rename my project so it didn’t say MainActivity at the top of the app and underneath the icon on my phone menu.

To do this I went into the Android Manifest.xml file and edited

And edited the android:name=».Mynewname» and then edited the string title_activity_main in the strings.xml file to match the name.

Hope that helps!

if you want to change app name under launcher icon then change this android:label=»@string/app_name» inside your Main Launcher activity tag

And if you want to change app name inside

Settings -> Application manager -> downloaded

where you have all installed applications then change this android:label=»@string/app_name» inside application tag

To change the name of your Android application in Android Studio or Eclipse , you have to change the value of the property android:label defined inside the node in AndroidManifest.xml

by default the name of the application is referenced to a string defined in strings.xml file, for example:

so, we have to change the value inside the strings.xml file:

To change android app’s name , go to activity which is launcher activity and change its label like I have done above in my code.

Nevermind I found it. It can be done in the manifest file under application just set the android label. Was thrown off at first becasue it didn’t change my shortcut of the application’s name.

follow the steps:(let I assuming you have chosen Android view) app>res>values>strings

If you’re using android studio an item is under your strings.xml

It’s better to change the name here because you might have used this string somewhere.Or maybe a library or something has used it.That’s it.Just build and run and you’ll get new name.Remember this won’t change the package name or anything else.

Edit the application tag in manifest file.

Change the label attribute and give the latest name over there.

  1. Go to Strings.xml file under values.
  2. Change the app_name tag to your app_name to want and it is all set, you will be able to see the name you change now.

Yes Of-course. Android Supports to change the name of the App before making build just like iOS (Build Configuration). You can change it by Modifying the Android manifest file for the project.

The change in Manifest file did not change the App name,

but changing the Label attribute in the MainLauncher did the trick for me .

Old question but also now relative to Xamarin Android development:

As Xamarin allows for attributes to be used for adding items into the manifest, you may need to open your MainActivity.cs file and change the Label tag to your application’s name:

Note: This attribute will override written android:label= tags in your manifest file as I found out whilst archiving the app ready for release so be sure to change this attribute too.

Источник

Оцените статью