mirror of
https://github.com/nextcloud/android.git
synced 2024-11-27 17:46:37 +03:00
commit
05d053beae
1 changed files with 5 additions and 1 deletions
|
@ -55,6 +55,7 @@ import android.view.View.OnClickListener;
|
|||
import android.view.View.OnFocusChangeListener;
|
||||
import android.view.Window;
|
||||
import android.widget.Button;
|
||||
import android.widget.EditText;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.TextView;
|
||||
import com.owncloud.android.R;
|
||||
|
@ -485,7 +486,9 @@ public class AuthenticatorActivity extends AccountAuthenticatorActivity
|
|||
if (v.getId() == R.id.refreshButton) {
|
||||
onFocusChange(findViewById(R.id.host_URL), false);
|
||||
} else if (v.getId() == R.id.viewPassword) {
|
||||
TextView view = (TextView) findViewById(R.id.account_password);
|
||||
EditText view = (EditText) findViewById(R.id.account_password);
|
||||
int selectionStart = view.getSelectionStart();
|
||||
int selectionEnd = view.getSelectionEnd();
|
||||
int input_type = view.getInputType();
|
||||
if ((input_type & InputType.TYPE_TEXT_VARIATION_VISIBLE_PASSWORD) == InputType.TYPE_TEXT_VARIATION_VISIBLE_PASSWORD) {
|
||||
input_type = InputType.TYPE_CLASS_TEXT
|
||||
|
@ -495,6 +498,7 @@ public class AuthenticatorActivity extends AccountAuthenticatorActivity
|
|||
| InputType.TYPE_TEXT_VARIATION_VISIBLE_PASSWORD;
|
||||
}
|
||||
view.setInputType(input_type);
|
||||
view.setSelection(selectionStart, selectionEnd);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue