This is my code that is suppose to change some text on button press:-
public class MyActivity extends ActionBarActivity { TextView txtview; Button bu
You got the method name wrong :
public void Onclick(View paramView)
should be
public void onClick(View paramView)
Following Java naming conventions can help you.