SQlite primary key field name & CursorAdapter subclasses
问题 Why do CursorAdapter subclasses requires the primary key to be necessarily _id ? Isn't there a method to override, or something like that, to change this behaviour ? I have read this trick many times, and I am aware of that ... I just want to understand better ! Thanks 回答1: Why does CursorAdapter subclasses requires the primary key to be necessarily _id ? It turns around and provides that value in various places, such as the long id value in getView() . Isn't there a method to override, or