-
使用v-layout对Recyclerview进行处理,使用这个框架基本就不行了,下拉需要拉很长的距离,上拉失效.我以为是我处理的问题,没办法尝试TwinklingRefreshLayout就没问题了.........这算不算是个bug
-
如题,这个是有一定很大概率会出现这个问题,请问是什么原因? 我是上层fragment 是不可swipe 所以没有 new SwipeBackFragmentDelegate ,没有嵌入 swipelayout.
-
`TextViewCompat.setTextAppearance(tvMessage, android.R.style.TextAppearance);`
中`16sp`导致Toast看起来特别奇怪,建议增加全局设置Toast的方法
-
遇到个很奇怪的问题,不知道从何改起,我这有个列表,上面有2个headview,当快速往上滑动的时候就会触发2次onLoadMoreRequested , 缓慢滑动的话就是正常的触发一次...
初始化适配器
private void initAdapter() {
GridLayoutManager scheduleLm = new GridLayoutManager(ge…
zofnk updated
6 years ago
-
需求:我需要分页加载列表布局,分页加载的json
{
"type": "1",
"load": "com.tmall.request.load.more",
"loadType": 1,
"items": [
]
}
然后在分页的监听里面做网络加载分页数据。
在实际中操作发现不能在分页加载的items的JsonArray中添加默认的数…
-
跟踪错误后,发现,在ToastUtils.java中第214行有如下一句话:
`TextViewCompat.setTextAppearance(tvMessage, android.R.style.TextAppearance);`
setTextAppearance会在低于API 23的机子上报错,建议执行此句时进行版本判断
希望修复
-
In retrofit 2.2.0 with kotlin ,sometimes the post param will became 0.
this is my code:
```
private fun callVideo(context: Context, chatId: Long) {
if (chatId == 0L) {
…
-
使用反射更改App的默认字体,发现ToastUtils弹出的字体不会被改变
-
private static void show(CharSequence text, int duration) {
cancel();
if (customView != null) {
sToast = new Toast(Utils.getContext());
sToast.setView(custo…
-
ToastUtils的静态成员变量sToast内存泄漏。是调用自定义Toast那个方法后触发的。
检测持有Toast.mNextView,引用到了自定义Toast View的上下文,导致调用该工具的Activity没法释放。感觉还是静态成员变量的锅。