Back to project page MyResumeAndroidApp.
The source code is released under:
Apache License
If you think the Android project MyResumeAndroidApp 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 com.fernandocejas.mycv.ui.fragment; /*www . ja v a2 s .c o m*/ import android.app.Activity; import android.os.Bundle; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import com.fernandocejas.mycv.R; /** * The android10 coder: http://www.android10.org/ * @author Fernando Cejas <http://fernandocejas.com/> */ public final class ProfileFragment extends BaseFragment { private View mView; public ProfileFragment() { super(); } @Override public void onAttach(Activity activity) { super.onAttach(activity); } @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { mView = inflater.inflate(R.layout.lyt_fragment_profile, container, false); return mView; } }