I\'m very new to Android development and just started to study.
What I\'m trying is to add a button and when that button is pressed a text \"my first project\" to ge
Check this:
hello.setOnClickListener(new OnClickListener() { @Override public void onClick(View paramView) { text.setText("hello"); } });