Back to project page FlangeAssist.
The source code is released under:
MIT License
If you think the Android project FlangeAssist 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.atasoft.flangeassist.fragments; /* w ww.ja va 2s . co m*/ import android.os.*; import android.app.*; import android.view.*; import com.atasoft.flangeassist.*; public class AboutFragment extends Fragment { public static final String NAME = "About the Toolbox"; @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View rootView = inflater.inflate(R.layout.about, container, false); return rootView; } }