Back to project page Book-MetaSearch.
The source code is released under:
Apache License
If you think the Android project Book-MetaSearch listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package net.grosinger.bookmetasearch.fragment; // ww w . j av a 2 s .co m import android.app.Fragment; import android.os.Bundle; import android.util.Log; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import net.grosinger.bookmetasearch.R; /** * Created by tony on 11/2/13. */ public class HomeFragment extends Fragment { public HomeFragment() { Log.d(getClass().getSimpleName(), "Initialized"); } @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { Log.d(getClass().getSimpleName(), "Creating View"); View rootView = inflater.inflate(R.layout.fragment_home, container, false); return rootView; } }