2015-11-18 23:52:26 +01:00
|
|
|
package org.thoughtcrime.securesms.components;
|
|
|
|
|
|
|
|
import android.annotation.TargetApi;
|
|
|
|
import android.content.Context;
|
2016-12-27 00:14:23 +01:00
|
|
|
import android.net.Uri;
|
2015-11-18 23:52:26 +01:00
|
|
|
import android.os.Build;
|
2015-11-22 19:44:53 +01:00
|
|
|
import android.support.annotation.NonNull;
|
2015-11-18 23:52:26 +01:00
|
|
|
import android.support.annotation.Nullable;
|
2017-01-04 21:43:02 +01:00
|
|
|
import android.support.v4.view.ViewCompat;
|
2017-01-12 20:18:03 +01:00
|
|
|
import android.text.format.DateUtils;
|
2015-11-18 23:52:26 +01:00
|
|
|
import android.util.AttributeSet;
|
|
|
|
import android.util.Log;
|
2015-11-22 19:44:53 +01:00
|
|
|
import android.view.KeyEvent;
|
2015-11-18 23:52:26 +01:00
|
|
|
import android.view.View;
|
|
|
|
import android.view.animation.AlphaAnimation;
|
|
|
|
import android.view.animation.Animation;
|
|
|
|
import android.view.animation.AnimationSet;
|
|
|
|
import android.view.animation.TranslateAnimation;
|
|
|
|
import android.widget.LinearLayout;
|
|
|
|
import android.widget.TextView;
|
|
|
|
import android.widget.Toast;
|
|
|
|
|
|
|
|
import org.thoughtcrime.securesms.R;
|
2015-11-22 19:44:53 +01:00
|
|
|
import org.thoughtcrime.securesms.components.emoji.EmojiDrawer;
|
|
|
|
import org.thoughtcrime.securesms.components.emoji.EmojiToggle;
|
|
|
|
import org.thoughtcrime.securesms.util.TextSecurePreferences;
|
2017-09-10 08:46:48 +02:00
|
|
|
import org.thoughtcrime.securesms.util.Util;
|
2015-11-18 23:52:26 +01:00
|
|
|
import org.thoughtcrime.securesms.util.ViewUtil;
|
|
|
|
import org.thoughtcrime.securesms.util.concurrent.AssertedSuccessListener;
|
|
|
|
import org.thoughtcrime.securesms.util.concurrent.ListenableFuture;
|
|
|
|
import org.thoughtcrime.securesms.util.concurrent.SettableFuture;
|
|
|
|
|
|
|
|
import java.util.concurrent.TimeUnit;
|
|
|
|
import java.util.concurrent.atomic.AtomicLong;
|
|
|
|
|
2015-11-22 19:44:53 +01:00
|
|
|
public class InputPanel extends LinearLayout
|
2016-12-27 00:14:23 +01:00
|
|
|
implements MicrophoneRecorderView.Listener,
|
|
|
|
KeyboardAwareLinearLayout.OnKeyboardShownListener,
|
|
|
|
EmojiDrawer.EmojiEventListener
|
|
|
|
{
|
2015-11-18 23:52:26 +01:00
|
|
|
|
|
|
|
private static final String TAG = InputPanel.class.getSimpleName();
|
|
|
|
|
|
|
|
private static final int FADE_TIME = 150;
|
|
|
|
|
2015-11-22 19:44:53 +01:00
|
|
|
private EmojiToggle emojiToggle;
|
2016-12-27 00:14:23 +01:00
|
|
|
private ComposeText composeText;
|
2015-11-22 19:44:53 +01:00
|
|
|
private View quickCameraToggle;
|
|
|
|
private View quickAudioToggle;
|
|
|
|
private View buttonToggle;
|
|
|
|
private View recordingContainer;
|
2015-11-18 23:52:26 +01:00
|
|
|
|
|
|
|
private MicrophoneRecorderView microphoneRecorderView;
|
|
|
|
private SlideToCancel slideToCancel;
|
|
|
|
private RecordTime recordTime;
|
|
|
|
|
|
|
|
private @Nullable Listener listener;
|
2015-11-22 19:44:53 +01:00
|
|
|
private boolean emojiVisible;
|
2015-11-18 23:52:26 +01:00
|
|
|
|
|
|
|
public InputPanel(Context context) {
|
|
|
|
super(context);
|
|
|
|
}
|
|
|
|
|
|
|
|
public InputPanel(Context context, AttributeSet attrs) {
|
|
|
|
super(context, attrs);
|
|
|
|
}
|
|
|
|
|
|
|
|
@TargetApi(Build.VERSION_CODES.HONEYCOMB)
|
|
|
|
public InputPanel(Context context, AttributeSet attrs, int defStyleAttr) {
|
|
|
|
super(context, attrs, defStyleAttr);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onFinishInflate() {
|
|
|
|
super.onFinishInflate();
|
|
|
|
|
|
|
|
this.emojiToggle = ViewUtil.findById(this, R.id.emoji_toggle);
|
|
|
|
this.composeText = ViewUtil.findById(this, R.id.embedded_text_editor);
|
|
|
|
this.quickCameraToggle = ViewUtil.findById(this, R.id.quick_camera_toggle);
|
|
|
|
this.quickAudioToggle = ViewUtil.findById(this, R.id.quick_audio_toggle);
|
|
|
|
this.buttonToggle = ViewUtil.findById(this, R.id.button_toggle);
|
|
|
|
this.recordingContainer = ViewUtil.findById(this, R.id.recording_container);
|
|
|
|
this.recordTime = new RecordTime((TextView) ViewUtil.findById(this, R.id.record_time));
|
|
|
|
this.slideToCancel = new SlideToCancel(ViewUtil.findById(this, R.id.slide_to_cancel));
|
|
|
|
this.microphoneRecorderView = ViewUtil.findById(this, R.id.recorder_view);
|
|
|
|
this.microphoneRecorderView.setListener(this);
|
|
|
|
|
2016-11-22 03:58:10 +01:00
|
|
|
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN) {
|
2015-11-18 23:52:26 +01:00
|
|
|
this.microphoneRecorderView.setVisibility(View.GONE);
|
|
|
|
this.microphoneRecorderView.setClickable(false);
|
2016-11-22 03:58:10 +01:00
|
|
|
}
|
2015-11-22 19:44:53 +01:00
|
|
|
|
|
|
|
if (TextSecurePreferences.isSystemEmojiPreferred(getContext())) {
|
|
|
|
emojiToggle.setVisibility(View.GONE);
|
|
|
|
emojiVisible = false;
|
|
|
|
} else {
|
|
|
|
emojiToggle.setVisibility(View.VISIBLE);
|
|
|
|
emojiVisible = true;
|
|
|
|
}
|
2015-11-18 23:52:26 +01:00
|
|
|
}
|
|
|
|
|
2017-01-19 20:31:41 +01:00
|
|
|
public void setListener(final @NonNull Listener listener) {
|
2015-11-18 23:52:26 +01:00
|
|
|
this.listener = listener;
|
2015-11-22 19:44:53 +01:00
|
|
|
|
2017-11-25 07:00:30 +01:00
|
|
|
emojiToggle.setOnClickListener(v -> listener.onEmojiToggle());
|
2015-11-18 23:52:26 +01:00
|
|
|
}
|
|
|
|
|
2016-12-27 00:14:23 +01:00
|
|
|
public void setMediaListener(@NonNull MediaListener listener) {
|
|
|
|
composeText.setMediaListener(listener);
|
|
|
|
}
|
|
|
|
|
2017-01-19 20:31:41 +01:00
|
|
|
public void setEmojiDrawer(@NonNull EmojiDrawer emojiDrawer) {
|
|
|
|
emojiToggle.attach(emojiDrawer);
|
|
|
|
}
|
|
|
|
|
2017-11-25 07:00:30 +01:00
|
|
|
@Override
|
|
|
|
public void onRecordPermissionRequired() {
|
|
|
|
if (listener != null) listener.onRecorderPermissionRequired();
|
|
|
|
}
|
|
|
|
|
2015-11-18 23:52:26 +01:00
|
|
|
@Override
|
|
|
|
public void onRecordPressed(float startPositionX) {
|
|
|
|
if (listener != null) listener.onRecorderStarted();
|
|
|
|
recordTime.display();
|
|
|
|
slideToCancel.display(startPositionX);
|
|
|
|
|
2015-11-22 19:44:53 +01:00
|
|
|
if (emojiVisible) ViewUtil.fadeOut(emojiToggle, FADE_TIME, View.INVISIBLE);
|
2015-11-18 23:52:26 +01:00
|
|
|
ViewUtil.fadeOut(composeText, FADE_TIME, View.INVISIBLE);
|
|
|
|
ViewUtil.fadeOut(quickCameraToggle, FADE_TIME, View.INVISIBLE);
|
|
|
|
ViewUtil.fadeOut(quickAudioToggle, FADE_TIME, View.INVISIBLE);
|
|
|
|
ViewUtil.fadeOut(buttonToggle, FADE_TIME, View.INVISIBLE);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onRecordReleased(float x) {
|
2015-11-20 19:22:36 +01:00
|
|
|
long elapsedTime = onRecordHideEvent(x);
|
2015-11-18 23:52:26 +01:00
|
|
|
|
|
|
|
if (listener != null) {
|
2015-11-20 19:22:36 +01:00
|
|
|
Log.w(TAG, "Elapsed time: " + elapsedTime);
|
|
|
|
if (elapsedTime > 1000) {
|
2015-11-18 23:52:26 +01:00
|
|
|
listener.onRecorderFinished();
|
|
|
|
} else {
|
2015-11-20 19:25:08 +01:00
|
|
|
Toast.makeText(getContext(), R.string.InputPanel_tap_and_hold_to_record_a_voice_message_release_to_send, Toast.LENGTH_LONG).show();
|
2015-11-18 23:52:26 +01:00
|
|
|
listener.onRecorderCanceled();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onRecordMoved(float x, float absoluteX) {
|
|
|
|
slideToCancel.moveTo(x);
|
|
|
|
|
2017-01-04 21:43:02 +01:00
|
|
|
int direction = ViewCompat.getLayoutDirection(this);
|
|
|
|
float position = absoluteX / recordingContainer.getWidth();
|
|
|
|
|
|
|
|
if (direction == ViewCompat.LAYOUT_DIRECTION_LTR && position <= 0.5 ||
|
|
|
|
direction == ViewCompat.LAYOUT_DIRECTION_RTL && position >= 0.6)
|
|
|
|
{
|
2015-11-18 23:52:26 +01:00
|
|
|
this.microphoneRecorderView.cancelAction();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onRecordCanceled(float x) {
|
|
|
|
onRecordHideEvent(x);
|
|
|
|
if (listener != null) listener.onRecorderCanceled();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void onPause() {
|
|
|
|
this.microphoneRecorderView.cancelAction();
|
|
|
|
}
|
|
|
|
|
2015-11-22 19:44:57 +01:00
|
|
|
public void setEnabled(boolean enabled) {
|
|
|
|
composeText.setEnabled(enabled);
|
|
|
|
emojiToggle.setEnabled(enabled);
|
|
|
|
quickAudioToggle.setEnabled(enabled);
|
|
|
|
quickCameraToggle.setEnabled(enabled);
|
|
|
|
}
|
|
|
|
|
2015-11-20 19:22:36 +01:00
|
|
|
private long onRecordHideEvent(float x) {
|
|
|
|
ListenableFuture<Void> future = slideToCancel.hide(x);
|
|
|
|
long elapsedTime = recordTime.hide();
|
|
|
|
|
2015-11-18 23:52:26 +01:00
|
|
|
future.addListener(new AssertedSuccessListener<Void>() {
|
|
|
|
@Override
|
|
|
|
public void onSuccess(Void result) {
|
2015-11-22 19:44:53 +01:00
|
|
|
if (emojiVisible) ViewUtil.fadeIn(emojiToggle, FADE_TIME);
|
2015-11-18 23:52:26 +01:00
|
|
|
ViewUtil.fadeIn(composeText, FADE_TIME);
|
|
|
|
ViewUtil.fadeIn(quickCameraToggle, FADE_TIME);
|
|
|
|
ViewUtil.fadeIn(quickAudioToggle, FADE_TIME);
|
|
|
|
ViewUtil.fadeIn(buttonToggle, FADE_TIME);
|
|
|
|
}
|
|
|
|
});
|
2015-11-20 19:22:36 +01:00
|
|
|
|
|
|
|
return elapsedTime;
|
2015-11-18 23:52:26 +01:00
|
|
|
}
|
|
|
|
|
2015-11-22 19:44:53 +01:00
|
|
|
@Override
|
|
|
|
public void onKeyboardShown() {
|
|
|
|
emojiToggle.setToEmoji();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onKeyEvent(KeyEvent keyEvent) {
|
|
|
|
composeText.dispatchKeyEvent(keyEvent);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onEmojiSelected(String emoji) {
|
|
|
|
composeText.insertEmoji(emoji);
|
|
|
|
}
|
|
|
|
|
2015-11-18 23:52:26 +01:00
|
|
|
public interface Listener {
|
2017-11-25 07:00:30 +01:00
|
|
|
void onRecorderStarted();
|
|
|
|
void onRecorderFinished();
|
|
|
|
void onRecorderCanceled();
|
|
|
|
void onRecorderPermissionRequired();
|
|
|
|
void onEmojiToggle();
|
2015-11-18 23:52:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
private static class SlideToCancel {
|
|
|
|
|
|
|
|
private final View slideToCancelView;
|
|
|
|
|
|
|
|
private float startPositionX;
|
|
|
|
|
|
|
|
public SlideToCancel(View slideToCancelView) {
|
|
|
|
this.slideToCancelView = slideToCancelView;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void display(float startPositionX) {
|
|
|
|
this.startPositionX = startPositionX;
|
|
|
|
ViewUtil.fadeIn(this.slideToCancelView, FADE_TIME);
|
|
|
|
}
|
|
|
|
|
|
|
|
public ListenableFuture<Void> hide(float x) {
|
|
|
|
final SettableFuture<Void> future = new SettableFuture<>();
|
2017-01-04 21:43:02 +01:00
|
|
|
float offset = getOffset(x);
|
2015-11-18 23:52:26 +01:00
|
|
|
|
|
|
|
AnimationSet animation = new AnimationSet(true);
|
|
|
|
animation.addAnimation(new TranslateAnimation(Animation.ABSOLUTE, offset,
|
|
|
|
Animation.ABSOLUTE, 0,
|
|
|
|
Animation.RELATIVE_TO_SELF, 0,
|
|
|
|
Animation.RELATIVE_TO_SELF, 0));
|
|
|
|
animation.addAnimation(new AlphaAnimation(1, 0));
|
|
|
|
|
|
|
|
animation.setDuration(MicrophoneRecorderView.ANIMATION_DURATION);
|
|
|
|
animation.setFillBefore(true);
|
|
|
|
animation.setFillAfter(false);
|
|
|
|
animation.setAnimationListener(new Animation.AnimationListener() {
|
|
|
|
@Override
|
|
|
|
public void onAnimationStart(Animation animation) {}
|
|
|
|
@Override
|
|
|
|
public void onAnimationEnd(Animation animation) {
|
|
|
|
future.set(null);
|
|
|
|
}
|
|
|
|
@Override
|
|
|
|
public void onAnimationRepeat(Animation animation) {}
|
|
|
|
});
|
|
|
|
|
|
|
|
slideToCancelView.setVisibility(View.GONE);
|
|
|
|
slideToCancelView.startAnimation(animation);
|
|
|
|
|
|
|
|
return future;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void moveTo(float x) {
|
2017-01-04 21:43:02 +01:00
|
|
|
float offset = getOffset(x);
|
2015-11-18 23:52:26 +01:00
|
|
|
Animation animation = new TranslateAnimation(Animation.ABSOLUTE, offset,
|
|
|
|
Animation.ABSOLUTE, offset,
|
|
|
|
Animation.RELATIVE_TO_SELF, 0,
|
|
|
|
Animation.RELATIVE_TO_SELF, 0);
|
|
|
|
|
|
|
|
animation.setDuration(0);
|
|
|
|
animation.setFillAfter(true);
|
|
|
|
animation.setFillBefore(true);
|
|
|
|
|
|
|
|
slideToCancelView.startAnimation(animation);
|
|
|
|
}
|
|
|
|
|
2017-01-04 21:43:02 +01:00
|
|
|
private float getOffset(float x) {
|
|
|
|
return ViewCompat.getLayoutDirection(slideToCancelView) == ViewCompat.LAYOUT_DIRECTION_LTR ?
|
|
|
|
-Math.max(0, this.startPositionX - x) : Math.max(0, x - this.startPositionX);
|
|
|
|
}
|
|
|
|
|
2015-11-18 23:52:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
private static class RecordTime implements Runnable {
|
|
|
|
|
|
|
|
private final TextView recordTimeView;
|
|
|
|
private final AtomicLong startTime = new AtomicLong(0);
|
|
|
|
|
|
|
|
private RecordTime(TextView recordTimeView) {
|
|
|
|
this.recordTimeView = recordTimeView;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void display() {
|
|
|
|
this.startTime.set(System.currentTimeMillis());
|
2017-01-12 20:18:03 +01:00
|
|
|
this.recordTimeView.setText(DateUtils.formatElapsedTime(0));
|
2015-11-18 23:52:26 +01:00
|
|
|
ViewUtil.fadeIn(this.recordTimeView, FADE_TIME);
|
2017-09-10 08:46:48 +02:00
|
|
|
Util.runOnMainDelayed(this, TimeUnit.SECONDS.toMillis(1));
|
2015-11-18 23:52:26 +01:00
|
|
|
}
|
|
|
|
|
2015-11-20 19:22:36 +01:00
|
|
|
public long hide() {
|
|
|
|
long elapsedtime = System.currentTimeMillis() - startTime.get();
|
2015-11-18 23:52:26 +01:00
|
|
|
this.startTime.set(0);
|
|
|
|
ViewUtil.fadeOut(this.recordTimeView, FADE_TIME, View.INVISIBLE);
|
2015-11-20 19:22:36 +01:00
|
|
|
return elapsedtime;
|
2015-11-18 23:52:26 +01:00
|
|
|
}
|
2015-11-20 19:25:08 +01:00
|
|
|
|
2015-11-18 23:52:26 +01:00
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
long localStartTime = startTime.get();
|
|
|
|
if (localStartTime > 0) {
|
|
|
|
long elapsedTime = System.currentTimeMillis() - localStartTime;
|
2017-01-12 21:26:50 +01:00
|
|
|
recordTimeView.setText(DateUtils.formatElapsedTime(TimeUnit.MILLISECONDS.toSeconds(elapsedTime)));
|
2017-09-10 08:46:48 +02:00
|
|
|
Util.runOnMainDelayed(this, TimeUnit.SECONDS.toMillis(1));
|
2015-11-18 23:52:26 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-12-27 00:14:23 +01:00
|
|
|
|
|
|
|
public interface MediaListener {
|
|
|
|
public void onMediaSelected(@NonNull Uri uri, String contentType);
|
|
|
|
}
|
2015-11-18 23:52:26 +01:00
|
|
|
}
|