0
我在android應用程序上工作,我想在xamarin表單中創建用於滑動ListView項目的Renderer。但我不知道如何刷卡將工作。如果任何機構有任何想法,請與我在這裏分享的是我的代碼: -滑動列表在Xamarin窗體(Android)中查看目錄項目
public class NativeCell : ViewCell
{
}
這裏是渲染器的代碼: -
[assembly: ExportRenderer(typeof(ViewCell), typeof(CustomViewCell))] namespace SwipeListItemRenderer.Droid.CustomControls {
public class CustomViewCell : ViewCellRenderer
{
protected override Android.Views.View GetCellCore(Cell item, Android.Views.View convertView, ViewGroup parent, Context context)
{
var cell= base.GetCellCore(item, convertView, parent, context);
cell.GenericMotion += Cell_GenericMotion;
return cell;
}
private void Cell_GenericMotion(object sender, GenericMotionEventArgs e)
{
}
} }
我建立的ListView ViewCell渲染器,我想從左到右滑動項目,我想要開火手勢事件: -
private void Cell_GenericMotion(object sender, GenericMotionEventArgs e)
{
}
[Xamarin Form中的SwipeListView]的可能重複(http://stackoverflow.com/questions/38767659/swipelistview-in-xamarin-form) –
如果您有更多要添加的內容,請更新您現有的問題。 –