summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Controls.Issues
AgeCommit message (Collapse)AuthorFilesLines
2016-09-18[Controls] Update Insights and UITest packages and fix warnings (#361)Rui Marinho1-0/+5
* [Controls] Update Insights and UITest packages * Update Xamarin.Forms.Platform.Android (Forwarders).csproj
2016-09-15[Android] Fix failing UITests (#356)Rui Marinho1-2/+3
2016-09-13[iOS] ViewCells with Accessories will be properly laid out again (#338)Samantha Houts2-0/+65
* Add repro for 43161 * [iOS] Don't adjust ViewCell Bounds when there is an Accessory * [iOS] Fix spacing
2016-09-13Revert "[C] Prevent enabling a Button via setting a Command (#308)"Rui Marinho2-57/+0
This reverts commit 368a375f13fc2e4b5ff00dbbdd7a2d6bb53988eb.
2016-09-12[C] Prevent enabling a Button via setting a Command (#308)Paul DiPietro2-0/+57
2016-08-30[Win] Fix FontAttributes unexpectedly changing a label's size (#325)Paul DiPietro2-0/+57
2016-08-30Use character truncation in Windows (#321)E.Z. Hart2-0/+217
Change layout order ViewCells on Windows to correct label length layout issues Add extra layout pass on ViewCell load to make cells without margins visible
2016-08-30Fix memory leak caused by BaseCellView and RendererHolder (#311)E.Z. Hart2-0/+91
2016-08-30Platform Specifics (#301)Samantha Houts4-8/+70
* Playing around with how the platform specifics interfaces etc. might work * Sample implementation of iOS navigation translucency * Very slightly reduced code * Better vendor stuff * Drop single-implemenation interfaces * Generics on NavigationPage * On-demand vendor stuff * Remove functionally duplicate classes and make ControlGallery work again * Namespace all the things. XAML test. * Can use Effect to attach platform specific * Attach Effect on PropertyChanging for XAML support! * Rename IConfigPlatform interfaces for readability * Some renaming to match the documents * Split class files * Clear out test-only code * Re-namespace * Added On method to rendered Elements * Allow for removal of platform suffix, convenience methods on specific platforms * Creating a gallery page for specifics * Add rudimentary Platform Specifics gallery; make CollapseStyle work on UWP; Add CollapsedPaneWidth specific property * Toolbar now working with both collapse styles * MDP now displaying Content title; toolbar routing around title * Add a gallery for the iOS NavigationPage stuff * Add Navigation Page as detail page to verify it works with new Toolbar options * Make titlebar/toolbar background colors consistent * ToolbarPlacement now working on NavigationPage * Toolbar Placement working for tabbed and nav pages * Fix bug where phone doesn't get default toolbar placement on start * [Core] Add PS WindowSoftInputModeAdjust [Core] Make Application extendable * Toolbar placement now working on Nav, Tabbed, and Master pages on desktop/phone Remove unnecessary style indirection Fix build errors * [A] Add PlatformConfigurationExtensions * SetSoftInputMode test page * [A] SetSoftInputMode Known issue: Status bar color does not work in AdjustResize mode * [Core] Add PS Blur * [iOS] Configure renderer for blur * Add test page * Move to blur VisualElement for broader support * Move test pages to gallery * Update docs * Use lazy initializer for PlatformConfigurationRegistry
2016-08-16[iOS] Change when we updated the XF INavigationPageController after popping ↵Rui Marinho2-0/+73
a page natively, Cleanup UITest references (#291)
2016-08-16Fix Entry/SearchBar color issues (#306)E.Z. Hart1-2/+2
* Fix disappearing Entry text on UWP Anniversary Edition Fix background color reversion bug in UWP Phone Move SearchBar styling on UWP to its own file Make foreground/background color changes on UWP SearchBar/Entry consistent Fix SearchBar color toggle bug on WP8 * Temporarily moving SDK target to previous version * Fix build error on OSX
2016-08-16[iOS] Fixed bug that made pull-to-refresh indicator always visible after 2+ ↵Samantha Houts2-0/+53
pulls (#307) * Add repro for Bugzilla 43214 * [iOS] Undo change to ListViewRenderer was attempting to prevent multiple unnecessary calls to SendRefreshing, but this caused unintended problems.
2016-08-11[Win] Set BindingContext for default cell (#289)Samantha Houts1-1/+10
* Revise 41205 test case to use binding * [Win] Set BindingContext for default cell * [Win] SetInheritedBindingContext for Cell
2016-08-03Enable WebView to render local HTML files on WinRT platforms (#277)E.Z. Hart2-0/+142
* Enable WebView to render local HTML files on WinRT platforms * Add test to demonstrate that the solution works even if <head> isn't in the HTML string
2016-08-03Fix bugzilla41209 (#216)Rui Marinho2-0/+31
* [Android] Add custom FormsSeekbar to handle invalid pressed states send by other views * [Controls] Fix sample , error only occurs with transparent background
2016-08-03[Android] Fix ListView contextual actions not closing in AppCompat's ↵Paul DiPietro3-0/+122
NavigationPage/TabbedPage (#272) * [Android] Fix ListView contextual actions not closing upon navigation in AppCompat The Platform type in the ListViewAdapter was being treated as the non-AppCompat type, and the NavAnimationInProgress value was not being set as necessary in the NavigationPageRenderer. * [Android] Add fix for TabbedPage swipes not closing contextual actions Similar fix where swiping to another tab with the context menu open would not close it. Relies on the prior commit.
2016-08-02[A, iOS] ListView Pull-To-Refresh indicator animates when navigating back to ↵Samantha Houts2-0/+58
it (#274) * Add repro for 33561 * [A] ListView refreshing on created shows indicator * [iOS] Refresh indicator restarts when appeared * Remove superfluous get
2016-08-02Add missing compiler directives to fix build errorE.Z. Hart1-1/+3
2016-08-02Dispose of child renderers in FrameRenderer (#265)E.Z. Hart2-0/+150
* Dispose of child renderers in FrameRenderer * Add missing null check
2016-08-02Change SourceChanged event on ImageSource to weak event to allow Images (#268)E.Z. Hart4-0/+180
referencing application-wide StaticResource ImageSources to be GCed
2016-08-02[Android] Add null check to prevent crashes when long clicking a text entry ↵Paul DiPietro2-0/+56
in ListView header/footer (#271) When a text entry control (Entry, Editor, SearchBar, etc.) was being used in the header or footer of a ListView on Android, a long click/press would cause a crash. This was occurring in the HandleContextMode method because it expected to be a cell. Adding a null check and breaking out of the method if the value from GetCellForPosition is null prevents this crash from occurring.
2016-07-18Prevent FormsAppCompatActivity from loading fragments we don't use on ↵E.Z. Hart2-0/+40
restart (#246) * Prevent FormsAppCompatActivity from loading fragments we don't use on restart * Adding issues lost in merge
2016-07-18Windows image loader error handling (#260)E.Z. Hart3-0/+114
* Repros for various image issues * Log image loading errors * Better repro instructions and user interface * Image loading tests now running on WinRT/UWP phone/tablet/desktop * Move FailImageSource into shared project * Move FailImageSource into shared project * Update docs
2016-07-18Ensure BindingContext is properly passed to CreateDefault in UWP ListView (#259)Jason Smith2-0/+39
2016-07-13[Android] Handle creating a default GroupHeader if no GroupHeaderTemplate ↵Rui Marinho2-0/+89
is provided (#248)
2016-07-12[Android] TimePicker unfocuses on cancel (#238)Paul DiPietro2-0/+62
Related to the prior fix of the DatePicker not unfocusing on the cancel button being pressed, the TimePicker was not unfocusing, as well. A similar fix has been applied.
2016-07-01[All] Crash fixes for ListViews (#243)Samantha Houts2-0/+122
* [Controls] Add repro for 42277 * [Android] No crash if GroupHeaderTemplate=null * [Android] Fix DataTemplateSelector crash * [Core] Expose ListProxy on TIL * [iOS] Fix DataTemplateSelector crash * [Win] Fix DataTemplateSelector crash * [Docs] Update docs * [Core] Implement ListProxy explicitly Allows ListProxy property to stay internal. * [Controls] Revert unnecessary change to shproj
2016-06-30[iOS] Fix regression 2.3.1-pre1 UnevenRows (#242)Rui Marinho2-0/+244
* [Controls] Add test case for 39486 * [iOS] Fix math refactor error on calculating height
2016-06-27[Android] Memory leak when MasterDetailPage Detail set to NavigationPage (#239)E.Z. Hart2-0/+141
* Create repro * Remove unnecessary cast * Add null checks on weak references in PageContainer * Remove master/detail fragments from manager when switching master/detail pages Separate renderer ViewGroup removal from renderer disposal in FragmentContainer Separate PageContainer disposal from renderer disposal in FragmentContainer Remove Drawer Listener for NavigationPageRenderer in Dispose * Fix missing spaces; Add explicit SPACE_BEFORE_IF_PARENTHESES settings to DotSettings file * Remove javascript rules * Remove usage of .ForEach()
2016-06-24[UITest] Update to 1.3.8, remove old projects (#240)Rui Marinho3-115/+0
* [UITests] Update to Xamarin UItest 1.3.8 * Remove legacy UITest projects * Remove issue that uses reference to controls * Update Xamarin.Forms.Core.iOS.UITests.csproj * Update Xamarin.Forms.Core.Android.UITests.csproj
2016-06-18[Android] Make sure to add a parent to the new group header cell (#228)Rui Marinho1-2/+7
2016-06-17Prep Cell & friends for removal of InternalsVisibleTo (#142)Samantha Houts1-96/+134
* Prep Cell & friends for removal of InternalsVisibleTo Includes: - Cell - EntryCell - ListView - MenuItem - TableView - ViewCell - Toolbar Moved extensions to Internal & removed TPH * Update docs * [Controls] Ignore Issue2411 on iOS <9 * [Controls] Formatting for Issue2411
2016-06-16[Android] DatePicker unfocuses on cancel (#204)Paul DiPietro2-0/+62
The DatePicker in Android would remain focused when being closed via the cancel button, and a subsequent re-focus via something such as button would not function as expected.
2016-06-16[UWP] MasterDetailControl will no longer null out the TCS before it is used. ↵Samantha Houts2-0/+36
(#227) * [UWP] Don't null the _commandBarTcs too soon * Add repro for 41842
2016-06-16[IOS] Update the current region of the MKMapView when visibility is changed ↵Rui Marinho2-0/+78
(#172)
2016-06-16Add repro of uncentered button image for Android (#176)E.Z. Hart2-15/+38
Fix vertical centering logic for button images in Android
2016-06-16[iOS] Call UpdateLeftBarButtonItem when page is removed (#209)Rui Marinho2-0/+95
2016-06-16[UWP] Escape key returns ActionSheet result (#208)Paul DiPietro2-0/+42
When awaiting a DisplayActionSheet in UWP, pressing the escape key with the ActionSheet open would dismiss the dialog but not return a result.
2016-06-16Prep Page for removal of InternalsVisibleTo (#150)E.Z. Hart1-1/+1
2016-06-09[Android] Always create a new cell for GroupHeader when using Recycling (#206)Rui Marinho2-0/+232
* [Android] Always create a new cell for GroupHeader when using RecycleElement * [iOS] Fix uitest iOS * [Android] Fix test on android
2016-06-08[Win 8.1] Initial ListView selection not shown (#174)Paul DiPietro2-0/+37
On Windows 8.1, when initially setting a ListView's SelectedItem, the item in question would not have any visual indication that it was selected when first showing (a background color for the cell). Subsequent selections would work as expected.
2016-06-08Remove hard-coded image sizes for button images (#202)E.Z. Hart1-9/+9
2016-06-02Disable Tabbed test for iOS (#203)E.Z. Hart1-3/+2
2016-05-27[Android] UpdateToolbar when page is added before on non AppCompact (#195)Rui Marinho2-0/+113
2016-05-26[8.1/UWP] Fix PopToRootAsync functioning incorrectly (#185)Paul DiPietro2-0/+56
When using PopToRootAsync on 8.1/UWP, the stack was being cleared but the actual page was not being set due to a missing event handler on the NavigationPageRenderer.
2016-05-24Turn off iOS version of 40333 UI test (broken for unrelated reasons) (#177)E.Z. Hart1-2/+7
2016-05-11Make RunningApp.Screenshot do nothing unless SCREENSHOTS symbol defined (#169)E.Z. Hart21-262/+655
* Make RunningApp.Screenshot do nothing unless SCREENSHOTS symbol is defined * Replace IApp casts with conditional compilation directives * Fix warning * Remove EnableLocalScreenshots * Add Ignore attributes to keep tests from "failing" in Test Cloud
2016-05-10[Android] Isolate fragment management for children of MasterDetailPage (#136)E.Z. Hart2-0/+226
* Isolate fragment management for children of MasterDetailPage in AppCompat If a MasterDetailPage hosts NavigationPages or TabbedPages in either the Master or Detail sections, wrap those pages in their own Fragment (and ChildFragmentManager) to isolate their Fragment management operations and avoid recursive entry into the executePendingTransactions method Also fix a disposal bug in the custom MDP renderer in Control Gallery * Remove MDP Split setting that breaks test on iPad
2016-05-02Prep VisualElement (and descendants) for removal of InternalsVisibleTo (#141)E.Z. Hart1-1/+1
2016-04-26Carousel clean (#135)Jason Smith3-483/+0
CarouselView moving to preview repo