과거.....
-
sqlite.....과거...../개발일지 2010. 8. 17. 09:41
테이블을 만들일이 있어서...가이드라인을 보았다.. 링크 주소 : http://www.sqlite.org/datatype3.html 지원 타입은...고작 요거지만...모 막상 이거면 다 할 수 있으니까...ㅋㅋㅋ NULL. The value is a NULL value. INTEGER. The value is a signed integer, stored in 1, 2, 3, 4, 6, or 8 bytes depending on the magnitude of the value. REAL. The value is a floating point value, stored as an 8-byte IEEE floating point number. TEXT. The value is a text string, stor..
-
android 에서 지원하네요 bitmap을 출력할수있게과거...../개발일지 2010. 8. 16. 16:38
FileOutputStream fileOutputStrema; try { fileOutputStrema = new FileOutputStream(abc); image.compress(Bitmap.CompressFormat.PNG , 100, fileOutputStrema); Log.i("dfdfdfdfdfdf","dfdfdfdfd"); } catch (FileNotFoundException e) { e.printStackTrace(); } compress 에 출력 파일 형식, 퀄리티, outputStream으로 지원합니다. 자세한것이 필요하신분은 디벨로퍼사이트에서 검색하세요 ㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋ 원본 샘플 소스 public void onCreate(Bundle savedInstanceState)..