Remove GIFs from attachment keyboard.

This commit is contained in:
Cody Henthorne
2021-06-03 13:05:38 -04:00
committed by GitHub
parent a3a4b10f83
commit 84e27e7bff
7 changed files with 33 additions and 15 deletions

View File

@@ -431,6 +431,14 @@ public class InputPanel extends LinearLayout
microphoneRecorderView.unlockAction();
}
public void showGifMovedTooltip() {
TooltipPopup.forTarget(mediaKeyboard)
.setBackgroundTint(ContextCompat.getColor(getContext(), R.color.signal_accent_primary))
.setTextColor(getResources().getColor(R.color.core_white))
.setText(R.string.ConversationActivity__gifs_are_now_here)
.show(TooltipPopup.POSITION_ABOVE);
}
public interface Listener {
void onRecorderStarted();
void onRecorderLocked();