IT/안드로이드+JAVA

[안드로이드] 버튼 터치 시 EditText inputType 바꾸기

안경 쓴 귀니 2016. 12. 19. 14:43
반응형




[안드로이드] 버튼 터치 시 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 로 바뀌고

버튼에서 손을 떼면 다시 원래대로 비밀번호 형식으로 돌아갑니다.




반응형