我想知道如何改变在Android工作室的启动器图标。
当前回答
我们可以在应用程序标记中替换AndroidManifest文件中的代码
android:icon="@drawable/logo"
其他回答
我用这个工具创建了图标:
https://romannurik.github.io/AndroidAssetStudio/index.html
在我下载这些之后(它们已经被预先命名为ic_launcher,非常有用!)我找到了
res文件夹下的Mipmap ic_launcher文件夹
我用我自己创建的图标替换了之前的图标。重新安装你的应用程序,你会看到你的新图标!
至:
Res >可绘制>右击>显示在文件夹>添加所需的标志
然后进入android manifest,在application标签下编辑ICON标签,使用@drawable/nameOfImage
以下是我认为更适合Android Studio开发者的另一个解决方案:
Expand the project root folder in the Project View Right Click on the app folder In the Context Menu go to New->Image Asset In the pop up that appears select the the new logo you would like to have(image/clip art/text). If you were selecting the image radio button (as is the default choice), if you clicked on the 3-buttons to show the path tree to locate your .png image file, most probably you might not be seeing it, so drag it from the Windows Explorer (if Windows) and drop it in the tree, and it will appear and ready for being selected.
就是这样!你有一个新的标志为您的应用程序现在。
打开项目文件夹\app\src\main\res\ mimmap -mdpi\ic_launcher.png
您将看到5个mipmap文件夹。将每个mipmap文件夹中的图标替换为所需的图标。
在应用程序的AndroidManifest.xml文件中查找<application>标记。
这个应用程序标签有一个android:icon属性,通常是@drawable/ic_launcher。 这里的值是启动器图标文件的名称。如果值为@drawable/ic_launcher,则图标的名称为ic_launcher.png。
在你的资源文件夹(res/ mimmap -mdpi, res/ mimmap -hdpi等)中找到这个图标并替换它。
关于mipmap资源的注意事项:如果你的启动器图标目前在可绘制文件夹中,例如res/drawable-hdpi,你应该将它们移动到mipmap的等效文件夹中(例如res/mipmap-hdpi)。Android将更好地保留mipmap文件夹中绘图的分辨率,以便在启动程序中显示。
Android Studio注意:如果你正在使用Android Studio,你可以让工作室在正确的位置为你放置绘图。只需右键单击您的应用程序模块,并单击新建->图像资产。
对于图标类型,对于平面PNG文件选择“启动器图标(仅Legacy)”,如果您还想为API 26+设备生成自适应图标,则选择“启动器图标(自适应和Legacy)”。
推荐文章
- 按钮背景是透明的
- 在Mac OS X上哪里安装Android SDK ?
- 我如何获得图像缩放功能?
- 在Android应用程序中显示当前时间和日期
- BottomSheetDialogFragment的圆角
- 在应用程序启动时出现“无法获得BatchedBridge,请确保您的bundle被正确打包”的错误
- 我如何改变默认对话框按钮的文本颜色在安卓5
- 更改单选按钮的圆圈颜色
- 如何在android中复制一个文件?
- adb找不到我的设备/手机(MacOS X)
- 如何在新的材质主题中改变背面箭头的颜色?
- androidviewpager与底部点
- 相同的导航抽屉在不同的活动
- 如何从视图中获得托管活动?
- 单一的TextView与多种颜色的文本