Android Open Source - android Main Fragment






From Project

Back to project page android.

License

The source code is released under:

GNU General Public License

If you think the Android project 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.

Java Source Code

package de.babioch.wordclockremote.fragment;
/*from   www. j  a  va  2s . c  o m*/
import de.babioch.wordclockremote.R;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;

public class MainFragment extends Fragment {

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)
    {

        View view = inflater.inflate(R.layout.fragment_main, container, false);

        return view;

    }

}




Java Source Code List

de.babioch.wordclockremote.activity.AboutActivity.java
de.babioch.wordclockremote.activity.MainActivity.java
de.babioch.wordclockremote.activity.SettingsActivity.java
de.babioch.wordclockremote.fragment.AboutFragment.java
de.babioch.wordclockremote.fragment.AdvancedFragment.java
de.babioch.wordclockremote.fragment.MainFragment.java
de.babioch.wordclockremote.fragment.SettingsFragment.java
de.babioch.wordclockremote.fragment.TerminalFragment.java