Back to project page jpstrack.android.
The source code is released under:
/* * Copyright (c) 2006-2014 Ian F. Darwin, http://darwinsys.com * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following co...
If you think the Android project jpstrack.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 jpstrack.android; /* www . ja va 2 s .c om*/ import android.app.Activity; import android.os.Bundle; import android.view.View; import android.view.View.OnClickListener; import android.webkit.WebView; import android.widget.Button; public class ShowWelcomePage extends Activity { private static final String WEB_TUTORIAL_URL = "http://darwinsys.com/jpstrack/tutorial.html"; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.onboard_webpage); WebView view = (WebView) findViewById(R.id.onboard_webView); view.loadUrl(WEB_TUTORIAL_URL); Button b = (Button)findViewById(R.id.onboard_webDoneButton); b.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { finish(); } }); } }