package com.alieeen.smartchair.fragments.walktrough;
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 FragmentWalkthrough02 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 FragmentWalkthrough02 newInstance() {
FragmentWalkthrough02 fragment = new FragmentWalkthrough02();
return fragment;
}
public FragmentWalkthrough02() {
// 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.walktrought02, container, false);
return v;
}
}