Skip to content

Commit

Permalink
Android NumberPicker binding documentation (#3257)
Browse files Browse the repository at this point in the history
* Updates data-binding documentation to include Android.Widget.NumberPicker.

* Fixes Mvx version Android.Widget.NumberPicker data bindings were introduced.
  • Loading branch information
tbalcom authored and Cheesebaron committed Jan 15, 2019
1 parent 4b5e926 commit 24ad25b
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions docs/_documentation/fundamentals/data-binding.md
Expand Up @@ -1085,8 +1085,8 @@ using MvvmCross.Platforms.Android.Binding
using MvvmCross.Binding.Droid
```
Base Control | String | Extension method | Mvx version introduced
---- | --------- | --------- | ---------
Base Control | String | Extension method | Mvx version introduced | Notes
---- | --------- | --------- | --------- | ---------
Android.Views.View | Visible | BindVisible()
Android.Views.View | Hidden | BindHidden()
Android.Views.View | Click | BindClick()
Expand All @@ -1112,6 +1112,8 @@ Android.Widget.EditText | TextFocus | BindTextFocus()
Android.Widget.SearchView | Query | BindQuery()
Android.Widget.RatingBar | Rating | BindRating()
Android.Widget.AdapterView | SelectedItemPosition | BindSelectedItemPosition()
Android.Widget.NumberPicker | DisplayedValues | BindDisplayedValues() | 6.2.3 | Must be before `Value` binding
Android.Widget.NumberPicker | Value | BindValue() | 6.2.3 | Must be after `DislayedValues` binding
Android.Preferences.Preference | Value | BindValue()
Android.Preferences.EditTextPreference | Text | BindText()
Android.Preferences.ListPreference | Value | BindValue()
Expand Down Expand Up @@ -1151,7 +1153,7 @@ MvvmCross.Droid.Support.V7.AppCompat.Widget.MvxAppCompatRadioGroup | SelectedIte
**Android - `using MvvmCross.Droid.Support.V7.Preference`**
Base Control | String | Extension method | Mvx version introduced
---- | --------- | ---------
---- | --------- | --------- | ---------
Android.Support.V7.Preferences.Preference | Value | BindValue()
Android.Support.V7.Preferences.ListPreference | Value | BindValue()
Android.Support.V7.Preferences.EditTextPreference | Text | BindText()
Expand Down

0 comments on commit 24ad25b

Please sign in to comment.