Guest User

Untitled

a guest
Apr 25th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. public View onCreateView(LayoutInflater inflater, ViewGroup container,
  2. Bundle savedInstanceState) {
  3. // Inflate the layout for this fragment
  4.  
  5.  
  6. View v= inflater.inflate(R.layout.fragment_tab3, container, false);
  7.  
  8. mapbtn = (Button) v.findViewById(R.id.mapButton);
  9.  
  10. mapbtn.setOnClickListener(new View.OnClickListener() {
  11. @Override
  12. public void onClick(View view) {
  13.  
  14. Intent intent = new Intent(getActivity(), MapsActivity.class);
  15. startActivity(intent);
  16. }
  17. });
  18.  
  19. return v;
  20.  
  21. }
Add Comment
Please, Sign In to add comment