Multiple markers at this line
- R cannot be resolved to a variable
- Line breakpoint:AndroidFacebookConnectActivity [line: 45] -
onCreate(Bundle)
在以下代码中的所有资源 id 都有问题,在这里我添加了 facebook sdk 并尝试运行导入的示例项目但显示上述错误
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
btnFbLogin = (Button) findViewById(R.id.btn_fblogin);
btnFbGetProfile = (Button) findViewById(R.id.btn_get_profile);
btnPostToWall = (Button) findViewById(R.id.btn_fb_post_to_wall);
btnShowAccessTokens = (Button) findViewById(R.id.btn_show_access_tokens);
mAsyncRunner = new AsyncFacebookRunner(facebook);