mirror of
https://github.com/apache/cordova-android.git
synced 2025-02-13 19:38:52 +08:00
20 lines
263 B
Java
20 lines
263 B
Java
![]() |
package com.phonegap.demo;
|
||
|
|
||
|
import android.content.Context;
|
||
|
import android.webkit.WebView;
|
||
|
|
||
|
|
||
|
|
||
|
public class CameraLauncher {
|
||
|
|
||
|
private WebView mAppView;
|
||
|
private Context mCtx;
|
||
|
|
||
|
CameraLauncher(WebView view, Context ctx)
|
||
|
{
|
||
|
mAppView = view;
|
||
|
mCtx = ctx;
|
||
|
}
|
||
|
|
||
|
}
|