18
Android Room Database : 엔티티에서 Arraylist를 처리하는 방법은 무엇입니까?
방금 오프라인 데이터 저장을 위해 Room을 구현했습니다. 하지만 Entity 클래스에서 다음 오류가 발생합니다. Error:(27, 30) error: Cannot figure out how to save this field into database. You can consider adding a type converter for it. 그리고 수업은 다음과 같습니다. @Entity(tableName = "firstPageData") public class MainActivityData { @PrimaryKey private String userId; …