package com.alieeen.smartchair.fragments.main;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import com.alieeen.smartchair.R;
/**
* Created by alinekborges on 20/05/15.
*/
public class AboutUsFragment extends Fragment {
/**
* Use this factory method to create a new instance of
* this fragment using the provided parameters.
*
* @return A new instance of fragment CitiesFragment.
*/
public static AboutUsFragment newInstance() {
AboutUsFragment fragment = new AboutUsFragment();
return fragment;
}
public AboutUsFragment() {
// Required empty public constructor
}
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
View v = inflater.inflate(R.layout.about_fragment, container, false);
return v;
}
}