안 드 로이드 WebViews

코르도바 1.9의 도움으로 시작 된 CordovaActivity , 코르도바 큰 네이티브 안 드 로이드 응용 프로그램에서 구성 요소를 사용할 수 있습니다. 안 드 로이드로이 구성 요소에 참조를 CordovaWebView . 1.9에서 새로운 코르도바 기반 응용 프로그램을 이후 사용에 CordovaWebView 여부에 관계 없이 그것의 기본 보기로 유산 CordovaActivity 접근 방식을 사용.

안 드 로이드 응용 프로그램 개발에 익숙하지는 WebView를 포함 하기 전에 코르도바 응용 프로그램을 개발 하는 안 드 로이드 플랫폼 안내서를 읽어 보시기 바랍니다. 안 드 로이드 코르도바 응용 프로그램을 작성 하는 데 주요 방법이 아니다. 이 지침은 현재 수동 하지만 결국 수 있습니다 자동화.

필수 구성 요소

  • 코르도바 1.9 이상

  • 안 드 로이드 SDK 최신 SDK 업데이트

안 드 로이드 프로젝트에서 CordovaWebView를 사용 하 여 가이드

  1. cd/framework 실행 하 고 ant jar 코르도바 항아리를 구축. 그것은으로 형성 된.jar 파일을 만듭니다 cordova-x.x.x.jar/framework 디렉터리.

  2. 안 드 로이드 프로젝트의 코르도바 jar를 복사 /libs 디렉터리.

  3. 응용 프로그램의 편집 main.xml 파일 (아래 /res/xml )는 다음과 같이 표시 하는 layout_height , layout_widthid 응용 프로그램에 맞게 수정:

    <org.apache.cordova.CordovaWebView
        android:id="@+id/tutorialView"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />
    
  4. 활동 수정 구현 하는 CordovaInterface . 포함 된 메서드를 구현 해야 합니다. 복사를 하실 수 있습니다 /framework/src/org/apache/cordova/CordovaActivity.java , 또는 자신에 그들을 구현 합니다. 아래 코드 조각 인터페이스를 사용 하 여 기본 응용 프로그램을 보여 줍니다. 참조 된 뷰 id가 일치 하는 방법을 참고는 id 위의 XML 조각에서 지정 된 특성:

    public class CordovaViewTestActivity extends Activity implements CordovaInterface {
        CordovaWebView cwv;
        /* Called when the activity is first created. */
        @Override
        public void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.main);
            cwv = (CordovaWebView) findViewById(R.id.tutorialView);
            Config.init(this);
            cwv.loadUrl(Config.getStartUrl());
        }
    

카메라를 사용 하는 경우에, 당신은 또한 이것을 구현 해야 합니다.

    @Override
    public void setActivityResultCallback(CordovaPlugin plugin) {
        this.activityResultCallback = plugin;
    }
    /**
     * Launch an activity for which you would like a result when it finished. When this activity exits,
     * your onActivityResult() method is called.
     *
     * @param command           The command object
     * @param intent            The intent to start
     * @param requestCode       The request code that is passed to callback to identify the activity
     */
    public void startActivityForResult(CordovaPlugin command, Intent intent, int requestCode) {
        this.activityResultCallback = command;
        this.activityResultKeepRunning = this.keepRunning;

        // If multitasking turned on, then disable it for activities that return results
        if (command != null) {
            this.keepRunning = false;
        }

        // Start activity
        super.startActivityForResult(intent, requestCode);
    }   

    @Override
    /**
     * Called when an activity you launched exits, giving you the requestCode you started it with,
     * the resultCode it returned, and any additional data from it.
     *
     * @param requestCode       The request code originally supplied to startActivityForResult(),
     *                          allowing you to identify who this result came from.
     * @param resultCode        The integer result code returned by the child activity through its setResult().
     * @param data              An Intent, which can return result data to the caller (various data can be attached to Intent "extras").
     */
    protected void onActivityResult(int requestCode, int resultCode, Intent intent) {
        super.onActivityResult(requestCode, resultCode, intent);
        CordovaPlugin callback = this.activityResultCallback;
        if (callback != null) {
            callback.onActivityResult(requestCode, resultCode, intent);
        }
    }

마지막으로, 스레드 풀에 추가 해야, 그렇지 않으면 플러그인에서 실행 스레드가:

    @Override
    public ExecutorService getThreadPool() {
        return threadPool;
    }
  1. 안 드 로이드 프로젝트의 응용 프로그램의 HTML과 자바 스크립트 파일을 복사 /assets/www 디렉터리.

  2. 복사 config.xml 에서 /framework/res/xml 를 프로젝트의 /res/xml 디렉터리.