- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
我替换了所有位置的所有图像(我的意思是在可绘制文件夹和所有 Windows Assets 文件夹和 iOS 资源文件夹中),但它仍然显示应用程序的默认 Xamarin 图标。我也试过这段代码,但它似乎也不起作用。谁能告诉我解决方案?
[assembly: Application(Icon = "@drawable/icon")]
最佳答案
如果您更改了图标文件名,请确保更新 Icon
引用 MainActivity.cs
:
[Activity(Label = "MyName", Icon = "@mipmap/myicon", Theme = "@style/MainTheme"]
public class MainActivity : global::Xamarin.Forms.Platform.Android.FormsAppCompatActivity
{
}
您还应该更新 icon.xml
的名称和 icon_round.xml
在mipmap-anydpi
文件夹以匹配新图标名称。如果launcher-foreground.png
重命名然后更新 <foreground...>
的值在相应的icon.xml
.
png
在带有新图标的 mipmap 文件夹中Icon
MainActivity.cs
中的值icon.xml
和 icon_round.xml
launcher-foreground.png
已更改,然后更新 icon.xml
中的值.例如: <adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/my_launcher_background"/>
<foreground android:drawable="@mipmap/my_launcher_foreground"/>
</adaptive-icon>
obj
Android 项目目录中的文件夹Xamarin Forms/Android 在每个 mipmap 文件夹中放置 2 个图标(mipmap-mdpi、mipmap-hdpi、mipmap-xhdpi 等)- icon.png
和 launcher-foreground.png
.
替换每个 mipmap 文件夹中的这两个图像。我保留了相同的名称,但应该可以使用不同的名称。
如果您重命名 launcher-foreground.png
那么您必须更新icon.xml
中的值和 icon_round.xml
(或它们的等效新名称)。 <foreground...>
中的值标签引用图标/png。所以,如果 launcher-foreground.png
已更新为 my_launcher-foreground.png
这应该反射(reflect)在 icon.xml
中(请参阅上面摘要中的步骤 4)。
如果图标即使在清理/重建后仍未更新,则可能是原始/默认图标仍然存在于 Android 项目中 obj
文件夹。解决方案是删除obj
Android 项目目录中的文件夹。
对于 iOS,请参阅 Managing Icons with Asset Catalogs .下面提供了从链接页面获取的摘要:
For icons, a special
AppIcon
image set can be added to theAssets.xcassets
file in the app's project.To use an Asset Catalog, do the following:
- Double-click the Info.plist file in the Solution Explorer.
- Click on the Visual Assets tab and click on the Use Asset Catalog button under App Icons.
- From the Solution Explorer, expand the Asset Catalog folder.
- Double-click the Media file to open it in the editor.
- Under the Properties Explorer the developer can select the different types and sizes of icons required.
- Click on given icon type and select an image file for the required type/size.
- Click the Open button to include the image in the project and set it in the xcasset.
MacO 的指南是 Application icon for Xamarin.Mac apps .您需要考虑以下步骤:
- Required image sizes and filenames
- Packaging the icon resources
- Using the icon
在上面的链接文档中有详细说明。
关于c# - 如何更改 Xamarin.Forms 中的应用程序图标?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37945767/
我已经从github https://github.com/xamarin/xamarin-forms-samples下载了Xamarin.Form示例项目 打开任何示例项目后,它不允许我在iOS S
我收到此错误: "MyApp\App.cs(7,7): Error CS0246: The type or namespace name 'Xamarin' could not be found (a
我想知道 Xamarin 是否带有 Mono 运行时及其所有应用程序包。在这种情况下,如果两个基于 Xamarin 的应用程序安装在一个设备上,该设备将拥有两个 Mono 运行时权利。这是 Xamar
如何将库导入 Xamarin? 例如,我将如何导入 json.net为我的项目使用 xamarin? 谢谢 最佳答案 Json.NET可免费获得精美包装 Xamarin-compatible Comp
我不知道如何在输入框中置顶占位符文本。 我有一个很大的输入框,想把占位符文本放在顶部。 最佳答案 您需要为每个平台创建一个自定义渲染器以对齐占位符,如下所示: public class Placeh
我很难找到有关Xamarin.Forms的后台任务支持的文档。 Xamarin.Forms是否提供对定期后台任务的支持? 我需要为Windows Phone 10和Android都实现此功能。 最佳答
Xamarin.iOS中是否提供iOS Picker?我进行了详尽的搜索,但是没有示例,也没有信息可查。但是,它在Xamarin.Form中可用。 最佳答案 UIPickerView的真实示例示例:(
有谁知道是否可以使用 Xamarin.Forms 创建CardView样式(可滚动)列表?我们需要它在iOS和Android上将呈现为相同的。还需要调整阴影等属性(略微提高每张卡) 最佳答案 这是一个
所以,我对 Xamarin 有点陌生,我试图弄清楚如何显示一个包含用户文本输入字段的弹出窗口。 DisplayAlert 不这样做,因为它没有文本输入字段。我应该使用什么? 最佳答案 您可以使用 Di
我有一个运行良好的表单应用程序,但我注意到当页面出现时,背景颜色在几分之一秒内设置不正确。 我有这个代码用于我的 OnAppearing protected override async vo
您好,我正在开发一个具有登录功能的应用程序,它可以选择让您保持登录状态,即使您关闭该应用程序也是如此。 问题是什么?这就是我在 App.cs 中所做的: var statusLog = Appli
由于BackgroundImage是一个字符串,您应该如何设置Page的背景图像?我将不胜感激任何建议。 到目前为止,我已经尝试过: MainPage = new ContentPage {
如何使用 Renderer 在 Xamarin Forms 中使用渐变效果创建此按钮? 最佳答案 在 xamarin 中,您不能将渐变颜色添加为内置功能。您必须创建不同的渲染功能。这个 link 将指
背景:我正在处理一个 C# 项目。过去,当我做 System.Console.WriteLine("Hello"); 我会看到一个弹出控制台打印“你好”。控制台今天消失了,我该怎么做才能让它再次出现?
我们每天都在使用 Xamarin 和 Xamarin Forms,并且经常遇到异常而没有任何关于如何调试的有用信息。 有时它是我们的目标,有时是 Xamarin 中的错误,尤其是 Xamarin Fo
我正在使用 xamarin studio(带有 nuget 包管理插件),并且在我的项目中有一些 nuget 包。 项目上下文菜单中有“管理”和“恢复 nuget 包”,但也有控制台吗? 最佳答案 X
我有一个 CustomCalendar 元素,它是通过扩展 ContentView 并在另一个 ContentPage 中使用此自定义 View 而创建的。我尝试使用非聚焦事件来检测外部点击。但是问题
因此,对于整个MVVM,我还是一个新手。我几乎了解它的基本知识。我有一个可以按原样工作的示例,但是我试图将其更改为MVVM样式。我只是尝试不同的例子,所以我可以学习。 (LoginPage.xaml)
我正在尝试使我的Xamarin项目在Prism和DryIoc中使用MVVM。 我主要想使用自动注册,如下所示: [AutoRegisterForNavigation] ... protected ov
我有一个问题,如何在 Forms Xamarin 中制作模态屏幕,如附加的图像。 我想知道你们是否可以向我发送一段代码或示例以了解如何做到这一点。 https://extravios.com.br/c
我是一名优秀的程序员,十分优秀!