Android L feature?
Opened this issue · 5 comments
Will this be a default feature in Android L basically then? Has anyone tried it? Wondering the best way to accommodate for 4.0 up to L.
@jpshelley as far as i know this is not a default on Android L. In fact I don't think the current version of AndroidFlatLabel shows up in Android L. This is a wip unless someone else sends in a pull request for compatible changes. I'll work on this when i can squeeze the time.
Hmm it seems like it might be though?
http://www.google.com/design/spec/components/text-fields.html#text-fields-floating-labels
Unless this is only a design suggestion and not a core feature.
Ah thanks for that. I also found this reddit thread that says it's coming
to Android L -
http://www.reddit.com/r/androiddev/comments/293j59/is_google_bringing_floating_labels_to_the/
If they pack it into the support library, then maybe it might make sense to
retire the library. But a lot of the other UI niceties from L aren't being
back ported via the support library. If it's not back ported then will
still have to deal with a mechanism of adapting based on API levels. urgh.
On Fri, Oct 3, 2014 at 5:25 PM, John Shelley notifications@github.com
wrote:
Hmm it seems like it might be though?
http://www.google.com/design/spec/components/text-fields.html#text-fields-floating-labels
Unless this is only a design suggestion and not a core feature.—
Reply to this email directly or view it on GitHub
#11 (comment)
.
Don't forget that custom EditText fields are currently not styled by Android L Support Library, so you could just use this before v21 anyway.
What happens on Android L itself is left for someone else to answer.
I know there is a bunch of libraries, but just wanted to include this link:
https://gist.github.com/chrisbanes/11247418
since Chris Banes is one of the head Android Devs and its his code.