我已经将图像路径存储在数据库xml schema或sqlite database中。我正在研究Xamarin.Forms PCL项目。我对如何在数据库中存储图像路径感到困惑。因为在android图像中应放置在Ressource / drawble中,ios图像放在Resources文件夹中。我读了this xamarin.forms documentaion。但是没有得到如何在数据库中获取路径和存储。请任何人提供任何资源或示例。
答案 0 :(得分:0)
Hope you have gone through this documentation并区分iOS和Android也是Given here in this documentation。
if (Device.OS == TargetPlatform.iOS) {
// Save in sqlite with iOS path
}if (Device.OS == TargetPlatform.Android) {
// Save in sqlite with Android path
}
希望它有所帮助。