Back to project page RadaeePDF-B4A.
The source code is released under:
Apache License
If you think the Android project RadaeePDF-B4A 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.radaee.reader; //from ww w . ja v a2s. c o m import com.radaee.pdf.*; import android.app.Activity; import android.os.Bundle; /** * test activity for PDFInk<br/> * PDFInk test HWriting class. * @author Radaee */ public class PDFInkAct extends Activity { private PDFInk m_vInk = null; /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); Global.Init( this ); m_vInk = new PDFInk(this); setContentView(m_vInk); } protected void onDestroy() { Global.RemoveTmp(); super.onDestroy(); } }