Meta-Ben

Results 32 comments of Meta-Ben

This is really not satisfaying answer ... A splashcreen libraries should work as expected on any device ... I had to add it manually for each device to do the...

here it is : ``` FancyShowCaseView.Builder(activity) .focusOn(focus) .disableFocusAnimation() .enableAutoTextPosition() .titleSize(19, TypedValue.COMPLEX_UNIT_DIP) .title(text) .titleGravity(Gravity.BOTTOM) .focusShape(FocusShape.ROUNDED_RECTANGLE) .roundRectRadius(36) .build() ```

ofc the view is the following ``` ``` on the xml I provide you in my first post Thank you to try solving my problem 😄

I will try this 😄 and I will return to you for the result but why this work well on another device and fail on the nexus 4 ?

Unfortunately the problem is the same with a Delayed ( I put it to 1000ms by range of 100 ) 😞

Okay, - How I populate the scrollview : ``` view.list.adapter = adapter view.list.addOnItemChangedListener(this) view.list.scrollToPosition(0) view.list.setSlideOnFling(true) view.list.setItemTransitionTimeMillis(220) view.list.setSlideOnFlingThreshold(500) view.list.setItemTransformer( ScaleTransformer.Builder() .setMinScale(0.7f) .build() ) ``` - I will try it soon and...

the sample run well on the nexus 4

I'll try but still same problem , My others screen are also ConstraintLayout but it work well on them

The only diff is that view is construct bottom to Top not top to bottom