gpt4 book ai didi

android - MvxListView 未绑定(bind)到 MvxItemTemplate

转载 作者:行者123 更新时间:2023-11-29 15:18:43 25 4
gpt4 key购买 nike

我的 MvxListView 及其绑定(bind)有问题。也就是说,如果我不添加项目模板,它绑定(bind)得很好,但在项目模板中,绑定(bind)数据不再显示。

HelpView.axml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:local="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:minWidth="25px"
android:minHeight="25px">
<Mvx.MvxListView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
local:MvxBind="ItemsSource HelpSections"
local:MvxItemTemplate="@layout/item_helpsection"/>
</LinearLayout>

Item_HelpSection.axml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:local="http://scehmas.android.com/apk/res-auto"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="40dp"
local:MvxBind="Text Heading"
android:layout_margin="10dp"/>
</LinearLayout>

帮助模型

public class HelpModel
{
public string Id { get; set; }
public string Heading { get; set; }
public string Text { get; set; }

public override string ToString()
{
return Heading;
}
}

如果我取消 HelpView 上的 ItemTemplate,它会很好地显示来自 ViewModel 的文本,但是当我将它添加回去时,我只会得到空行。

最佳答案

我认为它在 "schemas" 应该是 "schemas"

Item_HelpSection.axml

<TextView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:local="http://scehmas.android.com/apk/res-auto"

关于android - MvxListView 未绑定(bind)到 MvxItemTemplate,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20978430/

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