Files
arcanechat-android/MessengerProj/src/main/java/com/b44t/messenger/Components/PasscodeView.java
T
2017-10-22 13:31:11 +02:00

788 lines
33 KiB
Java

/*******************************************************************************
*
* Delta Chat Android
* (C) 2013-2016 Nikolai Kudashov
* (C) 2017 Björn Petersen
* Contact: r10s@b44t.com, http://b44t.com
*
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation, either version 3 of the License, or (at your option) any later
* version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along with
* this program. If not, see http://www.gnu.org/licenses/ .
*
******************************************************************************/
package com.b44t.messenger.Components;
import android.animation.Animator;
import android.animation.AnimatorSet;
import android.animation.ObjectAnimator;
import android.app.Activity;
import android.app.AlertDialog;
import android.content.Context;
import android.content.DialogInterface;
import android.content.res.Configuration;
import android.graphics.Canvas;
import android.graphics.Rect;
import android.graphics.Typeface;
import android.graphics.drawable.ColorDrawable;
import android.graphics.drawable.Drawable;
import android.os.Build;
import android.os.Vibrator;
import android.support.v4.hardware.fingerprint.FingerprintManagerCompat;
import android.support.v4.os.CancellationSignal;
import android.text.Editable;
import android.text.InputFilter;
import android.text.InputType;
import android.text.TextWatcher;
import android.text.method.PasswordTransformationMethod;
import android.util.TypedValue;
import android.view.ActionMode;
import android.view.Gravity;
import android.view.KeyEvent;
import android.view.Menu;
import android.view.MenuItem;
import android.view.MotionEvent;
import android.view.View;
import android.view.inputmethod.EditorInfo;
import android.widget.EditText;
import android.widget.FrameLayout;
import android.widget.ImageView;
import android.widget.RelativeLayout;
import android.widget.TextView;
import com.b44t.messenger.AndroidUtilities;
import com.b44t.messenger.NotificationCenter;
import com.b44t.messenger.ApplicationLoader;
import com.b44t.messenger.R;
import com.b44t.messenger.UserConfig;
import com.b44t.messenger.AnimatorListenerAdapterProxy;
import com.b44t.messenger.ActionBar.Theme;
import java.util.ArrayList;
import java.util.Locale;
public class PasscodeView extends FrameLayout {
public interface PasscodeViewDelegate {
void didAcceptedPassword();
}
private Drawable backgroundDrawable;
private FrameLayout numbersFrameLayout;
private ArrayList<TextView> numberTextViews;
private ArrayList<TextView> lettersTextViews;
private ArrayList<FrameLayout> numberFrameLayouts;
private FrameLayout passwordFrameLayout;
private ImageView eraseView;
private EditText passwordEditText;
private FrameLayout backgroundFrameLayout;
private TextView passcodeTextView;
private ImageView checkImage;
private int keyboardHeight = 0;
private CancellationSignal cancellationSignal;
private TextView fingerprintStatusTextView;
private boolean selfCancelled;
private AlertDialog fingerprintDialog;
private Rect rect = new Rect();
private PasscodeViewDelegate delegate;
public PasscodeView(final Context context) {
super(context);
setWillNotDraw(false);
setVisibility(GONE);
backgroundFrameLayout = new FrameLayout(context);
addView(backgroundFrameLayout);
LayoutParams layoutParams = (LayoutParams) backgroundFrameLayout.getLayoutParams();
layoutParams.width = LayoutHelper.MATCH_PARENT;
layoutParams.height = LayoutHelper.MATCH_PARENT;
backgroundFrameLayout.setLayoutParams(layoutParams);
passwordFrameLayout = new FrameLayout(context);
addView(passwordFrameLayout);
layoutParams = (LayoutParams) passwordFrameLayout.getLayoutParams();
layoutParams.width = LayoutHelper.MATCH_PARENT;
layoutParams.height = LayoutHelper.MATCH_PARENT;
layoutParams.gravity = Gravity.TOP | Gravity.START;
passwordFrameLayout.setLayoutParams(layoutParams);
ImageView imageView = new ImageView(context);
imageView.setScaleType(ImageView.ScaleType.FIT_XY);
imageView.setImageResource(R.drawable.ic_launcher /* EDIT BY MR -- was: passcode_logo */);
passwordFrameLayout.addView(imageView);
layoutParams = (LayoutParams) imageView.getLayoutParams();
if (AndroidUtilities.density < 1) {
layoutParams.width = AndroidUtilities.dp(30);
layoutParams.height = AndroidUtilities.dp(30);
} else {
layoutParams.width = AndroidUtilities.dp(40);
layoutParams.height = AndroidUtilities.dp(40);
}
layoutParams.gravity = Gravity.CENTER_HORIZONTAL | Gravity.BOTTOM;
layoutParams.bottomMargin = AndroidUtilities.dp(100);
imageView.setLayoutParams(layoutParams);
passcodeTextView = new TextView(context);
passcodeTextView.setTextColor(0xffffffff);
passcodeTextView.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 14);
passcodeTextView.setGravity(Gravity.CENTER_HORIZONTAL);
passwordFrameLayout.addView(passcodeTextView);
layoutParams = (LayoutParams) passcodeTextView.getLayoutParams();
layoutParams.width = LayoutHelper.WRAP_CONTENT;
layoutParams.height = LayoutHelper.WRAP_CONTENT;
layoutParams.bottomMargin = AndroidUtilities.dp(62);
layoutParams.gravity = Gravity.BOTTOM | Gravity.CENTER_HORIZONTAL;
passcodeTextView.setLayoutParams(layoutParams);
passwordEditText = new EditText(context);
passwordEditText.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 36);
passwordEditText.setTextColor(0xffffffff);
passwordEditText.setMaxLines(1);
passwordEditText.setLines(1);
passwordEditText.setGravity(Gravity.CENTER_HORIZONTAL);
passwordEditText.setSingleLine(true);
passwordEditText.setImeOptions(EditorInfo.IME_ACTION_DONE);
passwordEditText.setTypeface(Typeface.DEFAULT);
passwordEditText.setBackgroundDrawable(null);
passwordFrameLayout.addView(passwordEditText);
layoutParams = (FrameLayout.LayoutParams) passwordEditText.getLayoutParams();
layoutParams.height = LayoutHelper.WRAP_CONTENT;
layoutParams.width = LayoutHelper.MATCH_PARENT;
layoutParams.leftMargin = AndroidUtilities.dp(70);
layoutParams.rightMargin = AndroidUtilities.dp(70);
layoutParams.bottomMargin = AndroidUtilities.dp(6);
layoutParams.gravity = Gravity.BOTTOM | Gravity.CENTER_HORIZONTAL;
passwordEditText.setLayoutParams(layoutParams);
passwordEditText.setOnEditorActionListener(new TextView.OnEditorActionListener() {
@Override
public boolean onEditorAction(TextView textView, int i, KeyEvent keyEvent) {
if (i == EditorInfo.IME_ACTION_DONE) {
processDone(false);
return true;
}
return false;
}
});
passwordEditText.addTextChangedListener(new TextWatcher() {
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
}
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
}
@Override
public void afterTextChanged(Editable s) {
if (passwordEditText.length() == 4 && UserConfig.passcodeType == 0) {
processDone(false);
}
}
});
passwordEditText.setCustomSelectionActionModeCallback(new ActionMode.Callback() {
public boolean onPrepareActionMode(ActionMode mode, Menu menu) {
return false;
}
public void onDestroyActionMode(ActionMode mode) {
}
public boolean onCreateActionMode(ActionMode mode, Menu menu) {
return false;
}
public boolean onActionItemClicked(ActionMode mode, MenuItem item) {
return false;
}
});
checkImage = new ImageView(context);
checkImage.setImageResource(R.drawable.passcode_check);
checkImage.setScaleType(ImageView.ScaleType.CENTER);
checkImage.setBackgroundResource(R.drawable.bar_selector_lock);
passwordFrameLayout.addView(checkImage);
layoutParams = (LayoutParams) checkImage.getLayoutParams();
layoutParams.width = AndroidUtilities.dp(60);
layoutParams.height = AndroidUtilities.dp(60);
layoutParams.bottomMargin = AndroidUtilities.dp(4);
layoutParams.rightMargin = AndroidUtilities.dp(10);
layoutParams.gravity = Gravity.BOTTOM | Gravity.END;
checkImage.setLayoutParams(layoutParams);
checkImage.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
processDone(false);
}
});
FrameLayout lineFrameLayout = new FrameLayout(context);
lineFrameLayout.setBackgroundColor(0x26ffffff);
passwordFrameLayout.addView(lineFrameLayout);
layoutParams = (LayoutParams) lineFrameLayout.getLayoutParams();
layoutParams.width = LayoutHelper.MATCH_PARENT;
layoutParams.height = AndroidUtilities.dp(1);
layoutParams.gravity = Gravity.BOTTOM | Gravity.START;
layoutParams.leftMargin = AndroidUtilities.dp(20);
layoutParams.rightMargin = AndroidUtilities.dp(20);
lineFrameLayout.setLayoutParams(layoutParams);
numbersFrameLayout = new FrameLayout(context);
addView(numbersFrameLayout);
layoutParams = (LayoutParams) numbersFrameLayout.getLayoutParams();
layoutParams.width = LayoutHelper.MATCH_PARENT;
layoutParams.height = LayoutHelper.MATCH_PARENT;
layoutParams.gravity = Gravity.TOP | Gravity.START;
numbersFrameLayout.setLayoutParams(layoutParams);
lettersTextViews = new ArrayList<>(10);
numberTextViews = new ArrayList<>(10);
numberFrameLayouts = new ArrayList<>(10);
for (int a = 0; a < 10; a++) {
TextView textView = new TextView(context);
textView.setTextColor(0xffffffff);
textView.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 36);
textView.setGravity(Gravity.CENTER);
textView.setText(String.format(Locale.US, "%d", a));
numbersFrameLayout.addView(textView);
layoutParams = (LayoutParams) textView.getLayoutParams();
layoutParams.width = AndroidUtilities.dp(50);
layoutParams.height = AndroidUtilities.dp(50);
layoutParams.gravity = Gravity.TOP | Gravity.START;
textView.setLayoutParams(layoutParams);
numberTextViews.add(textView);
textView = new TextView(context);
textView.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 12);
textView.setTextColor(0x7fffffff);
textView.setGravity(Gravity.CENTER);
numbersFrameLayout.addView(textView);
layoutParams = (LayoutParams) textView.getLayoutParams();
layoutParams.width = AndroidUtilities.dp(50);
layoutParams.height = AndroidUtilities.dp(20);
layoutParams.gravity = Gravity.TOP | Gravity.START;
textView.setLayoutParams(layoutParams);
switch (a) {
case 0:
textView.setText("+");
break;
case 2:
textView.setText("ABC");
break;
case 3:
textView.setText("DEF");
break;
case 4:
textView.setText("GHI");
break;
case 5:
textView.setText("JKL");
break;
case 6:
textView.setText("MNO");
break;
case 7:
textView.setText("PQRS");
break;
case 8:
textView.setText("TUV");
break;
case 9:
textView.setText("WXYZ");
break;
default:
break;
}
lettersTextViews.add(textView);
}
eraseView = new ImageView(context);
eraseView.setScaleType(ImageView.ScaleType.CENTER);
eraseView.setImageResource(R.drawable.passcode_delete);
numbersFrameLayout.addView(eraseView);
layoutParams = (LayoutParams) eraseView.getLayoutParams();
layoutParams.width = AndroidUtilities.dp(50);
layoutParams.height = AndroidUtilities.dp(50);
layoutParams.gravity = Gravity.TOP | Gravity.START;
eraseView.setLayoutParams(layoutParams);
for (int a = 0; a < 11; a++) {
FrameLayout frameLayout = new FrameLayout(context);
frameLayout.setBackgroundResource(R.drawable.bar_selector_lock);
frameLayout.setTag(a);
if (a == 10) {
frameLayout.setOnLongClickListener(new OnLongClickListener() {
@Override
public boolean onLongClick(View v) {
passwordEditText.setText("");
return true;
}
});
}
frameLayout.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
int tag = (Integer) v.getTag();
switch (tag) {
case 0:
appendCharacter("0");
break;
case 1:
appendCharacter("1");
break;
case 2:
appendCharacter("2");
break;
case 3:
appendCharacter("3");
break;
case 4:
appendCharacter("4");
break;
case 5:
appendCharacter("5");
break;
case 6:
appendCharacter("6");
break;
case 7:
appendCharacter("7");
break;
case 8:
appendCharacter("8");
break;
case 9:
appendCharacter("9");
break;
case 10:
String text = passwordEditText.getText().toString();
if( text.length()>0) {
passwordEditText.setText(text.substring(0,text.length()-1));
}
break;
}
if (passwordEditText.getText().toString().length() == 4) {
processDone(false);
}
}
});
numberFrameLayouts.add(frameLayout);
}
for (int a = 10; a >= 0; a--) {
FrameLayout frameLayout = numberFrameLayouts.get(a);
numbersFrameLayout.addView(frameLayout);
layoutParams = (LayoutParams) frameLayout.getLayoutParams();
layoutParams.width = AndroidUtilities.dp(100);
layoutParams.height = AndroidUtilities.dp(100);
layoutParams.gravity = Gravity.TOP | Gravity.START;
frameLayout.setLayoutParams(layoutParams);
}
}
private void appendCharacter(String c)
{
passwordEditText.setText(passwordEditText.getText()+c);
}
public void setDelegate(PasscodeViewDelegate delegate) {
this.delegate = delegate;
}
private void processDone(boolean fingerprint) {
if (!fingerprint) {
String password = passwordEditText.getText().toString();
if (password.length() == 0) {
onPasscodeError();
return;
}
if (!UserConfig.checkPasscode(password)) {
passwordEditText.setText("");
onPasscodeError();
return;
}
}
passwordEditText.clearFocus();
AndroidUtilities.hideKeyboard(passwordEditText);
AnimatorSet AnimatorSet = new AnimatorSet();
AnimatorSet.setDuration(200);
AnimatorSet.playTogether(
ObjectAnimator.ofFloat(this, "translationY", AndroidUtilities.dp(20)),
ObjectAnimator.ofFloat(this, "alpha", AndroidUtilities.dp(0.0f)));
AnimatorSet.addListener(new AnimatorListenerAdapterProxy() {
@Override
public void onAnimationEnd(Animator animation) {
setVisibility(View.GONE);
}
});
AnimatorSet.start();
UserConfig.appLocked = false;
UserConfig.saveConfig();
NotificationCenter.getInstance().postNotificationName(NotificationCenter.didSetPasscode);
setOnTouchListener(null);
if (delegate != null) {
delegate.didAcceptedPassword();
}
}
private void shakeTextView(final float x, final int num) {
if (num == 6) {
return;
}
AnimatorSet AnimatorSet = new AnimatorSet();
AnimatorSet.playTogether(ObjectAnimator.ofFloat(passcodeTextView, "translationX", AndroidUtilities.dp(x)));
AnimatorSet.setDuration(50);
AnimatorSet.addListener(new AnimatorListenerAdapterProxy() {
@Override
public void onAnimationEnd(Animator animation) {
shakeTextView(num == 5 ? 0 : -x, num + 1);
}
});
AnimatorSet.start();
}
private void onPasscodeError() {
Vibrator v = (Vibrator) getContext().getSystemService(Context.VIBRATOR_SERVICE);
if (v != null) {
v.vibrate(200);
}
shakeTextView(2, 0);
}
public void onResume() {
if (UserConfig.passcodeType == 1) {
if (passwordEditText != null) {
passwordEditText.requestFocus();
AndroidUtilities.showKeyboard(passwordEditText);
}
AndroidUtilities.runOnUIThread(new Runnable() {
@Override
public void run() {
if (passwordEditText != null) {
passwordEditText.requestFocus();
AndroidUtilities.showKeyboard(passwordEditText);
}
}
}, 200);
}
checkFingerprint();
}
public void onPause() {
if (fingerprintDialog != null) {
try {
if (fingerprintDialog.isShowing()) {
fingerprintDialog.dismiss();
}
fingerprintDialog = null;
} catch (Exception e) {
}
}
try {
if (Build.VERSION.SDK_INT >= 23 && cancellationSignal != null) {
cancellationSignal.cancel();
cancellationSignal = null;
}
} catch (Exception e) {
}
}
private void checkFingerprint() {
Activity parentActivity = (Activity) getContext();
if (Build.VERSION.SDK_INT >= 23 && parentActivity != null && UserConfig.useFingerprint && !ApplicationLoader.mainInterfacePaused) {
try {
if (fingerprintDialog != null && fingerprintDialog.isShowing()) {
return;
}
} catch (Exception e) {
}
try {
FingerprintManagerCompat fingerprintManager = FingerprintManagerCompat.from(ApplicationLoader.applicationContext);
if (fingerprintManager.isHardwareDetected() && fingerprintManager.hasEnrolledFingerprints()) {
RelativeLayout relativeLayout = new RelativeLayout(getContext());
relativeLayout.setPadding(AndroidUtilities.dp(16), AndroidUtilities.dp(16), AndroidUtilities.dp(16), AndroidUtilities.dp(8));
fingerprintStatusTextView = new TextView(getContext());
fingerprintStatusTextView.setGravity(Gravity.CENTER_VERTICAL);
fingerprintStatusTextView.setText(ApplicationLoader.applicationContext.getString(R.string.FingerprintInfo));
fingerprintStatusTextView.setTextAppearance(android.R.style.TextAppearance_Material_Subhead);
relativeLayout.addView(fingerprintStatusTextView);
RelativeLayout.LayoutParams layoutParams = LayoutHelper.createRelative(LayoutHelper.WRAP_CONTENT, LayoutHelper.WRAP_CONTENT);
fingerprintStatusTextView.setLayoutParams(layoutParams);
AlertDialog.Builder builder = new AlertDialog.Builder(getContext());
builder.setView(relativeLayout);
builder.setNegativeButton(R.string.Cancel, null);
builder.setOnDismissListener(new DialogInterface.OnDismissListener() {
@Override
public void onDismiss(DialogInterface dialog) {
if (cancellationSignal != null) {
selfCancelled = true;
cancellationSignal.cancel();
cancellationSignal = null;
}
}
});
if (fingerprintDialog != null) {
try {
if (fingerprintDialog.isShowing()) {
fingerprintDialog.dismiss();
}
} catch (Exception e) {
}
}
fingerprintDialog = builder.show();
cancellationSignal = new CancellationSignal();
selfCancelled = false;
fingerprintManager.authenticate(null, 0, cancellationSignal, new FingerprintManagerCompat.AuthenticationCallback() {
@Override
public void onAuthenticationError(int errMsgId, CharSequence errString) {
if (!selfCancelled) {
showFingerprintError(errString);
}
}
@Override
public void onAuthenticationHelp(int helpMsgId, CharSequence helpString) {
showFingerprintError(helpString);
}
@Override
public void onAuthenticationFailed() {
showFingerprintError(ApplicationLoader.applicationContext.getString(R.string.FingerprintNotRecognized));
}
@Override
public void onAuthenticationSucceeded(FingerprintManagerCompat.AuthenticationResult result) {
try {
if (fingerprintDialog.isShowing()) {
fingerprintDialog.dismiss();
}
} catch (Exception e) {
}
fingerprintDialog = null;
processDone(true);
}
}, null);
}
} catch (Throwable e) {
//ignore
}
}
}
public void onShow() {
Activity parentActivity = (Activity) getContext();
if (UserConfig.passcodeType == 1) {
if (passwordEditText != null) {
passwordEditText.requestFocus();
AndroidUtilities.showKeyboard(passwordEditText);
}
} else {
if (parentActivity != null) {
View currentFocus = parentActivity.getCurrentFocus();
if (currentFocus != null) {
currentFocus.clearFocus();
AndroidUtilities.hideKeyboard(((Activity) getContext()).getCurrentFocus());
}
}
}
checkFingerprint();
if (getVisibility() == View.VISIBLE) {
return;
}
setAlpha(1.0f);
setTranslationY(0);
backgroundDrawable = ApplicationLoader.getCachedWallpaper();
if (backgroundDrawable != null) {
backgroundFrameLayout.setBackgroundColor(0xb6000000);
} else {
backgroundFrameLayout.setBackgroundColor(Theme.ACTION_BAR_COLOR);
}
passcodeTextView.setText(ApplicationLoader.applicationContext.getString(R.string.EnterYourPasscode));
if (UserConfig.passcodeType == 0) {
numbersFrameLayout.setVisibility(VISIBLE);
passwordEditText.setFocusable(false);
passwordEditText.setFocusableInTouchMode(false);
checkImage.setVisibility(GONE);
} else if (UserConfig.passcodeType == 1) {
passwordEditText.setFilters(new InputFilter[0]);
numbersFrameLayout.setVisibility(GONE);
passwordEditText.setFocusable(true);
passwordEditText.setFocusableInTouchMode(true);
checkImage.setVisibility(VISIBLE);
}
setVisibility(VISIBLE);
passwordEditText.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS | InputType.TYPE_TEXT_VARIATION_PASSWORD);
passwordEditText.setTransformationMethod(PasswordTransformationMethod.getInstance());
passwordEditText.setText("");
setOnTouchListener(new OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
return true;
}
});
}
private void showFingerprintError(CharSequence error) {
fingerprintStatusTextView.setText(error);
fingerprintStatusTextView.setTextColor(0xfff4511e);
Vibrator v = (Vibrator) getContext().getSystemService(Context.VIBRATOR_SERVICE);
if (v != null) {
v.vibrate(200);
}
AndroidUtilities.shakeView(fingerprintStatusTextView, 2, 0);
}
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
int width = MeasureSpec.getSize(widthMeasureSpec);
int height = AndroidUtilities.displaySize.y - (Build.VERSION.SDK_INT >= 21 ? 0 : AndroidUtilities.statusBarHeight);
LayoutParams layoutParams;
if (getContext().getResources().getConfiguration().orientation == Configuration.ORIENTATION_LANDSCAPE) {
layoutParams = (LayoutParams) passwordFrameLayout.getLayoutParams();
layoutParams.width = UserConfig.passcodeType == 0 ? width / 2 : width;
layoutParams.height = AndroidUtilities.dp(140);
layoutParams.topMargin = (height - AndroidUtilities.dp(140)) / 2;
passwordFrameLayout.setLayoutParams(layoutParams);
layoutParams = (LayoutParams) numbersFrameLayout.getLayoutParams();
layoutParams.height = height;
layoutParams.leftMargin = width / 2;
layoutParams.topMargin = height - layoutParams.height;
layoutParams.width = width / 2;
numbersFrameLayout.setLayoutParams(layoutParams);
} else {
int top = 0;
int left = 0;
layoutParams = (LayoutParams) passwordFrameLayout.getLayoutParams();
layoutParams.height = height / 3;
layoutParams.width = width;
layoutParams.topMargin = top;
layoutParams.leftMargin = left;
passwordFrameLayout.setTag(top);
passwordFrameLayout.setLayoutParams(layoutParams);
layoutParams = (LayoutParams) numbersFrameLayout.getLayoutParams();
layoutParams.height = height / 3 * 2;
layoutParams.leftMargin = left;
layoutParams.topMargin = height - layoutParams.height + top;
layoutParams.width = width;
numbersFrameLayout.setLayoutParams(layoutParams);
}
int sizeBetweenNumbersX = (layoutParams.width - AndroidUtilities.dp(50) * 3) / 4;
int sizeBetweenNumbersY = (layoutParams.height - AndroidUtilities.dp(50) * 4) / 5;
for (int a = 0; a < 11; a++) {
LayoutParams layoutParams1;
int num;
if (a == 0) {
num = 10;
} else if (a == 10) {
num = 11;
} else {
num = a - 1;
}
int row = num / 3;
int col = num % 3;
int top;
if (a < 10) {
TextView textView = numberTextViews.get(a);
TextView textView1 = lettersTextViews.get(a);
layoutParams = (LayoutParams) textView.getLayoutParams();
layoutParams1 = (LayoutParams) textView1.getLayoutParams();
top = layoutParams1.topMargin = layoutParams.topMargin = sizeBetweenNumbersY + (sizeBetweenNumbersY + AndroidUtilities.dp(50)) * row;
layoutParams1.leftMargin = layoutParams.leftMargin = sizeBetweenNumbersX + (sizeBetweenNumbersX + AndroidUtilities.dp(50)) * col;
layoutParams1.topMargin += AndroidUtilities.dp(40);
textView.setLayoutParams(layoutParams);
textView1.setLayoutParams(layoutParams1);
} else {
layoutParams = (LayoutParams) eraseView.getLayoutParams();
top = layoutParams.topMargin = sizeBetweenNumbersY + (sizeBetweenNumbersY + AndroidUtilities.dp(50)) * row + AndroidUtilities.dp(8);
layoutParams.leftMargin = sizeBetweenNumbersX + (sizeBetweenNumbersX + AndroidUtilities.dp(50)) * col;
top -= AndroidUtilities.dp(8);
eraseView.setLayoutParams(layoutParams);
}
FrameLayout frameLayout = numberFrameLayouts.get(a);
layoutParams1 = (LayoutParams) frameLayout.getLayoutParams();
layoutParams1.topMargin = top - AndroidUtilities.dp(17);
layoutParams1.leftMargin = layoutParams.leftMargin - AndroidUtilities.dp(25);
frameLayout.setLayoutParams(layoutParams1);
}
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
}
@Override
protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
View rootView = getRootView();
int usableViewHeight = rootView.getHeight() - AndroidUtilities.statusBarHeight - AndroidUtilities.getViewInset(rootView);
getWindowVisibleDisplayFrame(rect);
keyboardHeight = usableViewHeight - (rect.bottom - rect.top);
if (UserConfig.passcodeType == 1 && getContext().getResources().getConfiguration().orientation != Configuration.ORIENTATION_LANDSCAPE) {
int t = 0;
if (passwordFrameLayout.getTag() != null) {
t = (Integer) passwordFrameLayout.getTag();
}
LayoutParams layoutParams = (LayoutParams) passwordFrameLayout.getLayoutParams();
layoutParams.topMargin = t + layoutParams.height - keyboardHeight / 2 - (Build.VERSION.SDK_INT >= 21 ? AndroidUtilities.statusBarHeight : 0);
passwordFrameLayout.setLayoutParams(layoutParams);
}
super.onLayout(changed, left, top, right, bottom);
}
@Override
protected void onDraw(Canvas canvas) {
if (getVisibility() != VISIBLE) {
return;
}
if (backgroundDrawable != null) {
if (backgroundDrawable instanceof ColorDrawable) {
backgroundDrawable.setBounds(0, 0, getMeasuredWidth(), getMeasuredHeight());
backgroundDrawable.draw(canvas);
} else {
float scaleX = (float) getMeasuredWidth() / (float) backgroundDrawable.getIntrinsicWidth();
float scaleY = (float) (getMeasuredHeight() + keyboardHeight) / (float) backgroundDrawable.getIntrinsicHeight();
float scale = scaleX < scaleY ? scaleY : scaleX;
int width = (int) Math.ceil(backgroundDrawable.getIntrinsicWidth() * scale);
int height = (int) Math.ceil(backgroundDrawable.getIntrinsicHeight() * scale);
int x = (getMeasuredWidth() - width) / 2;
int y = (getMeasuredHeight() - height + keyboardHeight) / 2;
backgroundDrawable.setBounds(x, y, x + width, y + height);
backgroundDrawable.draw(canvas);
}
} else {
super.onDraw(canvas);
}
}
}