You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

StopRoutePickerFragment.java 583B

1234567891011121314151617181920
  1. package com.rthoni.stssaguenay.ui.fragments;
  2. import android.os.Bundle;
  3. import android.support.annotation.Nullable;
  4. import android.support.v4.app.Fragment;
  5. import android.view.LayoutInflater;
  6. import android.view.View;
  7. import android.view.ViewGroup;
  8. /**
  9. * Created by robin on 9/29/16.
  10. */
  11. public class StopRoutePickerFragment extends Fragment {
  12. @Nullable
  13. @Override
  14. public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
  15. return super.onCreateView(inflater, container, savedInstanceState);
  16. }
  17. }