How to fetch edittext value from one activity to recyclerview of next activity?
问题 I'm trying to fetch edittext value from one activity and displaying that text in recycleview and storing using room DB.... Basically the idea is adding the address in activity address when clicks on plus it will redirect to next page where the user gets the address form onsubmit it will fetch address and add to previous activity recycleview. here is my code for room: table:--- @Entity(tableName = "address") class Address { @PrimaryKey var id = 0 @ColumnInfo(name = "address") var address: