Problem
- Reusables@common.com
- £1,000,000
- www.inventing-a-wheel.ee
- Action Shortcut: C
I need to let the user enter an email, pick a date, edit a webpage, choose an image etc - there are a number of common presentation tasks that are not directly subserved by the Android SDK widget library and so I thought there may be a dedicated repository or framework available that specializes in such UI concerns.
[ While Android provides widgets that can be turned into specific editors for email, for instance, the question here regards finding a library of ready-made components that specifically target such common data types i.e. UI elements which are specifically geared towards presenting such data, out-of-the-box, as well as providing validation. ]
Existing Sources?
So I searched the web with a combination of terms like Android, widget, library, view, toolkit, fragment, repository, but came up with false positives only.
Could you refer me to any collective efforts that provide a list of classes / XML layouts implementing common data-specific input / editing / configuration elements?
So I could do something like this in ActivityA1, ActivityA3, ActivityB1, ActivityN9:
- new EmailEditText()
- new UrlTextView()
- new IPView() ...
Matching Data to Views?
What I'm really looking for is a set of widgets that would be resolved according to the data that needs to be presented, perhaps similarly to implicit intent resolution ?
So from my domain model I would provide some data with a specific data type, which should be displayed somehow appropriately. But I do not explicitly set what View will present this data, instead there is a matcher inbetween that filters a list of available specific-purpose views and selects the most appropriate one for the given data type.
Anything like that out there already?