Advertisement
Guest User

Untitled

a guest
Mar 25th, 2014
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.43 KB | None | 0 0
  1. package app.CT.BTCCalculator;
  2.  
  3. import android.app.Fragment;
  4. import android.os.Bundle;
  5. import android.view.LayoutInflater;
  6. import android.view.View;
  7. import android.view.ViewGroup;
  8.  
  9. public class FragmentSecond extends Fragment
  10. {
  11.     @Override
  12.     public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)
  13.     {
  14.         return inflater.inflate(R.layout.main2, container, false);
  15.     }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement