在应用程序 xamarin.android 应用程序中使用 xaml 中的 resx
using resx in xaml in the application xamarin.android app
是否可以从 xamarin.android 中的 resx 文件中使用 xaml 中的字符串资源? (比如@string / stringResource)xamarin.forms有很多例子,不幸的是我找不到xamarin.android的任何例子。
在Xamarin.Forms中,您可以使用Resx files
。您为 Forms 项目创建文件。我拿Localization
做参考
但是如果你想在 Android 上做类似 resx 的事情,你需要像你说的那样使用 Strings.xml
文件 @string
。在 Android 平台上,它有不同的实现。在资源文件夹中创建一个 Strings.xml
值文件夹文件。
Xamarin.Forms:
有关 Xamarin.Forms 字符串和图像的更多详细信息
本地化,请检查link。
https://docs.microsoft.com/en-us/xamarin/xamarin-forms/app-fundamentals/localization/text?pivots=windows#create-resx-files
您可以从下面的 link 下载示例。 https://docs.microsoft.com/en-us/samples/xamarin/xamarin-forms-samples/usingresxlocalization/
Xamarin.Android:
- 有关Android本地化的更多详细信息,您可以参考下面的link。 https://docs.microsoft.com/en-us/xamarin/android/app-fundamentals/localization
是否可以从 xamarin.android 中的 resx 文件中使用 xaml 中的字符串资源? (比如@string / stringResource)xamarin.forms有很多例子,不幸的是我找不到xamarin.android的任何例子。
在Xamarin.Forms中,您可以使用Resx files
。您为 Forms 项目创建文件。我拿Localization
做参考
但是如果你想在 Android 上做类似 resx 的事情,你需要像你说的那样使用 Strings.xml
文件 @string
。在 Android 平台上,它有不同的实现。在资源文件夹中创建一个 Strings.xml
值文件夹文件。
Xamarin.Forms:
有关 Xamarin.Forms 字符串和图像的更多详细信息 本地化,请检查link。 https://docs.microsoft.com/en-us/xamarin/xamarin-forms/app-fundamentals/localization/text?pivots=windows#create-resx-files
您可以从下面的 link 下载示例。 https://docs.microsoft.com/en-us/samples/xamarin/xamarin-forms-samples/usingresxlocalization/
Xamarin.Android:
- 有关Android本地化的更多详细信息,您可以参考下面的link。 https://docs.microsoft.com/en-us/xamarin/android/app-fundamentals/localization