i add basically some properties to recyclerview
to set reverse such as this code:
<android.support.v7.widget.RecyclerView
android:id="@+id/messagesView"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layoutManager="LinearLayoutManager"
app:reverseLayout="true"
app:stackFromEnd="true"/>
what i try to do? i'm trying to show last item in recyclerview without scroll to last position, in pasted code i have first item in start and i have to scroll to last position programmatically
how can i change this xml layout to have this ability?