Closed AshaneSilva closed 8 years ago
Which version of XForms please?
2.3.2.127
Question, did you update to latest Xamarin.Android? Version 7?
Because i cannot reproduce this.
Xamarin.Android 7.0.0.18
Thats the problem. Xamarin.Android 7 has a confirmed issue. Please update to latest one and test or, you will have to downgrade to version 6.
I am updating to latest one and i will do some test. What i know is that latest Xamarin update has introduced lot of bugs.
Ok ill try the above solution and update. What about CVButton not showing on IOS
All custom controls will be deprecated in upcoming release except for CVLabel, so instead you use the standard control specifying the HeighRequest with OnPlatform:
<Button Text="Remove this page" Clicked="Handle_Clicked">
<Button.HeightRequest>
<OnPlatform x:TypeArguments="x:Double"
Android="48"
iOS="44"
WinPhone="32"/>
</Button.HeightRequest>
</Button>
Or by code like this:
Device.OnPlatform(
iOS: () => myButton.HeightRequest = 44,
Android: () => myButton.HeightRequest = 48,
WinPhone: ()=> myButton.HeightRequest = 32
);
Let me know if works for you.
XForms (2.3.2.127) and Xamarin.Android (7.0.1.2). I also installed SDK 24 with build tools 24.
I uninstalled Xamarin e reinstalled the Cycle 7 stable version and it's all working now! (Including another bug which was crashing my app using the MediaPlugin when opening the camera on some devices). Thanks!
Thank you for the support
Device.OnPlatform( iOS: () => myButton.HeightRequest = 44, Android: () => myButton.HeightRequest = 48, WinPhone: ()=> myButton.HeightRequest = 32 );
solution worked. But buttons and labels are not appearing on list view. Do I need to uninstall xamarin completely? (Including xamarine.android , Xamarin.iOS, Xamarin.Mono)
If my work is helping you, please help me back: https://xamarinhq.wufoo.com/forms/nominate-a-xamarin-mvp/
This is what i have done that is community visible:
I had the same problem, but it was due to some proxy configurations made in the network I'm working at.
I have no idea though why it's allowing the iOS simulator and not the Android emulator to load online images.
Hi! We're having the same problem. The CarouselView is working great with iOS, but when we're trying to run it on Android it doesn't show any data. We're using Android Mono 8.
Are you planning to work to fix this error or do you recommend us to use another control?
Carousel View works fine on IOS but not appearing on android. I called
CarouselViewRenderer.Init();
method on my droid project afterForms.Init(this, bundle);
functions. CVButton is not visible on IOS It doesn't throw any Exceptions for above issues