summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2016-11-15Creating category constants for UI test categories (#487)E.Z. Hart61-69/+232
* Creating a category just for core UI tests * Grouping all of the core UI tests * Adjusting categories so we can run in smaller batches * Adding some of the Issues tests to categories * Fix shared project nonsense * Fix non-existent test category * Testing global category for Issues
2016-11-15[iOS] Use separate UIWindow for UIAlertController (#481)Paul DiPietro3-4/+91
* [iOS] Use separate UIWindow for UIAlertController * Add similar behavior for DisplayActionSheet; consolidate behavior into PresentAlert method
2016-11-15[Android] Show keyboard on app resume if control has focus (#480)adrianknight893-6/+132
* show keyboard on resume if control has focus * refactor * changed property name
2016-11-15[WinRT] Setting ActivityIdicator color works now (#479)Jimmy Garrido1-1/+19
2016-11-15Attempting to fix possible race conditions in Automation ID tests (#533)E.Z. Hart1-1/+2
2016-11-15Making text longer so the test works even if the device ends up in landscape ↵E.Z. Hart1-1/+1
mode (#532)
2016-11-14[Internal] Change test template to use Bugzilla (#501)adrianknight891-2/+2
* added a new template for bugzilla * Revert "added a new template for bugzilla" This reverts commit e141d845849244e484143119b06c5247c28b2423. * change template to use bugzilla
2016-11-14Marked all I___Controller interfaces as for internal use by renderers in ↵Mike Norman20-84/+83
docs. (#522)
2016-11-09Applinks API docs, and a link fix in BindableProperty.xml. (#519)Mike Norman5-55/+76
2016-11-09Update badge URLs to point at current build lanes (#516)E.Z. Hart1-5/+5
2016-11-09Removing PCLStorage references until it's determined that we need themE.Z. Hart2-9/+0
2016-11-09Excising the 43569 UI Test until the PCLStorage issue can be dealt withE.Z. Hart2-92/+1
2016-11-08[UWP] Fix Transparent Default Button (#468)Jimmy Garrido1-1/+4
2016-11-08fix identationStephane Delcroix1-7/+7
2016-11-08Add extensibility point to load tab icons from another source (using the ↵softlion1-2/+7
tab.SetIcon(drawable) overload) on Android
2016-11-08[Android] Always set a non-null Device.Info (#504)Alan McGovern1-8/+13
When we run under the context of layoutlib the `Context` object that is created will not implement IDeviceInfoProvider. All this means is that we will not get change notifications when the orientation changes, but that's ok! This won't happen anyway. If we instantiate the Device.Info object then everywhere else in the code will be able to get access to the screen properties. Fixes https://bugzilla.xamarin.com/show_bug.cgi?id=44893
2016-11-03[Android] Allow path-based icons to be loaded as toolbar icons (#437)adrianknight8910-6/+133
* Created a bitmap method to check for resource as well as path * Update platform and navigationrenderer to get images from two locations * CellAdapter could use path-based icon finding * sample app to test toolbaritem icons
2016-11-03Update ContextExtensions.cs (#502)Alan McGovern2-5/+9
* [Android] Handle missing android services gracefully When rendering inside layoutlib, like the Android Designer does, we will not have access to the normal android services. * [Android] Handle null InputManagers here too Just in case this codepath is hit at some point during the android designer's rendering codepath.
2016-11-02Fixed tab not updating when page title is changed (#327)Jimmy Garrido1-5/+33
* Fixed tab not updating when page title is changed * Remove OnPagePropertyChanged Event From Pages When Disposing * Meet coding standards and remove unnecessary parameters
2016-10-31Attempt to get UI test for 44166 working on iOS (#485)E.Z. Hart2-14/+17
* Attempt to get UI test for 44166 working on iOS * Another attempt to get this running consistently on iOS * Adding screenshots so I can figure out why this doesn't work when XTC runs it * Maybe there's confusion between the back buttons? * Hey, it works now! Removing the debugging stuff. * Clean up extra build constants
2016-10-31[Android] Forward ScrollView touch events to custom renderers (#472)adrianknight892-1/+16
* Forward touch events * remove double cast
2016-10-30On<t> summaries. (#492)Mike Norman28-28/+28
2016-10-26[Win] Toolbar placement works with initial value (#488)Samantha Houts4-3/+22
* Defer UpdateToolbarPlacement until CommandBar is in the control hierarchy * Cleanup
2016-10-26[iOS] Add check for UIGestureRecognizerState.Cancelled when closing context ↵Paul DiPietro3-1/+48
action (#442)
2016-10-25ScrollView should account for Content margin (#392)adrianknight894-2/+87
* ScrollView should account for Content margin * Unit tests for content margin
2016-10-24[Android] Internal keyboard hide/show should handle null views (#418)adrianknight891-3/+7
* Check for null input view before trying to hide keyboard * Adding null check to ShowKeyboard * change to throw an exception
2016-10-20[Android] SoftInputMode works with initial value (#465)Samantha Houts2-4/+4
2016-10-20Make Editor focused background color behavior consistent with Entry on ↵E.Z. Hart4-5/+71
Windows (#456)
2016-10-20[iOS] Add Platform Specific feature for setting AdjustsFontSizeToFitWidth on ↵Paul DiPietro8-1/+335
Entry (#429) * [iOS] Add Platform Specific feature for setting AdjustsFontSizeToFitWidth on Entry * Update docs
2016-10-20[Android] Add Platform Specific features for setting TabbedPage swipe paging ↵Paul DiPietro10-2/+603
and OffscreenPageLimit (#409) * [Android] Add Platform Specific feature for setting TabbedPage swipe paging * [Android] Add Platform Specific feature for OffscreenPageLimit * Update docs
2016-10-20Fix ProgressBar renderer (#439)adrianknight891-5/+7
2016-10-20[WinRT] Fix back button not showing if current page has no title (#438)Jimmy Garrido1-1/+1
2016-10-20[C] fix TranslateTo for easing going outside of (0,1) (#414)Stephane Delcroix1-1/+1
2016-10-20[iOS] Entry should correctly update Text when typing aid is used (#401)adrianknight891-0/+6
* Entry should be able to detect typing aid changes correctly * Added comment
2016-10-20Check for Actionbar at UpdateActionBar method. (#366)gleblebedev1-0/+4
2016-10-20Remove unnecessary string replace in Color.FromHex (#477)Philippe Leybaert1-1/+1
In Color.FromHex(), the ‘#’ character is stripped from the input string twice.
2016-10-19Fix UITest for b#42832 (#471)Jimmy Garrido1-2/+1
2016-10-17[Android] Fix NRE When Scrolling ListView and Item With Context Actions Is ↵Jimmy Garrido3-7/+69
Selected (#310) * Fix NRE When Item With Context Actions Selected * Add UITest
2016-10-15[A] Prevent crash in event when renderer is null in Layout call. (#457)Jason Smith1-2/+2
Reproduction unknown, issue deduced from stack traces from HomeAway.
2016-10-15[Win] Update certs (#460)Rui Marinho7-34/+14
2016-10-14[A] Better fix for BZ44129 (#453)Jason Smith1-2/+4
2016-10-12[Android App Compat] Can opt out of sending Appearing/Disappearing events on ↵Samantha Houts8-8/+455
Resume/Pause (#450) * Add reproduction for 40722 * [Core] Add Android AppCompat PS props ... ... to disable sending Disappearing/Appearing events on Pause/Resume respectively. * [Android] Allow user to disable Pause/Resume evts * Revise repro to use new PS option * Update docs
2016-10-12[A]Don't crash when emptying/populating TabbedPage.ItemsSource (#427)Jason Smith3-1/+59
2016-10-12[Android] Fix possible NRE when detaching NavigationPageRenderer (#415)Rui Marinho1-3/+3
2016-10-12Modified type cast to appropriate type (#447)ckrempp911-2/+2
I changed the type cast from BitmapImage to BitmapSource because if you want to do image manipulation, in UWP, you use the WriteableBitmap class.
2016-10-12Fix MasterDetailPage/NavigationPage leaks on iPad (#426)E.Z. Hart3-40/+57
* Remove Master page property changed handler to eliminate leak * Fix memory leaks with MasterDetailPage and NavigationPage on iOS
2016-10-12[XamlG] Fully qualify method names (#417)Stephane Delcroix4-10/+49
2016-10-11Update docsSamantha Houts4-1346/+1343
2016-10-11[iOS] Tapping on ListView with two fingers should not crash (#379)adrianknight891-1/+3
* Tapping on ListView with two fingers should not crash * Revert "Tapping on ListView with two fingers should not crash" This reverts commit 0b0752f3cfdbb1c29678d75bd18c5a00e564d77b. * code without refactoring * moving up selector check
2016-10-11Add reproduction for 41153 (#428)Samantha Houts2-0/+100