如何将我的listView转换为dynamiclistview?我指的是http://nhaarman.github.io/ListViewAnimations/#dynamiclistview

时间:2015-06-17 21:05:02

标签: android listview

我正在尝试使用此功能:lib在用户滑动时删除我的列表项。但我似乎无法获得如何将现有的listView转换为DynamicListView。我已经阅读了给出的说明,它只是说要在xml布局中添加一些代码以将listView转换为DynamicListView,但是我应该在哪里放置该代码?在哪个xml文件?我不知道。任何帮助将不胜感激。

这是wiki中给出的内容:

  

要使用DynamicListView,请在xml布局中包含以下内容:

<com.nhaarman.listviewanimations.itemmanipulation.DynamicListView
        android:id="@+id/dynamiclistview"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

1 个答案:

答案 0 :(得分:1)

您似乎需要将当前列表设为

MyAdapter myAdapter = new MyAdapter();
AlphaInAnimationAdapter animationAdapter = new AlphaInAnimationAdapter(myAdapter);
animationAdapter.setAbsListView(mListView);
mListView.setAdapter(animationAdapter);

并添加

所述的功能
<com.nhaarman.listviewanimations.itemmanipulation.DynamicListView

创建自己的适配器以插入现有的列表视图实现。所以,如果你有自己的适配器设置,你没有提供任何代码吗?所以主要是你的列表视图必须与xml“@ + id / dynamiclistview”一致才能运行。如果你已经建立了适配器,我建议扩展那里的实现,并且只提供滑动和删除功能的方法。

编辑:

请注意这很重要<div class="row sk-p"> <div class="col-xs-12 col-sm-12 col-md-12"> <div class="panel-group" id="accordion"> <div class="panel panel-default"> <div class="panel-heading"> <h4 class="panel-title"> PRE-REQUISITE(S) FOR ALL SKILLS IN EXERCISE <span data-toggle="collapse" data-parent="#accordion" href="#sk-p-r" class="hide-details-sk-p pull-right"> <span class="hide-details-txt-sk-p-r">HIDE DETAILS</span> <img width="20px" class="icon-sk-p-r" src="http://s4.postimg.org/jd95wuzd5/incorrect.png"> </span> </h4> </div> <div id="sk-p-r" class="panel-collapse collapse"> <div class="panel-body"> <div class="col-sm-6 col-md-6 col-lg-6"> <span>SOLVING EQUATIONS BY ADDITION OR SUBSTRACTION </span><br><br> <div class="sk-p-dash"> <img width="20px" class="icon-sk-p-r" src="http://s8.postimg.org/n1o8p0tsx/review_video.png"> <span>WATCH VIDEO</span><br><br> <img width="20px" class="icon-sk-p-r" src="http://s4.postimg.org/n8ugz0v49/review_pdf.png"> <span>REVIEW LESSON</span> </div> </div> <div class="col-sm-6 col-md-6 col-lg-6"> <span>GRAPHING INEQUALITIES IN ONE VARIABLE </span><br><br> <div class="sk-p-dash"> <img width="20px" class="icon-sk-p-r" src="http://s8.postimg.org/n1o8p0tsx/review_video.png"> <span>WATCH VIDEO</span><br><br> <img width="20px" class="icon-sk-p-r" src="http://s4.postimg.org/n8ugz0v49/review_pdf.png"> <span>REVIEW LESSON</span> </div> </div> </div> </div> </div> </div> </div> </div> 您已实现此功能并正确导入库。 (有任何问题)