Back to project page loopback-android-getting-started.
The source code is released under:
MIT License
If you think the Android project loopback-android-getting-started 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.strongloop.android.loopback.guide; /* www . j a va2 s.com*/ import com.strongloop.android.loopback.guide.util.HtmlFragment; import android.os.Bundle; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; public class IntroductionFragment extends HtmlFragment { @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { setRootView((ViewGroup) inflater.inflate( R.layout.fragment_introduction, container, false)); setHtmlText(R.id.introduction_content, R.string.introduction_content); return getRootView(); } }