Upload Code
loading-left
loading loading loading
loading-right

Loading

Profile
No self-introduction
codes (2)
ListView Android
no vote
Android  ListView  is a view which groups several items and display them in vertical scrollable list. The list items are automatically inserted to the list using an  Adapter  that pulls content from a source such as an array or database. An adapter actually bridges between UI components and the data source that fill data into UI Component. Adapter can be used to supply the data to like spinner, list view, grid view etc. The  ListView  and  GridView  are subclasses of  AdapterView  and they can be populated by binding them to an  Adapter , which retriev
ok_tested
2016-08-23
0
1
SQLite Android Basic
no vote
SQLite  is an Open Source database. SQLite supports standard relational database features like SQL syntax, transactions and prepared statements. The database requires limited memory at runtime (approx. 250 KByte) which makes it a good candidate from being embedded into other runtimes. SQLite supports the data types TEXT (similar to String in Java), INTEGER (similar to long in Java) and REAL (similar to double in Java). All other types must be converted into one of these fields before getting saved in the database. SQLite itself does not validate if the types written to the columns are actually of the defined type, e.g. you can write
ok_tested
2016-08-23
0
1
No more~