336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
// 아스크 코드 0x20 ~ 0x7e만 허용
InputFilter filter = new InputFilter() {
@Override
public CharSequence filter(CharSequence source, int start, int end,
Spanned dest, int dstart, int dend) {
Pattern pattern = Pattern.compile("^[ -~]*$");
if (!pattern.matcher(source).matches()) {
return "";
}
return null;
}
};
'나의 플랫폼 > 안드로이드' 카테고리의 다른 글
git 관련 명령어 (0) | 2013.10.24 |
---|---|
[ Android ] Custom Preference. (0) | 2013.10.04 |
객체 File 저장 클래스 (0) | 2013.09.28 |
[ Android ] Custom NumberPicker (0) | 2013.09.25 |
[ Android ] wheelpicker (0) | 2013.09.24 |