Questions tagged [xamarin-binding]

96 questions
0
votes
1 answer
0
votes
1 answer

Cannot use nuget package within the project

Hi I have created a nuget package for my xamarin.iOS project. I have included the DLL which is generated from my Xamarin binding project. This is my .nuspec file
Randi
  • 639
  • 2
  • 6
  • 23
0
votes
1 answer

How to generate nuget package from Xamarin.iOS binding project?

I have created a Xamarin.iOS binding project by adding UnityFramework.framework as Native References. When I build this binding project it generstes a .dll file. Now I want to generate a Nuget package and for my actual project I need to add this…
Randi
  • 639
  • 2
  • 6
  • 23
0
votes
0 answers

How to stop (c) becoming copyright © in Xamarin.Forms?

I am binding string to label's text property. and string is containing (C). but when it's loading on Label it's converted to copyright symbol ©. Code Snippets: Note:…
0
votes
2 answers

How do I bind a value to a referenced custom content page (XAML)

I created a custom ContentPage to show a circle avatar with initials. When I pass a value via binding it comes up as null, I debugged to check this. Can someone help me please? Thanks. HomePage.xaml
steve
  • 797
  • 1
  • 9
  • 27
0
votes
0 answers

Templates or user controls? Which?

I have several classes derived from a base class. VideoAsset, ImageAsset, etc. Lets say each has a different sort of header xaml. I have two screens, one with a collectionview (that displays different xaml based on asset type) and one that shows…
ThirdPrize
  • 194
  • 1
  • 13
0
votes
0 answers

Given component multidex.MultiDexApplication doesn't implement interface dagger.hilt.internal

I'm creating Xamarin DLL from "Kotlin AAR" or "Kotlin Libraries". AAR to DLL Converted Successfully. There are dagger and hilt libraries in Kotlin AAR. dagger-2.37.jar hilt-core-2.37.jar hilt-android-2.37.aar dagger-lint-aar-2.37.aar During Testing…
0
votes
1 answer

Nested list UI not updating after parent list property changes - Xamarin.Forms

Although this question seems to be asked for multiple times, I can't seem to find the right solution, or put the pieces together, to solve the issue. I have a CollectionView with inside the collection view a Bindable.Stacklayout. The nested…
Nicolas
  • 2,277
  • 5
  • 36
  • 82
0
votes
2 answers

Xamarin Android binding does not implement interface issue

I've a java binding for android which somewhat works bar the new feature I'm trying to integrate with. Only now I have realised that the intended callback is not happening. Here are the classes (decompiled to java) in question: At the top level we…
envyM6
  • 1,099
  • 3
  • 14
  • 35
0
votes
2 answers

Can't create Bindable Property for custom ContentView

I have created a ContentView with a single Label (I plan to add more later). PageHeadingView.xaml
0
votes
1 answer

Xamarin binding C library params not working (variadic functions)

I need to use a C library and I got it to work on the emulator easily, but on an arm64 device only with some strange trickery. The issue is that C functions with … (variadic functions) do not pass values correctly from C# to the library. This is the…
0
votes
0 answers

Xamarin IOS binding

I am creating binding with Pod , After running Sharpie command i frequently get error regarding , Header not found in the File. I have checked the file after opening but header was already there. Let me know if anyone face the same issue. Error…
0
votes
2 answers

Xamarin.Forms Picker problem with static ItemsSource

I have a static collection Networks: public class NetworkSettings { private static List _networks; public static IList Networks { get { if (_networks == null) { …
DefenestrationDay
  • 3,712
  • 2
  • 33
  • 61
0
votes
1 answer

Is there a way to update bounded data when I swipe back [PopAsync() ]

To provide some context, I'm writing a Xamarin.Forms application and utilizing data binding with INotifyPropertyChanged. Currently I have an inventory counter displayed on a button. The text on this button displays the bounded "Count" variable (e.g…
0
votes
0 answers

Invalid parameter type android.content.SharedPreference in Xamarin Android binding

We are trying to create a binding library for Android aar. we are not able to see binder class in output dll. we are getting following warning which is invalidating the class. BINDINGSGENERATOR: Warning BG8801: Invalid parameter type…