Alashov Berkeli
Alashov Berkeli
Also, I've noticed some apps like Gmail, Telegram perform haptic feedback when threshold is crossed back (indicating action won't be executed). Maybe we should create callbacks for these events (threshold...
Actually it doesn't require fast swiping. Small flickering happens even swiping slowly: https://user-images.githubusercontent.com/5840013/188530715-60fd9249-d337-45e9-8307-cec853365ad5.mp4
Dat is great!
https://gist.github.com/alashow/c1a7be2020059e4ae8160328fbaf1a8c was the old instructions. I removed it from readme because it's not that useful anymore and doesn't include deemix-py api deployment https://gist.github.com/alashow/15978818a82cb4a85e765dc348ce463e
Return bigger aspectRatio when your itemList(your data array) count is 1. ``` @Override public double aspectRatioForIndex(int index) { // ... if (mData.size() == 1) return 10.0; //10 is just example,...
@eshkoliGilad How about returning big aspect ratio for needed positions? Didn't test, but in my app i have recyclerView (with greedoLM) with images as items, and some wide images with...
> Or is it that you want a justified width, so that the last row (e.x. with your second screenshot) will adjust the height so that it fits the entire...
@JVillella, any updates on this? BTW, what if the last row have more than one image? My goal is to not leave empty spaces when more width is available.
@quinnjn Apparently it's because of the theme. It works as expected with appcompat themes, but not material components themes. In your sample, the app theme is set to [Theme.AppCompat.Light.DarkActionBar](https://github.com/quinnjn/android-card-form-issue-74/blob/master/app/src/main/res/values/styles.xml#L4) and...
Can be fixed by overriding `bt_text_input_layout` style and extending legacy input layout style `Widget.Design.TextInputLayout`: ```xml match_parent wrap_content 12dp polite ```