Back to project page TheNewBoston.
The source code is released under:
Eclipse Public License - v 1.0 THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECI...
If you think the Android project TheNewBoston 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.homelysoft.thenewboston; //from w w w . jav a 2 s .com import android.app.Activity; import android.os.Bundle; import android.widget.TextView; public class SQLView extends Activity{ @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.sql_view); TextView tv=(TextView)findViewById(R.id.tv_sql_info); HotOrNot info=new HotOrNot(this); info.open(); String data=info.getData(); info.close(); tv.setText(data); } }