Browse Source

Fix GIF button gone when keyboard is shown

renovate/org.robolectric-robolectric-4.x
Ammar Githam 4 years ago
parent
commit
23830f5a9d
  1. 1
      app/src/main/java/awais/instagrabber/fragments/directmessages/DirectMessageThreadFragment.java

1
app/src/main/java/awais/instagrabber/fragments/directmessages/DirectMessageThreadFragment.java

@ -1424,6 +1424,7 @@ public class DirectMessageThreadFragment extends Fragment implements DirectReact
ObjectAnimator.ofFloat(binding.inputBg, TRANSLATION_Y, -height),
ObjectAnimator.ofFloat(binding.recordView, TRANSLATION_Y, -height),
ObjectAnimator.ofFloat(binding.emojiToggle, TRANSLATION_Y, -height),
ObjectAnimator.ofFloat(binding.gif, TRANSLATION_Y, -height),
ObjectAnimator.ofFloat(binding.gallery, TRANSLATION_Y, -height),
ObjectAnimator.ofFloat(binding.camera, TRANSLATION_Y, -height),
ObjectAnimator.ofFloat(binding.send, TRANSLATION_Y, -height),

Loading…
Cancel
Save