Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to save history(as simple url) from webview(in browser.class) in listView(in history.class). I know about SQLiteHelper, but I'm don't understand yet, how exatcly to use it, for my app? Please write some simple code! If it question somewhere is answered, please send me link.
I was try this, but it's not useable:

public class history extends Activity implements OnClickListener, OnItemClickListener{
ImageButton back;
ListView listSavedFiles;
String[] SavedFiles;
File f; 
String fileName;
FileOutputStream fos;
@Override
protected void onCreate(Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    super.onCreate(savedInstanceState);
    requestWindowFeature(Window.FEATURE_NO_TITLE);
    setContentView(R.layout.historys);
    back = (ImageButton)findViewById(R.id.iback);
    back.setOnClickListener(this);


      /** Called when the activity is first created. */

       listSavedFiles = (ListView)findViewById(R.id.listView2);

       ShowSavedFiles();


       WebView  w = tab1.ourBrow;
       fileName = w.getTitle().toString();
       String content = w.getUrl().toString();


       try {
        fos = openFileOutput(fileName, Context.MODE_PRIVATE);
        f = new File(System.getProperty("user.dir"),fileName);
        f.canWrite();
        fos.write(content.getBytes());
        fos.close();



       } catch (FileNotFoundException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
       } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
       }

       ShowSavedFiles();

      }



      void ShowSavedFiles(){
       SavedFiles = getApplicationContext().fileList();
       ArrayAdapter<String> adapter
       = new ArrayAdapter<String>(this,
         R.layout.bookmark,R.id.title,
         SavedFiles);
       listSavedFiles.setOnItemClickListener(this);




       listSavedFiles.setAdapter(adapter);
      }
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.