Android Open Source - GoogleNavigationDrawer Fragment Index






From Project

Back to project page GoogleNavigationDrawer.

License

The source code is released under:

Apache License

If you think the Android project GoogleNavigationDrawer 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 it.neokree.example;
/*from  ww w.  j av a2s .com*/
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v4.app.Fragment;
import android.view.Gravity;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;

/**
 * Created by neokree on 24/11/14.
 */
public class FragmentIndex extends Fragment {

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

        TextView text = new TextView(this.getActivity());
        text.setText("Section");
        text.setGravity(Gravity.CENTER);
        return text;

    }
}




Java Source Code List

it.neokree.example.ApplicationTest.java
it.neokree.example.FragmentIndex.java
it.neokree.example.MainActivity.java
it.neokree.example.Profile.java
it.neokree.example.Settings.java
it.neokree.googlenavigationdrawer.GAccountListener.java
it.neokree.googlenavigationdrawer.GAccount.java
it.neokree.googlenavigationdrawer.GSectionListener.java
it.neokree.googlenavigationdrawer.GSection.java
it.neokree.googlenavigationdrawer.GoogleNavigationDrawer.java