Back to project page PassGraph.
The source code is released under:
GNU General Public License
If you think the Android project PassGraph 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 littlesoft.widgets; /* w w w . ja va 2 s .c o m*/ import littlesoft.widgets.util.SystemUiHider; import android.app.Activity; import android.os.Bundle; import android.view.MotionEvent; import android.view.View; /** * An example full-screen activity that shows and hides the system UI (i.e. * status bar and navigation/system bar) with user interaction. * * @see SystemUiHider */ public class PassGraphTest extends Activity { private View mainView; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); mainView = new PassGraphWidget(this); setContentView(mainView); } @Override public boolean dispatchTouchEvent(MotionEvent ev){ return mainView.dispatchTouchEvent(ev); } }