This is my code that is suppose to change some text on button press:-
public class MyActivity extends ActionBarActivity { TextView txtview; Button bu
Tricks: add @Override above onClick(View). Without @Override, the warning means you didn't implement onClickListener.
@Override
onClick(View)
onClickListener