Reputation: 11
I want to add a dynamic viewpager in my application which show Sqlite database records one by one on swipe from left to right please help me in developing this. i don't know how to configure fragments and add multiple labels to it show database records
Upvotes: 1
Views: 620
Reputation: 11
By using the concept of dynamic fragments and SQLlite database, manage a list of records containing student name, registration number, and current semester with degree title e.g. BSSE6/BSIT6/BSCS6. Please implement following functionalities:
Upvotes: 1
Reputation: 4374
You can use FragmentPagerAdapter
and to get data from Sqlite database you can use CursorAdapter
class. For more information please look into This link which might help you to get your desired result.
Upvotes: 3