由于分组和其他可用功能,我正在使用SfListView。 但是,我需要禁用在Android和iOS中滚动列表视图。 如何为SfListView编写自定义渲染器? 对于Xamarin表单ListView,我可以扩展ListViewRenderer类并覆盖OnElementChanged方法。
另外,如何导出自定义渲染器?
例如,以下代码适用于Xamarin表单ListView(具有相应的修改):
[assembly: ExportRenderer(typeof(SfListViewWithNoScroll), typeof(SfListViewWithNoScrollRenderer))]
namespace MyApp.Mobile.Droid.CustomRenderers
{
public class SfListViewWithNoScrollRenderer : //which class do I need to inherit?
{
protected override void OnElementChanged(ElementChangedEventArgs<SfListView> e)
{
//base.OnElementChanged(e);
//if (Control != null)
//{
// Control.VerticalScrollBarEnabled = false;
//}
//what do I write here?
}
}
}
答案 0 :(得分:1)
这样做会影响ListView的滚动,但选择之类的交互仍然有效。您无法查看视口区域下方的项目。
[assembly: ExportRenderer(typeof(SfListView), typeof(CustomSfListViewRenderer))]
namespace XamarinSfListViewDemo.Droid
{
public class CustomSfListViewRenderer : ViewRenderer<SfListView,Android.Views.View>
{
private Xamarin.Forms.ScrollView scroller;
protected override void OnElementChanged(ElementChangedEventArgs<SfListView> e)
{
base.OnElementChanged(e);
var element = e.NewElement;
scroller = (Xamarin.Forms.ScrollView)typeof(SfListView).GetField("scrollView", BindingFlags.NonPublic | BindingFlags.Instance)
.GetValue(element);
scroller.InputTransparent = true;
}
}
}
我没有在iOS中尝试过此代码,但90%应该可以使用。试一试,让我知道它是否有帮助!
答案 1 :(得分:0)
在SfListView中,我们为您的要求“启用/禁用ListView中的ScrollBar可见性”提供了属性“ IsScrollBarVisible ”。无需为此创建渲染器。默认情况下,IsScrollBarVisible属性值为true。您可以启用/禁用特定平台的滚动条可见性,如下面的代码示例所示。
<sync:SfListView x:Name="listView" ItemsSource="{Binding BookInfo}">
<sync:SfListView.IsScrollBarVisible>
<OnPlatform x:TypeArguments="x:Boolean">
<OnPlatform.Android>
<OnIdiom x:TypeArguments="x:Boolean" Phone="false" Tablet="false"/>
</OnPlatform.Android>
<OnPlatform.iOS>
<OnIdiom x:TypeArguments="x:Boolean" Phone="false" Tablet="false"/>
</OnPlatform.iOS>
<OnPlatform.WinPhone>
<OnIdiom x:TypeArguments="x:Boolean" Phone="true" Tablet="true"/>
</OnPlatform.WinPhone>
</OnPlatform>
</sync:SfListView.IsScrollBarVisible>
</sync:SfListView>
但它有一些局限性。由于Xamarin Forms中的本机ScrollView渲染器存在一些限制,因此无法在运行时更改IsScrollBarVisible属性。它只能在初始化SfListView时定义。