我无法更新主屏幕上的图标。这是绿色的机器人默认android图标。如何将其更改为图标?
我在[['personID'], 'required', 'when' => function($model, $attribute) {
return $model->rdPerson == 0;
},
'whenClient' => 'function(attribute,value){ return ($("input[name=\''.\yii\helpers\Html::getInputName($this, 'rdPerson[]').'\']:checked").val()==0)}'],
[['otherPerson'], 'required', 'when' => function($model, $attribute) {
return $model->rdPerson == 1;
}, 'whenClient' => 'function(attribute,value){ return ($("input[name=\''.\yii\helpers\Html::getInputName($this,'rdPerson[]').'\']:checked").val()==1)}'],
文件夹中添加了不同分辨率的图标。
我正在使用Play控制台展示我的应用。有什么想法吗?
我的清单上显示
app > src > res
名称与资产文件夹中的图像匹配。
这是我的仓库的链接:
https://bitbucket.org/matthisco/ejected-calendar/src/master/android/app/src/main/
答案 0 :(得分:1)
将项目更改为android 而不是去res> mipmap>在此粘贴图标(iconName.png) 替换
android:icon="@mipmap/ic_launcher" in manifest
到
android:icon="@mipmap/iconName"
答案 1 :(得分:0)
转到app > src > main > res
将图标重命名为ic_launcher.png
并将其粘贴到所有mipmap文件夹
答案 2 :(得分:0)
必须放置Android图标的正确文件夹是res->mipmap-xxxx
,其中xxxx
表示屏幕分辨率。
还请检查您的清单是否正在使用它。打开清单,在应用标签中,您应该具有以下内容:
android:icon="@mipmap/ic_launcher"
还要确认您的图标名为ic_launcher
。
您会看到清单中的条目显示“在mipmap文件夹中查找图标,请使用一个名为ic_launcher的图标”
答案 3 :(得分:0)
您可以按以下方式更新主屏幕图标:
在 application 标记下的 AndroidManifest.xml 中
<application
android:icon="@mipmap/yourdesiredIcon"/> // replace ic_launcher to desired icon