libill

Results 3 comments of libill

> > There are a number of pieces that need to come together for this but first we need to get non-JVM Kotlin protos and that is something we are...

modify this code will fix this bug: at SizeViewHolder.java.java 53 line modify: public void onHidden() { getView().getLayoutParams().height = ViewGroup.LayoutParams.WRAP_CONTENT; getView().setVisibility(View.GONE); } to: public void onHidden() { getView().getLayoutParams().height = ViewGroup.LayoutParams.WRAP_CONTENT; getView().setVisibility(View.VISIBLE);...

I also encountered this problem,This is very serious