gpt4 book ai didi

c# - 以 xamarin 形式将 base64 字符串绑定(bind)到 ListView

转载 作者:可可西里 更新时间:2023-11-01 09:57:59 26 4
gpt4 key购买 nike

首先,我是 Xamarin.Form 的新手。我正在尝试从 Google 获得最好的结果,但我什至无法搜索到很多功能。

我正在创建 Xamarin.Form 应用。在该应用程序中,我将图像存储为 sql server 中的 base64 string 格式,我在 sql server 中的数据类型是 varchar(Max)

我的问题是,如何将 base64 字符串 转换为图像并将图像绑定(bind)到 ListView 。

Listview代码:

<ListView x:Name="listView" HasUnevenRows="true" SeparatorColor="Gray">
<ListView.ItemTemplate>
<DataTemplate>
<ViewCell>
<Image Source="{Binding image}" Grid.Row="0"
Grid.RowSpan="3" Grid.Column="0"
HorizontalOptions="Center" HeightRequest="50"
VerticalOptions="Center">
<Image.GestureRecognizers>
<TapGestureRecognizer Tapped="OnImageTapped" />
</Image.GestureRecognizers>
</Image>
</ViewCell>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>

C#代码:

Public async Task loadDeveloperList()
{
try
{
List<employee> employeeDetail = new List<employee>();

HttpClient client = new HttpClient();
StringBuilder sb = new StringBuilder();
client.MaxResponseContentBufferSize = 256000;
var RestUrl = "http://example.com/Getemployee/";
var uri = new Uri(RestUrl);
actIndicator.IsVisible = true;
actIndicator.IsRunning = true;
var response = await client.GetAsync(uri);

if (response.IsSuccessStatusCode)
{
var content = await response.Content.ReadAsStringAsync();

List<employee> onjEmployee = JsonConvert.DeserializeObject<List<employee>>(content);

foreach (var item in onjEmployee)
{
employee emptemp = new employee()
{
empID = item.empID,
name = item.name,
city = item.city,
post = item.post,
salary = item.salary,
gender = item.gender,
image = item.image
};
string cFotoBase64 = emptemp.image;
byte[] ImageFotoBase64 = System.Convert.FromBase64String(cFotoBase64);

employeeDetail.Add(emptemp);
}
listView.ItemsSource = employeeDetail;
}
}
catch (Exception ex)
{

}
}

所以任何人都请给我一个想法和任何解决方案。

最佳答案

根据 this论坛主题,您可以为它创建一个转换器。只需将 Base64 字符串保留为 Employee 的一部分,即在 Base64Image 属性中。

现在像这样定义一个转换器。

public class ConverterBase64ImageSource : IValueConverter
{
public object Convert (object value, Type targetType, object parameter, CultureInfo culture)
{
string base64Image = (string)value;

if (base64Image == null)
return null;

// Convert base64Image from string to byte-array
var imageBytes = System.Convert.FromBase64String(base64Image);

// Return a new ImageSource
return ImageSource.FromStream (() => {return new MemoryStream(imageBytes);});
}

public object ConvertBack (object value, Type targetType, object parameter, CultureInfo culture)
{
// Not implemented as we do not convert back
throw new NotSupportedException();
}
}

现在在您的 XAML 中像这样声明和使用转换器:

将命名空间添加到页面根目录,我假设它是一个普通的 ContentPage,所以它应该看起来像这样:

<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:YourApp;assembly=YourApp"
x:Class="YourApp.YourPage">

请注意,YourAppYourPage 等应替换为您的实际应用名称和正确的命名空间。

现在将转换器声明为页面的一部分。

<ContentPage.Resources>
<ResourceDictionary>
<local:ConverterBase64ImageSource x:Key="Base64ToImageConverter" />
</ResourceDictionary>
</ContentPage.Resources>

最后在 Image 上使用转换器。

<ListView x:Name="listView" HasUnevenRows="true" SeparatorColor="Gray">
<ListView.ItemTemplate>
<DataTemplate>
<ViewCell>
<Image Source="{Binding Base64Image, Converter={StaticResource Base64ToImageConverter}}}" Grid.Row="0"
Grid.RowSpan="3" Grid.Column="0"
HorizontalOptions="Center" HeightRequest="50"
VerticalOptions="Center">
<Image.GestureRecognizers>
<TapGestureRecognizer Tapped="OnImageTapped" />
</Image.GestureRecognizers>
</Image>
</ViewCell>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>

现在应该显示您的图片了!

关于c# - 以 xamarin 形式将 base64 字符串绑定(bind)到 ListView ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39305764/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com