2014-11-06 30 views
0

對於Instagram的打開一個特定的圖像我用這個意圖:如果我想看到一個特定的主題標籤的所有圖片我有什麼做的打開Instagram的主題標籤的意圖

Uri uri = Uri.parse("http://instagram.com/p/IMAGE_ID"); 
Intent insta = new Intent(Intent.ACTION_VIEW, uri); 

?其實我想打開Instagram和看到一個標籤圖像

回答

0
Uri uri = Uri.parse("https://instagram.com/explore/tags/your_tag/"); 
Intent intent = new Intent(Intent.ACTION_VIEW, uri); 
startActivity(intent);