Back to project page Tekdaqc-Android-Manager.
The source code is released under:
Apache License
If you think the Android project Tekdaqc-Android-Manager 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.toxicbakery.android.tekdaqc.fragments; /*from w w w. j av a 2 s . c o m*/ import android.os.Bundle; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import com.toxicbakery.android.tekdaqc.R; public class DetailsFragment extends ABaseFragment { private static final String TAG = DetailsFragment.class.getSimpleName() + ".TAG"; @Override public String getFragmentTag() { return TAG; } @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { final View view = inflater.inflate(R.layout.fragment_details, null, false); return view; } }