Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. publick class MyFragment extends Fragment {
  2. public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, Bundle savedInstanceState) {
  3. View view = inflater.inflate(R.layout.my_fragment, container, false);
  4.  
  5. myDatabaseReference.addValueEventListener(new ValueEventListener() {
  6. ...
  7. });
  8. }
  9. return view;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement