기술참고자료/Android | 2011. 5. 6. 14:14
public class MainActivity extends Activity {
String myText = null;
EditText myIDEditText = null;
Button okButton = null;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
myIDEditText = (EditText) findViewById(R.id.myID);
okButton = (Button) findViewById(R.id.ok);
okButton.setOnClickListener(new OnClickListener(){@Override
public void onClick(View v) {
myText = myIDEditText.getText().toString();
if(checkFormValid(myText)){
Log.d(myText + " >>> ", "find!!");
}else{
Log.d(myText + " >>> ", "not find~~~~~~~~~~~~~");
}
}});
}private boolean checkFormValid(String str) {
boolean result = Pattern.matches("^[a-zA-Z0-9]*$", str); //영어, 숫자
if(str.length() > 0 && result ) {
return true;
}
return false;
}
}
[Android] TextView 내용중간에 이벤트 넣기!!! (1) | 2011.05.06 |
---|---|
[Android] Installation error: INSTALL_FAILED_INSUFFICIENT_STORAGE (0) | 2011.05.06 |
[Android] WebView 연습 (0) | 2011.05.06 |
[Android] 코드에서 EditText의 inputType을 password로 지정하기!! (0) | 2011.05.06 |
[Android] 로그캣(logcat) 한글출력 (0) | 2011.05.06 |
Recent Comments