yisizhu520
yisizhu520
I found the reason in class `DisplayBitmapTask` ``` @Override public void run() { if (imageAware.isCollected()) { L.d(LOG_TASK_CANCELLED_IMAGEAWARE_COLLECTED, memoryCacheKey); listener.onLoadingCancelled(imageUri, imageAware.getWrappedView()); } else if (isViewWasReused()) { L.d(LOG_TASK_CANCELLED_IMAGEAWARE_REUSED, memoryCacheKey); listener.onLoadingCancelled(imageUri, imageAware.getWrappedView()); }...
This FlowLayout just supports **horizontal** flow layout, so it doesn't make sense that the children of a horizontal FlowLayout use `"start/left"` or `"end/right"` layout_gravity.
oh, I get your point now. It's really userful in some situations. But It's a little complicated to layout all children if the attr layout_gravity = "left/right" is supported in...
yeah, I agree with your idea. You can hava a look at the `FlexBoxLayout` library provided by Google recently. Maybe it can help you.
@zdd the margin value will be ignored when you add child view with `ViewGroup.MarginLayoutParams` instead of `FlowLayout.LayoutParams`. The following code can solve the problem: ``` FlowLayout.LayoutParams lp = new FlowLayout.LayoutParams(FlowLayout.LayoutParams.WRAP_CONTENT,...
Yeah, the change is what I exactly need and better than my idea. I set the `textCursorDrawable` attribute for the EditText: ``` android:textCursorDrawable="@drawable/ic_cursor_drawable" ``` And remove the mask view. It...
> > docker pull chenzhaoyu94/chatgpt-web:v2.10.0 Error response from daemon: manifest for chenzhaoyu94/chatgpt-web:v2.10.0 not found > > 直接拉 [latest](https://hub.docker.com/layers/chenzhaoyu94/chatgpt-web/latest/images/sha256-f713072559f013fde6f2c1291b7ed16cf675cc1fcbf2d23c7c7dfa43eaed061b?context=repo) 也是一样的 请问这个问题怎么解决的呢?我也遇到这个问题了,docker pull 拉哪个tag的都是这个报错......