是否有可能創建一個html按鈕,當我點擊時,它將轉到我的android活動類。 就像使用意圖,當我查看活動到另一個活動Android Web查看到Android Java活動類
任何人都有想法?
我JsInteface類變化到這個
public class JavaScriptInterface {
Context mContext;
/** Instantiate the interface and set the context */
JavaScriptInterface(Context c) {
mContext = c;
}
/** Show a toast from the web page */
public void showToast(String toast) {
Intent mainIntent = new Intent(mContext, echos.class);
mContext.startActivity(mainIntent);
}
}
嘗試使用Java腳本做到這一點,pemission對於android系統中 –
Java腳本橋Web視圖搜索檢查這個鏈接。 http://stackoverflow.com/a/4846692/614807 –
我怎麼能在JavaScript中調用它? – user1635137