fragment
善书
这个作者很懒,什么都没留下…
展开
-
recyclerView更新数据,定位到某个位置
一共有三种方法 第一种:坐标定位 mRecycleView.smoothScrollBy(distance,duration); 第二种: mRecycleView.smoothScrollOffset() 第三种:推荐,索引定位,参数也可以通过adapter的getItemCount()-1定位到最底部 wrapRecyclerView.smoothScrollToPo原创 2017-02-09 10:46:08 · 5431 阅读 · 1 评论 -
Fragment可见再加载数据的方法
我们在做应用的过程中,一个应用的界面可能是多个Fragment切换而成的,但是如果在每次应用启动的时候就去加载大量的网络数据(假设你的每个Fragment都需要加载网络数据,你也可以理解为初始化大量资源)肯定是不好的,能不能有一种方法可以在我们看到我们的Fragment时再去加载对应的Fragment的数据呢? 当然是有的。 二 解决 Fragment虽然有onR转载 2017-01-19 13:43:56 · 1204 阅读 · 0 评论 -
谷歌官方下拉刷新功能SwipeRefreshLayout
只需要在自己布局的外面套上SwipeRefreshLayout就可以了,非常更好用, 代码中使用的方法也非常简单: 一:初始化布局 swipeRefreshLayout = (SwipeRefreshLayout) rootView.findViewById(R.id.swiperefreshlayout); 二:SwipeRefreshLayout有一个setColorSc原创 2017-01-19 13:49:50 · 368 阅读 · 0 评论 -
Toast工具类,解决连续打印toast以及可能出现的异常问题
import android.content.Context; import android.widget.Toast; /** * Created by yanshanshu on 2017/1/18. */ public class ToastUtils { /** 之前显示的内容 */ private static String oldMsg ; /** To转载 2017-01-20 11:29:21 · 350 阅读 · 0 评论