Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/android/204.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Android 通过Intent在Tapatalk开放论坛_Android_Android Intent - Fatal编程技术网

Android 通过Intent在Tapatalk开放论坛

Android 通过Intent在Tapatalk开放论坛,android,android-intent,Android,Android Intent,有人知道一种通过意图在塔帕塔克(Tapatalk)打开论坛的方法吗?我的伪方法如下所示,但实际上我不知道对给定的应用程序“使用”的目的是什么: try { startActivity( /* INTENT TO BE USED TO OPEN TAPATALK */ ); return; } catch( ActivityNotFoundException ex ) { //Ignore the Exception a

有人知道一种通过意图在塔帕塔克(Tapatalk)打开论坛的方法吗?我的伪方法如下所示,但实际上我不知道对给定的应用程序“使用”的目的是什么:

try {

    startActivity(

        /* INTENT TO BE USED TO OPEN TAPATALK */  

    );        
    return;

} catch( ActivityNotFoundException ex ) {

    //Ignore the Exception as the user does not have Tapatalk installed 

}

startActivity( 

    new Intent( 

        Intent.ACTION_VIEW, 
        Uri.parse("http://example.com")

     ) 

);

提前谢谢

嗯。。。为什么这会被否决?如果你问我的话,这是100%合法的问题。如果有人能给我一个答案,那就太好了,塔帕塔克的人根本帮不上忙: