以下代码是在第一个位置找到视图。如何在最后一个位置找到视图?
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" />
答案 0 :(得分:2)
试试这个
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*/
}
答案 1 :(得分:0)
TextView textView =(TextView)myRecyclerView.findViewHolderForAdapterPosition(Arraylist.size()-1).itemView.findViewById(R.id.myTV);
答案 2 :(得分:0)
您可以尝试
TextView textView = (TextView) myRecyclerView.findViewHolderForAdapterPosition(myRecyclerView.getAdapter().getItemCount() - 1).itemView.findViewById(R.id.myTV);