본문 바로가기

Android 기법25

[Android/안드로이드]동그란 배경, 테두리 12345678910111213 Colored by Color Scriptercs xml로 만들고 background로 사용할 수 있다. 2017. 2. 13.
[Android/안드로이드]이미지 한글 문자 인식[tesseract-ocr] 라이브러리 참조https://github.com/rmtheis/tess-two 이미지에서 텍스트를 추출하는 OCRengine 이다.[인식률이 많이 좋은편은 아니다 ..] 구글에서 무료로 배포하고 언어 데이터를 직접 개선할 수 있다고 한다. 언어 데이터는 다음과 같은 위치에 추가하고 https://github.com/tesseract-ocr/tessdata 이곳에서 언어별로 다양한 데이터가 많이 있다. 123dependencies { compile 'com.rmtheis:tess-two:6.2.0'}Colored by Color Scriptercs 이것도 추가한다. 1234567891011121314151617181920212223242526272829303132333435363738394041424344.. 2017. 2. 13.
[Android/안드로이드]com.android.dex.DexIndexOverflowException: method ID not in [0, 0xffff]: 65536 오류 com.android.dex.DexIndexOverflowException: method ID not in [0, 0xffff]: 65536 구글에서 메소드의 개수 제한을 두어 라이브러리를 많이 사용하는경우 위와 같은 에러가 발생한다고 한다. StackOverFlow에서 해결방법을 찾았다. 123456android { defaultConfig { ... multiDexEnabled true }}cs 1234dependencies { ... compile 'com.android.support:multidex:1.0.0'} Colored by Color Scriptercs 1234567 @Override protected void onCreate(Bundle savedInstanceState) { super.. 2017. 2. 12.
[Android/안드로이드]GridView에서 중복현상 해결 BaseAdapter을 이용하여 GridView를 사용할 때 중복돼서 나타나는 문제가 발생한다. 많이 유명한 문제라고 하는데 아래와 같은 방법으로 해결할 수 있다. 123456789101112131415161718192021222324252627282930313233343536373839404142434445public class PokeDexAdapter extends BaseAdapter { ... @Override public int getCount() { return pokeObjects.size(); } @Override public Object getItem(int position) { return pokeObjects.get(position); } @Override public long ge.. 2017. 2. 12.