Janishar Ali

Results 72 comments of Janishar Ali

@rijal10 Yeah sure go ahead!

@dhruvgajwa Refer this: https://medium.com/@janishar.ali/modifying-android-tinder-swipe-view-example-to-support-auto-resize-94f9c64f641e Try using this to see if it works: ``` java .setViewWidth(...) .setViewHeight(...) ```

@Latuile09 You should use SwipeDirectionView for these events: https://janishar.com/PlaceHolderView/docs/sdv-intro.html

@Latuile09 You need to supply these callbacks to SwipeDirectionalView ```java @SwipeInDirectional public void onSwipeInDirectional(SwipeDirection direction) { Log.d("DEBUG", "SwipeInDirectional " + direction.name()); } @SwipeOutDirectional public void onSwipeOutDirectional(SwipeDirection direction) { Log.d("DEBUG", "SwipeOutDirectional...

@Latuile09 Refer to this example: https://janishar.com/PlaceHolderView/blog/2018/3/12/tinder-swipe-v2.html

@debugman5 Will add support for the list of views addition in the future release

@NaveenDevrani Use `SwipeHead` for this ```java @SwipeHead public void onSwipeHead() { // do something when the card in on the top } ```

@NaveenDevrani You can add multiple images in the card but can not use a list view.

@erishiraj You can use ItemRemoveListener http://janishar.com/PlaceHolderView/docs/sphv-view-operations.html#item-remove-listener

refer this for help: https://blog.mindorks.com/modifying-android-tinder-swipe-view-example-to-support-auto-resize