Android Open Source - ADNHome Messages Fragment






From Project

Back to project page ADNHome.

License

The source code is released under:

Copyright (c) 2013, David Krauser All rights reserved. Redistribution and use in source and binary forms, with or without modification, are not permitted. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT ...

If you think the Android project ADNHome 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 com.davidkrauser.adnhome;
//www  . j ava  2  s.  co  m
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;

public class MessagesFragment extends Fragment {
 
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {  
        View view = inflater.inflate(R.layout.messages, container, false);
        return view;  
    }
    
}




Java Source Code List

com.davidkrauser.adnhome.ADNModel.java
com.davidkrauser.adnhome.ApplicationListFragment.java
com.davidkrauser.adnhome.Launcher.java
com.davidkrauser.adnhome.MessagesFragment.java
com.davidkrauser.adnhome.StreamFragment.java