Open forum in Tapatalk via Intent

Does anyone know a way to (discover and) open a forum in Tapatalk via Intents? My pseudo-approach will be as follows, but I do not really intend to “use” for this application:

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") ) ); 

Thanks in advance!

+4
source share

Source: https://habr.com/ru/post/1394814/


All Articles