Android Open Source - Navigation-Drawer Inbox Fragment






From Project

Back to project page Navigation-Drawer.

License

The source code is released under:

MIT License

If you think the Android project Navigation-Drawer 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.bellotti.navigationdrawer.fragments;
//from  ww  w  .jav a  2 s .  c o m
import android.app.Activity;
import android.net.Uri;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;

import it.bellotti.navigationdrawer.R;

public class InboxFragment extends Fragment {



    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) {
        // Inflate the layout for this fragment
        return inflater.inflate(R.layout.fragment_inbox, container, false);
    }

}




Java Source Code List

it.bellotti.navigationdrawer.MainActivity.java
it.bellotti.navigationdrawer.fragments.DraftFragment.java
it.bellotti.navigationdrawer.fragments.HomeFragment.java
it.bellotti.navigationdrawer.fragments.InboxFragment.java
it.bellotti.navigationdrawer.fragments.SentFragment.java