Ok I\'m looking right past something here..
Every time I\'m in my app and I change activities, logcat reports series of warnings:
02-04 14:42:36.524:
In my case the problem was in ListPreference
default value. Even if you type it as String
(for example "10"
) it will be interpreted as int
and then converted to String
and thus complaining.
For example, this will give a warning:
but this will not:
and define @string/ten
in strings.xml
as:
10
Dumb, but it gets rid of the warning.