小编典典

在RecyclerView的最后位置找到视图?

java

下面的代码是在第一个位置上查找视图。如何找到最后一个位置的视图?

TextView textView = 
  (TextView)myRecyclerView.findViewHolderForAdapterPosition(0).itemView.findViewById(R.id.myTV); //this is first position

这是我的xml

    <android.support.v7.widget.RecyclerView
        android:id="@+id/messageRecyclerView"
       android:layout_width="match_parent"
       android:layout_height="match_parent"
        android:nestedScrollingEnabled="false" />

阅读 289

收藏
2020-12-03

共1个答案

小编典典

试试这个

TextView textView =(TextView)myRecyclerView.findViewHolderForAdapterPosition(mFirebaseAdapter.getItemCount()-1).itemView.findViewById(R.id.myTV);

试试这个

  TextView textView = (TextView) myRecyclerView.findViewHolderForAdapterPosition(arraylist.size()-1).itemView.findViewById(R.id.myTV);

或尝试这个

只需执行以下操作即可:

if(position == YouList.size()-1)
{
  /*lastItem*/
}
2020-12-03