Actually i am calling a Fb App using Intent from my app and showing like page if the user has Fb app then i am using the app to show the like page otherwise i am showing the like page in browser but in fb app the user is not login means it shows fb login page then after login it showing feed page instead of like page can you help me to solve this answer :-) Right now i am using this code
try {
context.getPackageManager().getPackageInfo("com.facebook.katana", 0);
return new Intent(Intent.ACTION_VIEW, Uri.parse("fb://page/1086017928736241"));
} catch (Exception e) {
return new Intent(Intent.ACTION_VIEW, Uri.parse("https://www.facebook.com/Animgeek"));
}