I’m new to android and android development. I’m trying to make an app similar to one that I made for iOS which uses coredata to manage a list of objects in a tableview. Could you give me some reference points for me to look up because I don’t even know where to start. What would be the android “translation” for tableview, coredata and entity? Any links to any kind of documentation or tutorials would be a lot of help. Thank you!
Share
TableView is called ListView in Android.
ListView Tutorial.
CoreData is called SQLite Database in Android.
Entity is called Table in Android (which is done using SQL code programmatically, not same as Xcode way as UI to create Entities and Coredata).
SQLite Database Tutorial.
Note: Android Training from Google is a good start if you are new in Android Development.