Skip to content

Instantly share code, notes, and snippets.

@ziginsider
Created November 21, 2017 19:54
Show Gist options
  • Save ziginsider/466ac71ecb1eeec6f218fa3054089f71 to your computer and use it in GitHub Desktop.
Save ziginsider/466ac71ecb1eeec6f218fa3054089f71 to your computer and use it in GitHub Desktop.
public class MainActivity extends AppCompatActivity {
...
Button postsButton;
...
@Override
protected void onCreate(Bundle savedInstanceState) {
...
postsButton = (Button) findViewById(R.id.posts_button);
postsButton.setVisibility(View.GONE);
...
loginButton.setReadPermissions(Arrays.asList("public_profile",
"email",
"user_location",
"user_birthday",
"user_friends",
"user_posts"));
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment