0

是否可以通过另一个应用程序将 URL 加载到一个应用程序内的 Android WebView?我希望第二个应用程序充当一种代理并代表第一个应用程序获取 URL。

提前致谢。

4

1 回答 1

0

是的,先生,可能!

将数据从您的第一个应用程序发送到第二个应用程序。如果安装了第二个应用程序,首先检查用户是否安装了第二个应用程序。如果不是,则指向用户首先安装它。

       try {
       String a = "secondapp://?q=data";
       Intent intent = new Intent(Intent.ACTION_VIEW, Uri
       .parse(data));
       startActivity(intent);
       } catch (ActivityNotFoundException ex) {
       Intent intent = new Intent(Intent.ACTION_VIEW, Uri
      .parse("market://details?id=com.secondapp"));
     startActivity(intent);
     }

http://developer.android.com/training/basics/intents/sending.html

于 2013-01-08T06:48:29.620 回答