android - Open Facebook Fanpage Album intent? -


i have problem intent in android studio,

i want open fanpage album facebook app application.

i tried use:

intent intent = new intent(intent.action_view, uri.parse("fb://album/110994529613954?owner=109409633105777"));                     startactivity(intent); 

and can use this:

intent intent = new intent(intent.action_view, uri.parse("fb://facewebmodal/f?href=https%3a%2f%2fwww.facebook.com%2f109409633105777%2fphotos%2f%3ftab%3dalbum%26album_id%3d110994529613954"));                         startactivity(intent); 

but want open album without facewebmodal :/


Comments

Popular posts from this blog

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -