Back to project page Intro-to-Android.
The source code is released under:
Apache License
If you think the Android project Intro-to-Android 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 org.lugatgt.zoogie.introtoandroid.slide; // www.j a v a 2s. c o m import android.os.Bundle; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import org.lugatgt.zoogie.introtoandroid.R; import org.lugatgt.zoogie.present.ui.SlideFragment; public class InternalsSlide extends SlideFragment { @Override protected View onCreateContentView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View view = inflater.inflate(R.layout.slide_internals, null); return view; } }