当用户想要在系统浏览器中打开Facebook时,尝试获取另一个网站

时间:2013-04-24 10:27:23

标签: android android-webview

为此,我正在使用此代码,

try {

                                        Process process = Runtime.getRuntime().exec("logcat -d");
                                        BufferedReader bufferedReader = new BufferedReader(
                                        new InputStreamReader(process.getInputStream()));

                                StringBuilder log = new StringBuilder();
                                String line = "";
                                while ((line = bufferedReader.readLine()) != null) 
                                {

                                    if(line.contains("facebook.com"))
                                    {
                                        //Browser.addSearchUrl(getContentResolver(), "google");
                                        Log.i(Tag1,"ww"+ line);

                                        /*Intent startMain = new Intent(Intent.ACTION_MAIN);
                                        startMain.addCategory(Intent.CATEGORY_HOME);
                                        startMain.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
                                        startActivity(startMain);*/
                                        android.os.Process.killProcess(pid);

                                    }
                                  //log.;
                                }
                    } catch (IOException e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
                    }

我想在用户尝试在系统浏览器中打开Facebook时打开Goog​​le。 为此,我正在阅读Logcat并获取www.facebook.com。

0 个答案:

没有答案