我正在Firebase
制作Android应用程序,我希望看到与Facebook等相同的新数据。
如何在用户上传新数据时在我的应用中显示数据请告诉我该怎么做
//layout recycler
recyler_view=(RecyclerView)findViewById(R.id.recyclerView);
recyler_view.setHasFixedSize(true);
layoutManager=new LinearLayoutManager(this);
recyler_view.setLayoutManager(layoutManager);
#xml#
<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</android.support.v7.widget.RecyclerView>
</LinearLayout>
答案 0 :(得分:0)
尝试将此属性应用于 layoutManager
layoutManager.setStackFromEnd(true); // it will reverse the stack (bottom to top)
layoutManager.setReverseLayout(true); // When set to true, If RecyclerView is LTR, than it will layout from RTL
recyler_view.setLayoutManager(layoutManager);