cube-sdk icon indicating copy to clipboard operation
cube-sdk copied to clipboard

A light package for Android development, it handles loading image and network request.

Results 47 cube-sdk issues
Sort by recently updated
recently updated
newest added

```java @Override public void onLoadFinish(LoadMoreContainer container, boolean empty, boolean hasMore) { if (!hasMore) { setVisibility(VISIBLE); if (empty) { mTextView.setText(R.string.load_more_loaded_empty); } else { mTextView.setText(R.string.load_more_loaded_no_more); } } else { setVisibility(INVISIBLE); } }...

在使用1.0.44这个版本的时候出现CLog不存在,看到源码里多处使用了CLog类但是这个类在最近几个版本里都删掉了

如果我设置了listview的滑动监听事件,加载更多就失效了? ` mListView.setOnScrollListener(new AbsListView.OnScrollListener() { @Override public void onScrollStateChanged(AbsListView view, int scrollState) { switch (scrollState){ //滑动停止 case AbsListView.OnScrollListener.SCROLL_STATE_IDLE: if (currentPosition>=3){ fab.setVisibility(View.VISIBLE); } break; //正在滚动 case AbsListView.OnScrollListener.SCROLL_STATE_TOUCH_SCROLL: fab.setVisibility(View.GONE); break; //手指抛动时滚动 case...

I use LoadMoreListViewContainer error message: java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.sdf.recycleexample/com.example.sdf.recycleexample.MainActivity}: java.lang.ClassCastException: android.support.v7.widget.RecyclerView cannot be cast to android.widget.ListView then I use other LoadMoreXXContainer ,it cannot use.

我使用了LoadMoreListViewContainer来做上拉加载,但是发现貌似只有自动加载更多,以及点击加载更多,而没有上拉加载更多(像下拉刷新那样子,有一个拉上去的效果)?

1. `hasNetWork` 2. enable use broad receiver to invoke app

enhancement

多个控件同时加载同一个图片地址 只成功一个 其他的走success方法 但是 里面返回的Drawable = null 再次全部重新加载OK

@liaohuqiu setImageBitmap无效,很急