Back to project page epgreader-android.
The source code is released under:
Apache License
If you think the Android project epgreader-android 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.jeffpalm.android.epg.app; /*from w w w. j av a 2 s.c o m*/ import com.jeffpalm.android.epg.app.R; import android.os.Bundle; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; /** * A fragment that is a place-holder when there is no content. */ public class NoContentFragment extends EPGReaderFragment { @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { return inflater.inflate(R.layout.fragment_no_content, container, false); } @Override protected void onActivityCreatedInternal(Bundle savedInstanceState) { } }