- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经为 RecycleViews 构建了一个自定义渲染器。
我一直遇到一个问题,我想不出可能的解决办法,就在这里。
每当用户滚动 RecycleView 时,屏幕上显示的下一个项目就会乱序显示,就好像 Recycle 不工作一样。
您可以在 GitHub 中找到我的代码: https://github.com/DanielCauser/XamarinHorizontalList
这是一个视频链接,您可以在其中确切地看到底部列表中我的问题是什么: https://drive.google.com/open?id=1xuuW4479LNiwene0UTMYWl5BPLfT6CJa
这是我在 Xamarin.Forms 中的 View :
<local:HorizontalViewNative ItemsSource="{Binding Monkeys}"
Grid.Row="5"
VerticalOptions="Start"
ItemHeight="100"
ItemWidth="100">
<local:HorizontalViewNative.ItemTemplate>
<DataTemplate>
<ViewCell>
<ContentView>
<StackLayout WidthRequest="100"
HeightRequest="100">
<Image Source="{Binding Image}" />
<Label Text="{Binding Name}"
LineBreakMode="MiddleTruncation"
HorizontalTextAlignment="Center"
VerticalTextAlignment="Center"/>
</StackLayout>
</ContentView>
</ViewCell>
</DataTemplate>
</local:HorizontalViewNative.ItemTemplate>
</local:HorizontalViewNative>
这是我在 Xamarin.Forms 项目中的自定义控件:
public class HorizontalViewNative : View
{
public static readonly BindableProperty ItemsSourceProperty =
BindableProperty.Create("ItemsSource", typeof(IEnumerable), typeof(HorizontalViewNative), default(IEnumerable<object>), BindingMode.TwoWay, propertyChanged: ItemsSourceChanged);
public static readonly BindableProperty ItemTemplateProperty =
BindableProperty.Create("ItemTemplate", typeof(DataTemplate), typeof(HVScrollGridView), default(DataTemplate));
public static readonly BindableProperty ItemHeightProperty =
BindableProperty.Create("ItemHeight", typeof(int), typeof(HVScrollGridView), default(int));
public static readonly BindableProperty ItemWidthProperty =
BindableProperty.Create("ItemWidth", typeof(int), typeof(HVScrollGridView), default(int));
public IEnumerable ItemsSource
{
get { return (IEnumerable)GetValue(ItemsSourceProperty); }
set { SetValue(ItemsSourceProperty, value); }
}
public DataTemplate ItemTemplate
{
get { return (DataTemplate)GetValue(ItemTemplateProperty); }
set { SetValue(ItemTemplateProperty, value); }
}
public int ItemHeight
{
get { return (int)GetValue(ItemHeightProperty); }
set { SetValue(ItemHeightProperty, value); }
}
public int ItemWidth
{
get { return (int)GetValue(ItemWidthProperty); }
set { SetValue(ItemWidthProperty, value); }
}
private static void ItemsSourceChanged(BindableObject bindable, object oldValue, object newValue)
{
var itemsLayout = (HorizontalViewNative)bindable;
}
}
这是我在 Android 项目中的自定义渲染(使用 ViewHolder、View Adapter 和 View Renderer)。
[assembly: ExportRenderer(typeof(HorizontalViewNative), typeof(AndroidHorizontalViewRenderer))]
namespace XamarinHorizontalList.Droid
{
public class AndroidHorizontalViewRenderer : ViewRenderer<HorizontalViewNative, RecyclerView>
{
private LinearLayoutManager _horizontalLayoutManager;
protected override void OnElementPropertyChanged(object sender, PropertyChangedEventArgs e)
{
if (e.PropertyName == nameof(Element.ItemsSource))
{
var dataSource = Element.ItemsSource.Cast<object>().ToList();
var adapter = new RecycleViewAdapter(Forms.Context as Android.App.Activity, Element);
adapter.NotifyDataSetChanged();
Control.SetAdapter(adapter);
}
}
protected override void OnElementChanged(ElementChangedEventArgs<HorizontalViewNative> e)
{
base.OnElementChanged(e);
if (e.NewElement != null)
{
var recyclerView = new RecyclerView(Context);
SetNativeControl(recyclerView);
_horizontalLayoutManager = new LinearLayoutManager(Context, OrientationHelper.Horizontal, false);
recyclerView.SetLayoutManager(_horizontalLayoutManager);
Control.SetAdapter(new RecycleViewAdapter(Forms.Context as Android.App.Activity, e.NewElement));
}
}
}
public class RecycleViewAdapter : RecyclerView.Adapter
{
private readonly Activity Context;
private readonly HorizontalViewNative _view;
private readonly IList _dataSource;
public override long GetItemId(int position)
{
return base.GetItemId(position);
}
public override int ItemCount => (_dataSource != null ? _dataSource.Count : 0);
public RecycleViewAdapter(Activity context, HorizontalViewNative view)
{
Context = context;
_view = view;
_dataSource = view.ItemsSource?.Cast<object>()?.ToList();
HasStableIds = true;
}
public override void OnBindViewHolder(RecyclerView.ViewHolder holder, int position)
{
var item = (RecycleViewHolder)holder;
var dataContext = _dataSource[position];
if (dataContext != null)
{
var dataTemplate = _view.ItemTemplate;
ViewCell viewCell;
var selector = dataTemplate as DataTemplateSelector;
if (selector != null)
{
var template = selector.SelectTemplate(_dataSource[position], _view.Parent);
viewCell = template.CreateContent() as ViewCell;
}
else
{
viewCell = dataTemplate?.CreateContent() as ViewCell;
}
item.UpdateUi(viewCell, dataContext, _view);
}
}
public override RecyclerView.ViewHolder OnCreateViewHolder(ViewGroup parent, int viewType)
{
var contentFrame = new FrameLayout(parent.Context)
{
LayoutParameters = new FrameLayout.LayoutParams(ViewGroup.LayoutParams.MatchParent,
ViewGroup.LayoutParams.MatchParent)
{
Height = (int)(_view.ItemHeight * Resources.System.DisplayMetrics.Density),
Width = (int)(_view.ItemWidth * Resources.System.DisplayMetrics.Density)
}
};
contentFrame.DescendantFocusability = DescendantFocusability.AfterDescendants;
var viewHolder = new RecycleViewHolder(contentFrame);
return viewHolder;
}
}
public class RecycleViewHolder : RecyclerView.ViewHolder
{
public RecycleViewHolder(Android.Views.View itemView) : base(itemView)
{
ItemView = itemView;
}
public void UpdateUi(ViewCell viewCell, object dataContext, HorizontalViewNative view)
{
var contentLayout = (FrameLayout)ItemView;
viewCell.BindingContext = dataContext;
viewCell.Parent = view;
var metrics = Resources.System.DisplayMetrics;
// Layout and Measure Xamarin Forms View
var elementSizeRequest = viewCell.View.Measure(double.PositiveInfinity, double.PositiveInfinity, MeasureFlags.IncludeMargins);
var height = (int)((view.ItemHeight + viewCell.View.Margin.Top + viewCell.View.Margin.Bottom) * metrics.Density);
var width = (int)((view.ItemWidth + viewCell.View.Margin.Left + viewCell.View.Margin.Right) * metrics.Density);
viewCell.View.Layout(new Rectangle(0, 0, view.ItemWidth, view.ItemHeight));
// Layout Android View
var layoutParams = new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MatchParent, ViewGroup.LayoutParams.MatchParent)
{
Height = height,
Width = width
};
if (Platform.GetRenderer(viewCell.View) == null)
{
Platform.SetRenderer(viewCell.View, Platform.CreateRenderer(viewCell.View));
}
var renderer = Platform.GetRenderer(viewCell.View);
var viewGroup = renderer.View;
viewGroup.LayoutParameters = layoutParams;
viewGroup.Layout(0, 0, width, height);
contentLayout.RemoveAllViews();
contentLayout.AddView(viewGroup);
}
}
}
最佳答案
是的,所以我能够解决渲染器的问题。
1 - 我弄乱了适配器调用,我调用了两次,一次是在 OnElementChanged 中,一次是在 OnElementOnProperty changed 中。
2 - 我重写了适配器的获取项目 ID,使 View 正确排序!
3 - 我调整了所有图片的大小,我得到了一个奇怪的内存不足异常,通过缩小它们决定显示所有图片。
关于android - RecycleView 回收无法正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48362932/
我正在构建一个我想要的 FragmentPagerAdapter(带有小图标的那个); 到屏幕中间(水平)的第一个项目 滑动它并使它们向左/向右移动屏幕的五分之一 实现此目标的最佳方法是什么? 这是一
我正在使用 GalleryView 和大约 40 张图片,而且速度很慢,因为没有回收... 任何人都可以向我展示在 getView 方法上对 GalleryView 的基本回收。 public cla
我收到警告 This FragmentManager should be recycled after use with #recycle() 我正在尝试修复它。有什么建议吗? date.setOnC
已结束。此问题不符合 Stack Overflow guidelines .它目前不接受答案。 这个问题似乎与 a specific programming problem, a software a
是否可以在 global.asax 中捕获回收事件? 我知道 Application_End 会被触发,但有没有办法知道它是由应用程序池的回收触发的? 谢谢,Lieven Cardoen 又名 Joh
当我第一次启动应用程序时,我以正确的方式获得了抽屉导航。当我向下滚动抽屉时,问题就出现了。元素开始消失,其中一些甚至交换了位置。我试图找出问题所在,但找不到。希望你能帮助我。 我已经使用 getIte
我正在尝试构建一个 Android 应用程序,在其中使用 RecyclerView。 在 RecyclerView 的项目中,我使用一个 TextView 和四个 CheckBox 来选择任何人。 现
回收 IIS7 应用程序池是否会终止任何当前正在执行的请求?还是等待所有请求完成(如排水管停止)? 我不希望回收规则导致我的 WCF 站点出现间歇性错误。 谢谢 最佳答案 不。 By default,
我动态创建 div,并希望通过检查 div 的 ID 以正确的顺序放置新的 div。 创建新数据时,我对数组进行排序并创建一个新的 div 容器。第一次构建 DOM 时,它工作正常,因为我先创建数据,
IIS 中 Web 应用程序的 .net Recycle 的 Java 等价物是什么。 这是在 IIS 之外的 Linux 机器上使用 Java 时的情况。 只是停止和启动应用程序吗? 最佳答案 并非
问题: 假设您的传输速度高达 10 MB/s,那么回收 DatagramPacket 对象(而不是每次发送数据包时创建一个新对象)是否是一个好主意? 故事: 我正在创建一个 LAN 文件同步应用程序,
我已经使用适配器创建了一个 ListView,但唯一的问题是我们使用了不同的布局,因为它是一个消息传递应用程序。我想通过使用 View 回收来提高性能,但不知道如何回收 View 。 是否可以更改 V
我是 Android 初学者,我不明白为什么会这样。 Activity 截图: 一切正常,除非我向下滚动(因此我认为它与回收有关)...所以当我向上滚动并尝试撤消第一篇文章中的投票(红色箭头)时,它认
我在 RecyclerView 中使用 FlexboxLayoutManager,我需要阻止 RV 回收。我尝试将 itemViewCacheSize() 设置为项目总数,但没有帮助。我也尝试将 ma
在我使用 SearchView 搜索项目后尝试从 RecyclerView 中删除项目时遇到问题,而如果我不使用 SearchView 并正常删除该项目,它工作正常。 这是一个示例,我正在删除该项目,
我正在尝试动态更改 RecycleView 中的图像。它将成功更改但是当我滚动 RecycleView ImageView 时将更改 这是我的适配器类代码: public class Recycler
我有一个表格如下 |GroupID | UserID | -------------------- |1 | 1 | |1 | 2 | |1 |
大家好,在我的 Activity 布局中,我使用这个 XML 来获取按钮数组
我有一个动画时钟,目前有内存泄漏。我目前似乎能够将东西放在图像之上,但不能将其取走或必须清除它(除了重新绘制整个时钟以使秒针不在两个不同的位置之外)。 用于清除时钟组件的代码是: for(UIView
我正在尝试创建一个简单的动画,在 JavaFX 2.x 中将圆向左移动一个像素,该动画有效,但每当我尝试第二次启动时,它就不再起作用了。我尝试了几种方法,代码如下: public void handl
我是一名优秀的程序员,十分优秀!