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.

HomeFragment.java 845B

12345678910111213141516171819202122232425262728293031
  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.support.v7.widget.RecyclerView;
  6. import android.view.LayoutInflater;
  7. import android.view.View;
  8. import android.view.ViewGroup;
  9. import com.rthoni.stssaguenay.R;
  10. import butterknife.BindView;
  11. import butterknife.ButterKnife;
  12. /**
  13. * Created by robin on 9/29/16.
  14. */
  15. public class HomeFragment extends Fragment {
  16. @BindView(R.id.listFavouritesStops)
  17. RecyclerView _favouritesStops;
  18. @Nullable
  19. @Override
  20. public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
  21. View v = inflater.inflate(R.layout.fragment_home, container, false);
  22. ButterKnife.bind(this, v);
  23. return v;
  24. }
  25. }