如何在Xamarin.Forms中的sqlite或xml数据库中存储本地映像路径

时间:2015-04-16 06:39:19

标签: xamarin xamarin.android portable-class-library xamarin.forms

我已经将图像路径存储在数据库xml schema或sqlite database中。我正在研究Xamarin.Forms PCL项目。我对如何在数据库中存储图像路径感到困惑。因为在android图像中应放置在Ressource / drawble中,ios图像放在Resources文件夹中。我读了this xamarin.forms documentaion。但是没有得到如何在数据库中获取路径和存储。请任何人提供任何资源或示例。

1 个答案:

答案 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
}

希望它有所帮助。