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 FragmentWalkthrough01 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 FragmentWalkthrough01 newInstance() { FragmentWalkthrough01 fragment = new FragmentWalkthrough01(); return fragment; } public FragmentWalkthrough01() { // 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.walktrought01, container, false); return v; } }