Seshu Vinay
Seshu Vinay
Count is ok(It was my mistake). But for cover photo, here is the reason: 2.3 graph api gives this response: { "data": [ { "cover_photo": "156878117993449", "count": 1, "id": "156878114660116",...
So, I guess library needs to be updated.
Any updates on this?
i have the same issue. Any fix/update on this?
Any updates on this issue? Or can anyone suggest any workaround to avoid this? When two cards are swiped immediately, I see this happen.
I added below lines in like and dislike methods to have like and dislike drawables: ``` ((ImageView) getChildAt(getChildCount() - 1).findViewById( R.id.interested_image)).setVisibility(View.VISIBLE); ((ImageView) getChildAt(getChildCount() - 1).findViewById( R.id.not_interested_image)).setVisibility(View.VISIBLE); ``` I just added...
Ok, I got it. Added CardModel to onLike and onDislike and it works.
I have an idea. Why don't you just add it in the layout file and put it's visibility to "gone" by default and change it to "visible" while dismissing(onLike and...
I gave answer to this in Issue #18
@dhaval0122 You have to add those ImageViews in std_card_inner.xml layout and make them invisible by default. and while liking and disliking, you can add the above lines to make them...