-3

I want get just download and upload history from browser in android and save it in database,can or not?help me plz, and display it in linearlayout(vertical) Can teach me step by step?

008
  • 1

1 Answers1

0

You should start reading : Browser SO similar question

I would recommend a listview, but if you want to use LinearLayout, you can create TextViews dinamically while you iterate the Cursor returned:

TextView tv=new TextView(getApplicationContext());
tv.setText("text blah blah");
layout.addView(tv);

Look at this question: SO question

Community
  • 1
  • 1
Luis Neves
  • 1,067
  • 2
  • 10
  • 21