teaim

Results 10 comments of teaim

@marcosnils Yes, that's what I want. It's easy to switch session window

可以设置渐变背景 修改addTranslucentView方法中fakeTranslucentView.setBackgroundResource(R.drawable.side_nav_bar); side_nav_bar.xml ` `

@KingJA 测试发现, 必须先执行showCallback, 再执行setCallback才不会报"onCreateView中返回0"的异常

因为不执行show的, HintCallback的View不会添加上去, 此时的rootView为null, 默认会走inflate通过onCreateView获取布局id进行填充, 但是HintCallback不是通过布局生成View, 而是通过代码创建的View, 所以一定会报报"onCreateView中返回0"的异常

感觉可以和getRootView一样 ```Java public View getRootView() { int resId = onCreateView(); if (resId == 0 && rootView != null) { return rootView; } if (onBuildView(context) != null) { rootView = onBuildView(context);...

我是在操作点击"回到今天"刷新列表的时候发现的这个问题

这个我自己手动formatter了一下, 哈哈 小问题还是自己弄一下比较方便 大神比较忙, 我提了好几个问题等着修复呢

赞赞赞, 找了这么多个, 这个算是解决问题最全面的, 试了很多其他的方法, 一般情况还好, 特殊情况总是出现各种奇奇怪怪的bug

I'm currently using chrome.storage.local instead of chrome.storage.sync. It's not support sync across multiple devices. I'm considering GitHub Gist or WebDAV for syncing.