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?
Asked
Active
Viewed 363 times
1 Answers
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
-
do I need to create new java or just put in the existing java? – 008 Dec 13 '12 at 13:11