package kr.go.egovframework.hyb.example;
import org.apache.cordova.*;
import android.os.Bundle;
/**
* @Class Name : example_AndroidActivity.java
* @Description : example_AndroidActivity Class
* @Modification Information
* @
* @ 수정일 수정자 수정내용
* @ --------- --------- -------------------------------
* @
*
* Copyright (C) by MOPAS All right reserved.
*/
public class Example_AndroidActivity extends DroidGap
{
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
// Clear cache if you want
super.clearCache();
//super.appView.getSettings().setCacheMode(WebSettings.LOAD_NO_CACHE);
super.loadUrl("file:///android_asset/www/index.html");
}
}
* index.html
폰갭 API 및 자바스크립트를 이용한 어플리케이션 주요 로직을 구현한다.
example API Guide
Device API Guide Android 1.9
* Manifest.xml
Manifest.xml은 모바일 어플리케이션 설정 파일로서 어플리케이션의 설정 및 필요한 기능, 권한등을 정의한다.
* config.xml
Hello Cordova
A sample Apache Cordova application that responds to the deviceready event.
Apache Cordova Team