Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

MUZ140690 Rumbidzai Rwodzi
388 Pointsam nt getin option to add the onclicklisterner, addin it manualy is givin eror- unexpected token and identifier expected
TextView FactLabel = (TextView) findViewById(R.id.facttextview); Button ShowFactButton=(Button) findViewById(R.id.Showfactbutton); View.OnClickListener listener = new View.OnClickListener() { @Override public void onClick(View v) {
}
};
ShowFactButton.OnClickListener{listener}
}
@Override
public View findViewById(int id) {
return super.findViewById(id);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_fun_facts, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
//noinspection SimplifiableIfStatement
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}