안드로이드에서는 어댑터라는 객체가 있어서 뷰와 데이타를 연결해준다. 간단하게 문자열 리스트를 리스트뷰에 보여주도록 어댑터를 설정할 수 있다. 기본적으로 제공되는 어댑터 외에 내 입맛에 맞는 어댑터를 정의하여 리스트 뷰에 보여주고자 한다. 커스텀 항목 뷰 그리기 커스텀 어댑터 클래스 구현 커스텀 항목 뷰 그리기 커스텀 레이아웃을 XML로 디자인한다. 커스텀 어댑터 클래스 구현 어떤 정보를 레이아웃의 어느 위젯에 출력할지 지정하는 역할은 어댑터가 담당한다. BaseAdapter를 상속받아 추상 메서드를 재정의 한다. public class MyAdapter extends BaseAdapter { static final String TAG = "SheduleListAdapter"; private Context..
06-13 07:47:23.406: ERROR/AndroidRuntime(11931): Caused by: java.lang.RuntimeException: Binary XML file line #44: You must supply a layout_width attribute. layout_width 속성값이 있었음에도 에러가 떨어졌다. 원인은 android:layout_weight 값을 선언하지 못해서 일어난 현상...
Layout XML 정의하기 SQLiteOpenHelper 구현하기 Activity 생성하기 Layout XML 정의하기 > SQLiteOpenHelper 구현하기 SQLiteOpenHelper 를 상속받아서 DB에 관련된 기능을 구현한다. public class MyDBHelper extends SQLiteOpenHelper { private static final String TAG = "MyDBHelper"; private static final int DATABASE_VERSION = 1; private static final String DB_NAME = "db_sample10"; public MyDBHelper(Context context, CursorFactory factory) { supe..
06-10 08:54:19.741: ERROR/AndroidRuntime(579): Caused by: android.database.sqlite.SQLiteException: near "AUTOINCREMENT": syntax error: CREATE TABLE schedule(_id INTEGER PRIMARY AUTOINCREMENT, content TEXT); SQL 문을 잘 못 작성하였다... SQLite Manager를 이용하여 SQL을 검증한 후에 사용한다.
추상클래스 이므로 서브 클래스를 파생하여 사용하는 DB에 맞게 메서드들을 재정의하고 적절한 스크립트를 작성해 넣어야 한다. SQLiteOpenHelper(Context context, String name, CursorFactory factory, int version) 생성자 Context context DB를 생성하는 컨텍스트, 보통 메인 액티지티를 전달한다. String name DB 파일의 이름 CursorFactory factory 커스텀 커스를 사용하고자 할 때 지정, 표준 커서를 사용할 때는 null int version DB 파일의 버전 DB 업데이트에 사용 public void onCreate(SQLiteDatabase db) DB가 처음 만들어질 때 호출된다. 여기서 테이블을 만들고 초..
IDC 시장점유율 예측 015년에는 윈도폰이 안드로이드(45.4%)에 이어 20.9%의 점유율로 2위를 차지할 것으로 내다봤다. 미국 시장으로 제한해 볼 때 2015년의 경우 안드로이드 48.9%, iOS 16.8%, 윈도폰 15.6% 순이 될 것 여러가지 견해 미국 산호세주립대학의 랜달 스토로스 교수 저가 휴대폰을 만드는 데 노키아가 타의 추종을 불허하며 이같은 노하우 때문에 (스마트폰 시대에도) 노키아가 세계 최대 휴대폰 업체로 남을 것 MS의 모바일 부문 사장인 앤드류 리스 "스마트폰 평균 가격은 내려 갈 것이고 공급대수는 늘어날 것" 하버드 비지니스 스쿨의 토마스 R 아이센맨 교수 "우리가 종종 놓치고 있는 사실은 1천개 앱 이후 수확체감 현상이 나타난다"는 사실이라며 "하나의 플랫폼이 1천 개의..
Android Debug Bridge (adb) 는 다용도로 쓰이는 명령어 툴이다. 이것은 사용자가 애뮬레이터 인스턴스와 통신하거나, 안드로이드 기기와 연결하도록 한다. Android Debug Bridge (adb) is a versatile command line tool that lets you communicate with an emulator instance or connected Android-powered device. 글 순서 ADB 의 3개 components adb 동작방법 및 특징 db 명령어 tool 위치 /platform-tools/ 참고자료 Android Debug Bridge ADB 의 3개 components client 개발 기계에서 돌아간다. adb 명령을 실행하여 she..
From an adb remote shell, you can use the sqlite3 command-line program to manage SQLite databases created by Android applications. The sqlite3 tool includes many useful commands, such as .dump to print out the contents of a table and .schema to print the SQL CREATE statement for an existing table. The tool also gives you the ability to execute SQLite commands on the fly. 참고자료 Examining sqlite3 D..
안드로이는 SQLite database 를 모두 지원한다. 생성한 어떤 DB도 어플리케이션 안에서는 이름을 가지고 어떤 클래스에도 접근가능하지만, 어플리케이션 밖에서는 불가능하다. Android provides full support for SQLite databases. Any databases you create will be accessible by name to any class in the application, but not outside the application. 새 SQLite database를 만드는 권장하는 방법은 SQLiteOpenHelper 의 서브 클래스를 생성하고 onCreate() 메소드를 오버라이드하고 그 곳에서 관련명령을 실행한다. The recommended metho..
style은 View 나 window 의 외관이나 형식을 특정화시키는 속성의 집합이다. style은 높이, 패딩, 폰트 색깔, 폰트 사이트, 배경색상 등의 속성을 특정화시킨다. style은 XML 리소스에서 정의하므로 레이아웃과 분리할 수 있다. A style is a collection of properties that specify the look and format for a View or window. A style can specify properties such as height, padding, font color, font size, background color, and much more. A style is defined in an XML resource that is separate ..
A drawable resource is a general concept for a graphic that can be drawn to the screen and which you can retrieve with APIs such as getDrawable(int) or apply to another XML resource with attributes such as android:drawable and android:icon. There are several different types of drawables: drawable resource 는 스크린에 그릴수 있는 그래픽의 일반적인 개념이다. API를 부르거나 다른 XML 리소스에 적용시킨다. drawables의 여러가지 타입들이 있다. 참고자료 Dr..