List view items changes position when scrolling android?

前端 未结 4 1872
花落未央
花落未央 2020-11-27 15:31

In my application i used custom list view adapter. In the list view item i added another layout. because in my service one order have any number of order items. For showing

4条回答
  •  我在风中等你
    2020-11-27 16:02

    In your adapter class override these two methods

    @Override
      public int getViewTypeCount() {
    
       return getCount();
      }
    
      @Override
      public int getItemViewType(int position) {
    
       return position;
      }
    

提交回复
热议问题