[안드로이드] 버튼 터치 시 EditText inputType 바꾸기 (비밀번호 형식 보이기/숨기기)
<activity_main.xml>
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.testapp_161219.MainActivity">
<EditText
android:id="@+id/et"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textPassword"
android:text="hello" />
<Button
android:id="@+id/btn"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="btn"/>
</LinearLayout>
<MainActivity.java>
public class MainActivity extends AppCompatActivity {
EditText et;
Button btn;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
et = (EditText) findViewById(R.id.et);
btn = (Button)findViewById(R.id.btn);
btn.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View view, MotionEvent motionEvent) {
int action = motionEvent.getAction();
if (action == MotionEvent.ACTION_DOWN) {
et.setInputType(InputType.TYPE_CLASS_TEXT);
} else if (action == MotionEvent.ACTION_UP) {
et.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_PASSWORD);
}
return false;
}
});
}
}
버튼 누르는 동안은 EditText의 inputType이 InputType.TYPE_CLASS_TEXT 로 바뀌고
버튼에서 손을 떼면 다시 원래대로 비밀번호 형식으로 돌아갑니다.
'IT > 안드로이드+JAVA' 카테고리의 다른 글
[안드로이드] 어플 삭제했다 깔아도 기존 데이터가 남아있는 현상 해결 (0) | 2017.01.10 |
---|---|
[안드로이드] 클립보드에 복사하기 (0) | 2016.12.19 |
[안드로이드] 앱 난독화 (0) | 2016.12.16 |
[안드로이드] 단말에서 사용하고 있는 언어(language) 가져오기 (0) | 2016.11.15 |
[안드로이드] xml 특수문자, 줄바꿈 (0) | 2016.11.14 |