Advertisement
Guest User

Untitled

a guest
Apr 15th, 2014
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. <Button
  2. android:id="@+id/jn"
  3. android:layout_width="match_parent"
  4. android:layout_height="100dp"
  5. android:layout_marginTop="3dp"
  6. android:background="@drawable/b_jn" />
  7.  
  8. Button bjn = (Button) findViewById(R.id.jn);
  9.  
  10. bjn.setOnClickListener(new View.OnClickListener() {
  11.  
  12. @Override
  13. public void onClick(View v) {
  14. // TODO Auto-generated method stub
  15. startActivity(new Intent("applandia.quiosquedigitalfree.JN"));
  16.  
  17. }
  18. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement