Fixed
Status Update
Comments
fs...@gmail.com <fs...@gmail.com> #2
The RecyclerView is a brand new widget in the support library.
There are some known issues with using RecyclerView in the layout rendering and layout editor.
We are working on a fix; you can star this issue if you want to keep track of the progress.
There are some known issues with using RecyclerView in the layout rendering and layout editor.
We are working on a fix; you can star this issue if you want to keep track of the progress.
yb...@google.com <yb...@google.com> #3
Is there a ETA when this bug is fixed?
I would say it is quiet simple to fix. You just need to use any LayoutManager.
Are there any plans when this View will be published for older platforms? AFIK it works even on Gingerbread.
I would say it is quiet simple to fix. You just need to use any LayoutManager.
Are there any plans when this View will be published for older platforms? AFIK it works even on Gingerbread.
de...@gmail.com <de...@gmail.com> #4
Getting the same error:
"The new RecyclerView does not yet work in Studio. We are working on a fix. (Open Issue 36949180 , Show Exception) "
"The new RecyclerView does not yet work in Studio. We are working on a fix. (Open
yb...@google.com <yb...@google.com> #5
Is it going to be best practice to use Recylerview, and Listview essentially deprecate?
yb...@google.com <yb...@google.com> #6
Haven't heard anything for a month. Any progress??
yb...@google.com <yb...@google.com> #7
Any news?
Description
Version used: 1.0
Devices/Android versions reproduced on: NA
I have one entity that contains a set of enums. For example:
@Entity
data class Person(
@field:PrimaryKey val id: Int,
val name: String,
val favouriteDays: Set<Day>)
enum class Day {
MONDAY,
TUESDAY,
WEDNESDAY,
THURSDAY,
FRIDAY,
SATURDAY,
SUNDAY
}
I want to store this entity in a single table. In many cases, especially with enums, we could use a single bit mask to save the list as a number in the database.
Here's one example of what I wanted to do:
object DayCollectionTypeConverter {
@JvmStatic
@TypeConverter
fun daysConverter(days: Set<Day>): Int {
var value = 0
for (day in days) {
value += (1 shl day.ordinal)
}
return value
}
@JvmStatic
@TypeConverter
fun daysConverter(value: Int): Set<Day> {
val set = mutableSetOf<Day>()
for (day in Day.values()) {
if (value and 1 shl day.ordinal != 0) {
set.add(day)
}
}
return set
}
}
That code doesn't work as intended because @TypeConverter would allow me to convert one Day object, but not a collection (or set, list, etc) of Days.
I suggest a new annotation is created so the developer can specify how to save a Collection into a single column in the same table.