android - how to multiple contents of a table from database in listview and in table format -
i have 2 tables in database, 1 contains userid , password , stuff, , other 1 contains transactions. when user login in app should able display transaction in table format.
i wondering how use list view in table format, , display transactions @ once.
table users(id integer primary key,username text,password text,fullname text,age integer); table userdetails(cid references useres(id),withdraw int,deposit int,balance int);
when user login want display transactions in listview , clear list when logout, should do?
Comments
Post a Comment