- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我目前正在为 Android 和 iOS 实现跨平台应用。
因为我想使用 MvvmCross 和弹出式导航,如果发现 Benjamin Hysell 的演示(使用 DrawerLayout)非常有用:
代码: https://github.com/benhysell/V.FlyoutTest
基于这段代码,我想在弹出导航中的菜单下方添加一些额外的控件。
所以在HomeView中,我在方法末尾添加了如下代码
protected override void OnCreate(Bundle savedInstanceState)
{
// ....
var layout = this.BindingInflate(Resource.Layout.DrawerFooterView, null);
drawerList.AddFooterView(layout);
}
现在,当我启动该应用程序时,我可以看到一切都很好,包括我在弹出菜单中的额外控件。但是只要我点击一个菜单项,我就会在 MvvmCross 中得到一个 NullReferenceException:
04-25 17:42:20.892 I/MonoDroid(32443): UNHANDLED EXCEPTION: System.NullReferenceException: Object reference not set to an instance of an object
04-25 17:42:20.892 I/MonoDroid(32443): at Cirrious.MvvmCross.Binding.Droid.Views.MvxListView.ExecuteCommandOnItem (System.Windows.Input.ICommand,int) <IL 0x0000b, 0x000a0>
04-25 17:42:20.892 I/MonoDroid(32443): at Cirrious.MvvmCross.Binding.Droid.Views.MvxListView.<EnsureItemClickOverloaded>b__0 (object,Android.Widget.AdapterView/ItemClickEventArgs) <IL 0x0000d, 0x000a7>
04-25 17:42:20.892 I/MonoDroid(32443): at Android.Widget.AdapterView/IOnItemClickListenerImplementor.OnItemClick (Android.Widget.AdapterView,Android.Views.View,int,long) [0x0000d] in /Users/builder/data/lanes/monodroid-mlion-monodroid-4.12-series/a1e3982a/source/monodroid/src/Mono.Android/platforms/android-15/src/generated/Android.Widget.AdapterView.cs:261
04-25 17:42:20.892 I/MonoDroid(32443): at (wrapper dynamic-method) object.289e379c-ed35-42d0-8505-cc91a6c90d7b (intptr,intptr,intptr,intptr,int,long) <IL 0x00029, 0x0009b>
任何人都可以为这个问题提供帮助,因为我没有想法。
如有任何帮助,我们将不胜感激。
最佳答案
我不明白为什么向 ListView
添加 Header
或 Footer
View 如此重要。
当然,将它们直接添加到 MvxListView
有一些奇怪的地方,但您可以轻松完成这项工作。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:local="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/header"
android:orientation="vertical"
android:layout_alignParentTop="true"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<!-- Header content here -->
</LinearLayout>
<LinearLayout
android:id="@+id/footer"
android:orientation="vertical"
android:layout_alignParentBottom="true"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<!-- Footer content here -->
</LinearLayout>
<MvxListView
android:id="@+id/listview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/header"
android:layout_above="@+id/footer"
local:MvxBind="ItemsSource Items; ItemSelected SelectedItem"/>
</RelativeLayout>
然后如果你想显示/隐藏页脚是否已经到达底部,你可以在Scroll
事件中添加一个EventHandler
:
var footer = FindViewById<LinearLayout>(Resource.Id.footer);
var lv = FindViewById<MvxListView>(Resource.Id.listview);
lv.Scroll += (s, e) =>
{
var lastItem = e.FirstVisibleItem + e.VisibleItemCount;
if(lastItem == e.TotalItemCount)
{
// we are at the end of the list
// maybe do some animation before showing it
footer.Visibility = ViewStates.Visible;
}
else
{
footer.Visibility = ViewStates.Gone;
}
};
关于android - MvxListView 中的 NavigationDrawer AddFooter 方法 - NullReferenceException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23297632/
在下面的示例中,我想将 ItemClick 命令绑定(bind)到 MvxListView 中的项目。 在这里,我的 ViewModel 中有一个包含狗列表的人员列表。 ItemsSource Has
在我的 Android 应用程序中,我创建了一个垂直布局,以将图像(缩略图)的水平列表置于列表中所选图像的较大 View 之上。出于某种原因,我无法让水平列表水平显示,它只显示为垂直列表。
我想让 CustomChoiceList 与 MvvmCross 一起工作,但很难让示例正常工作,无法选择 ListItem。 事实上,该示例使用了一个自定义的 LinearLayout,它扩展了 L
我正在使用 mvvmcross(非常有趣),但在从 mvxlistview 添加和删除项目时一直遇到问题: 我的 View 绑定(bind)到从 Web 服务器检索的项目列表,因此它在不同的线程中完成
我正在使用绑定(bind)到 observablecollection 的 MvxListView 来显示聊天消息。我找到了一种方法, ListView 始终使用以下 2 个属性向下滚动到底部: an
当我从列表中删除一个项目时,MvxListView 不会刷新。 我的 list (没什么花哨的): private List items = new List(); public List Items
我有一个 MvxListView,我通过单击“添加”按钮来填充它,它运行良好。问题是当我添加项目时 ListView 的高度需要扩展。我试过设置android:layout_height="wrap_
我正在尝试在 Android 上实现类似于 iOS 的分组 ListView 。因此,我正在尝试编写自己的支持分组节标题的自定义 MvxAdapter。从 axml 构造的默认 MvxListView
如何在 MvxListView 中保持项目突出显示,直到它被取消选中或直到另一个项目被选中? 我的程序有一个 MvxListView 可以正确显示项目列表。用户可以通过单击来选择一个项目,然后单击保存
假设我有一个带有 MvxListView 的简单布局: 我的项目模板布局如下: 我想从代码隐藏中为我的 itemtemplate 中的两个 textview
是否可以嵌套绑定(bind) MvxListView(mvvmcross android v3.1 系列)? 我发现嵌套绑定(bind)失败: MvxBind:Warning: 1.17 Unabl
我正在使用一个包含 MvxSpinner 的 MvxListView。当我的应用程序运行时,跟踪显示以下几个实例: 当前微调器 SelectedItem 绑定(bind)中不允许使用空值 我知道数据对
我正在使用 Mvvmcross 在 Xamarin 中构建一个 Android 应用程序。在这个应用程序中,我需要一个 F.a.q.页面,为此我需要一个 ListView 。使用 MvxListVie
我的 MvxListView 及其绑定(bind)有问题。也就是说,如果我不添加项目模板,它绑定(bind)得很好,但在项目模板中,绑定(bind)数据不再显示。 HelpView.axml
以下布局(SearchLayoutView)中的 MvxListView 不像正常的 xamarin ListView 那样流畅。当我向下滚动列表时,项目卡住了。在这里,我将模板 (search_li
我目前正在为 Android 和 iOS 实现跨平台应用。 因为我想使用 MvvmCross 和弹出式导航,如果发现 Benjamin Hysell 的演示(使用 DrawerLayout)非常有用:
在 MvvmCross 中是否可以有一个顶部带有 Search EditText 的 Android MvxListView?以及如何? 最佳答案 在您的 View.axml 中:
如果我有一个具有以下 MvxListView 定义的 View : 不是将 MvxItemTemplate 硬编码到 itemtemplate1,是否可以根据我想在此 View 中显示的数据类型动态
我尝试添加一个带有 MvxListView 和绑定(bind)的 fragment 。我正在使用 v4.0.0.0 beta2。 这是布局: fragment : public class Acc
所以我有一张幻灯片列表: SlideListView.axml: SlideListItemView.axml: 所以每张幻灯片都有一个文本和删除按钮。 SlideListIte
我是一名优秀的程序员,十分优秀!