我不明白怎么可能做到这一点,因为没有带有 PhoneGap 的 WebActivities,只有你的 Activity 类和你的 index.html 页面。我有一个看起来像这样的 MainActivity...
public class MastersProjectActivity extends DroidGap
{
@JavascriptInterface
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
// Set by <content src="index.html" /> in config.xml
//super.loadUrl(Config.getStartUrl());
super.loadUrl("file:///android_asset/www/index.html");
Context myCntxt = getApplicationContext();
TelephonyManager tMgr = (TelephonyManager)myCntxt.getSystemService(Context.TELEPHONY_SERVICE);
String curPhoneNumber = tMgr.getLine1Number();
Log.d("PhoneNumber", curPhoneNumber);
}
}
...并且我希望能够在 index.html 页面中使用 curPhoneNumber ,该页面在 PhoneGap 中包含整个 UI。关于如何做到这一点的任何想法?总的来说,我对 Android 开发完全陌生,当然对 PhoneGap 也是如此。老实说,我仍然不太了解 index.html 页面是如何呈现为 Android UI 的。我需要将 index.html 页面包装在 WebActivity 中吗?我不确定这是否会在 PhoneGap 创建 .apk 的方式中产生任何问题。
编辑 - 我试图实施,但它对我不起作用,我得到的只是一个警告字面意思"interface.getPhoneNumber()"
。我可能'MyInterface'
错误地实现了这个类?这是我做的课......
public class MyInterface extends DroidGap {
private MastersProjectActivity _activity;
private CordovaWebView _view;
public MyInterface(MastersProjectActivity activity, CordovaWebView view) {
this._activity = activity;
this._view = view;
}
@JavascriptInterface
public String getPhoneNumber() {
Context myCtxt = getApplicationContext();
return ((TelephonyManager)myCtxt.getSystemService(Context.TELEPHONY_SERVICE)).getLine1Number();
}
}
...我在我的主要活动中暴露了 javascript 界面,就像这样...
@Override
public void onCreate(Bundle savedInstanceState)
{
.
.
.
super.appView.addJavascriptInterface(new MyInterface(this, appView), "interface");
}
...然后我调用文件,但我得到alert("interface.getPhoneNumber()")
的index.html
只是那个字符串警报,它实际上并没有调用getPhoneNumber()
.