모바일 기기로 웹페이지 접근시 <a> Tag 경로를 변경해야 하거나 할때 사용.
* jQuery 파일이 인클루드 되어야 합니다.
* .replace() 는 일반 자바스크립트
(페이지내 다른 스크립트로 인해 간혹 실행되지 않는 페이지 있음. )
Posted by 홍반장
Posted by 홍반장
Posted by 홍반장
Posted by 홍반장
오버라이드하는 메소드 | 메소드의 호출 |
onCreate() 메소드 onUpgrade() 메소드 |
데이터베이스 생성 시 호출. 데이터베이스 업그레이드 시 호출. |
SQLiteOpenHelper(Context context, String fileName, SQLiteDatabase.CursorFactory factory, int version) | |
기능 : SQLiteOpenHelper 클래스의 생성자 인수 : context 컨텍스트 fileName 데이터베이스 파일명 factory 팩토리 version 버전 |
void onCreate(SQLiteDatabase db) |
|
기능 : 데이터베이스 생성 시 호출 인수 : db 데이터베이스 객체 |
void execSQL(String Sql) |
|
기능 : SQL 명령의 실행 인수 : sql SQL명령 |
void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) |
|
기능 : 데이터베이스를 업그레이드한 때 인수 : db 데이터베이스 객체 oldVersion 구버전 번호 newVersion 신버전 번호 |
SQLiteDatabase getWritableDatabase() |
|
기능 : 데이터베이스 객체의 취득 인수 :데이터베이스 객체 |
void put(String colName, String value) |
|
기능 : 레코드 정보에 컬럼명과 값 추가 인수 : colName 컬럼명 value 값 |
컬러명 |
값 |
id info |
0 텍스트 박스의 문자열 |
int update(String tableName, ContentValues values, String where, String[] whereArgs) |
|
기능 : 테이블 레코드의 갱신 인수 : tableName 테이블명 values 레코드 정보 where where 파라미터 whereArgs where 파라미터 반환값 : 갱신한 레코드 수 |
long insert(String tableName, String nullColumnHack, ContentValues values) |
|
기능 : 테이블의 레코드 추가 인수 : tableName 테이블명 nullColumnHack NULL값 values 레코드 정보 반환값 : 레코드 ID |
Cursor query(String tableName, String[] columns, String selection, String[] selectionArgs, String groupBy, String having, String orderBy, String limit) |
|
기능 : 데이터베이스로부터 읽기 인수 : tableName 테이블명 columns 컬럼명의 배열 selection selection parameter selectArgs selection parameter factor groupBy groupBy parameter having having parameter orderBy orderBy parameter limit limit parameter 반환값 : Cursor 객체 |
int getCount() |
|
기능 : 레코드 수 구하기 반환값 : 레코드 수 |
int getColumnCount() |
|
기능 : 컬럼 수 구하기 반환값 :컬럼 수 |
boolean moveToFirst() |
|
기능 : 커서에서 선두 레코드를 지시한다. 반환값 : 성공 또는 실패 |
String getString(int colIdx) |
|
기능 : String 형 값 구하기 인수 : colIdx 컬럼의 위치 반환값 : String 형의 값 |
double getDouble(int colIdx) |
|
기능 : double 형 값 구하기 인수 : colIdx 컬럼의 위치 반환값 : double 형의 값 |
float getFloat(int colIdx) |
|
기능 : float 형 값 구하기 인수 : colIdx 컬럼의 위치 반환값 : float 형의 값 |
int getInt(int colIdx) |
|
기능 : int 형 값 구하기 인수 : colIdx 컬럼의 위치 반환값 : int 형의 값 |
long getLong(int colIdx) |
|
기능 : long 형 값 구하기 인수 : colIdx 컬럼의 위치 반환값 : long 형의 값 |
short getShort(int colIdx) |
|
기능 : short 형 값 구하기 인수 : colIdx 컬럼의 위치 반환값 : short 형의 값 |
package com.froglamb.sqliteex; import android.app.Activity; import android.app.AlertDialog; import android.content.Context; import android.content.ContentValues; import android.content.DialogInterface; import android.database.Cursor; import android.database.sqlite.SQLiteDatabase; import android.database.sqlite.SQLiteOpenHelper; import android.graphics.Color; import android.os.Bundle; import android.view.View; import android.view.Window; import android.widget.Button; import android.widget.EditText; import android.widget.LinearLayout; public class SQLiteEx extends Activity implements View.OnClickListener{ private final static String DB_NAME = "test.db"; // DB name private final static String DB_TABLE = "test"; // table name private final static int DB_VERSION = 1; // Version private EditText editText; private Button btnWrite; private Button btnRead; private SQLiteDatabase db; // 초기화 @Override public void onCreate(Bundle icicle) { super.onCreate(icicle); requestWindowFeature(Window.FEATURE_NO_TITLE); // 레이아웃의 생성 LinearLayout layout = new LinearLayout(this); layout.setBackgroundColor(Color.rgb(255, 255, 255)); layout.setOrientation(LinearLayout.VERTICAL); setContentView(layout); // 텍스트 박스의 생성 editText = new EditText(this); editText.setText("", EditText.BufferType.NORMAL); setLLParams(editText, 240, 50); layout.addView(editText); // 쓰기 버튼의 생성 btnWrite = new Button(this); btnWrite.setText("쓰기"); btnWrite.setOnClickListener(this); setLLParams(btnWrite); layout.addView(btnWrite); // 일기 버튼의 생성 btnRead = new Button(this); btnRead.setText("읽 기"); btnRead.setOnClickListener(this); setLLParams(btnRead); layout.addView(btnRead); // 데이터베이스 객체 구하기 (5) DBHelper dbHelper = new DBHelper(this); db = dbHelper.getWritableDatabase(); } // 버튼 클릭 이벤트 처리 public void onClick(View v){ if ( v == btnWrite) { try { String str = editText.getText().toString(); writeDB(str); } catch (Exception e) { showDialog(this, "Error", "Write Error"); } } else if ( v == btnRead) { try { String str = readDB(); editText.setText(str); } catch (Exception e) { showDialog(this, "Error", "Read Error"); } } } // 데이터베이스의 쓰기 (6) private void writeDB(String str) throws Exception{ ContentValues values = new ContentValues(); values.put("id", "0"); values.put("info", "info"); int colNum = db.update(DB_TABLE, values, null, null); if( colNum == 0 ) db.insert(DB_TABLE, "", values); } private String readDB() throws Exception{ Cursor c = db.query(DB_TABLE, new String[] {"id","info"}, "id='0'", null, null, null, null); if ( c.getCount() == 0 ) { throw new Exception(); } c.moveToFirst(); String str = c.getString(1); c.close(); return str; } // 데이터베이스 헬퍼 정의 (1) private static class DBHelper extends SQLiteOpenHelper{ // 데이터베이스 헬퍼 생성자 (2) public DBHelper(Context context){ super(context, DB_NAME, null, DB_VERSION); } // 데이터베이스의 생성 (3) @Override public void onCreate(SQLiteDatabase db){ db.execSQL( "create table if not exists " + DB_TABLE + " (id text primary key, info text)" ); } // 데이터베이스의 업그레이드 (4) @Override public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion){ db.execSQL( "drop table if exists " + DB_NAME ); onCreate(db); } } // 대화상자 표시 private static void showDialog(final Activity activity, String title, String text){ AlertDialog.Builder ad = new AlertDialog.Builder(activity); ad.setTitle(title); ad.setMessage(text); ad.setPositiveButton("OK", new DialogInterface.OnClickListener(){ public void onClick(DialogInterface dialog, int whichButton){ activity.setResult(Activity.RESULT_OK); } }); ad.create(); ad.show(); } // 리니어 레이아웃의 파라미터 지정 private static void setLLParams(View view){ view.setLayoutParams(new LinearLayout.LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT, LinearLayout.LayoutParams.WRAP_CONTENT)); } // 리니어 레이아웃의 파라미터 지정 private static void setLLParams(View view, int w, int h){ view.setLayoutParams(new LinearLayout.LayoutParams(w, h)); } } |
Posted by 홍반장
Posted by 홍반장
Posted by 홍반장
Posted by 홍반장
ExampleHow to display a red square, with the canvas element:
Try it yourself » |
The <canvas> tag is used to display graphics.
The <canvas> tag is only a container for graphics, you must use a script to actually paint graphics.
The <canvas> tag is new in HTML 5.
Tip: You can write text between the start and end tags, to show older browser that they do not support this tag.
Note: Some browsers already support the <canvas> tag, like Firefox, Chrome, and Opera.
New : New in HTML 5.
Attribute | Value | Description |
---|---|---|
heightNew | pixels | Sets the height of the canvas |
widthNew | pixels | Sets the width of the canvas |
The <canvas> tag also supports the Standard Attributes in HTML 5.
The <canvas> tag also supports the Event Attributes in HTML 5.
Posted by 홍반장
Posted by 홍반장
Posted by 홍반장
- 홍반장
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |