Advertisement
sahil095

Untitled

Oct 9th, 2015
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.42 KB | None | 0 0
  1.  
  2. public class MainActivity extends AppCompatActivity {
  3.     Button b1;
  4.     TextView t;
  5.     int count=0;
  6.     @Override
  7.     protected void onCreate(Bundle savedInstanceState) {
  8.         super.onCreate(savedInstanceState);
  9.         setContentView(R.layout.activity_main);
  10.         b1=(Button)findViewById(R.id.button);
  11.         t=(TextView)findViewById(R.id.text);
  12.         b1.OnClickListener(new View.OnClickListener())
  13.  
  14.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement