Questions tagged [xamarin-binding]

96 questions
0
votes
1 answer

Xamarin Android Binding referencing Org.Apache.Xml.Security.Algorithms

I am trying to create a Xamarin Android binding library which is referencing org.apache.xml.security.transforms , Org.Apache.Xml.Security.Algorithms Which reference I have to add to make sure it is working fine? Sample errors 1>BINDINGSGENERATOR :…
Pooran
  • 1,640
  • 2
  • 18
  • 25
0
votes
0 answers

Xamarin Android Error inflating a custom widget from a java bound library

Currently I'm trying to get up and running Google VR's simple VrPanoramaView using Xamarin. I've used this project (Xamarin Components) to manually bind the Java libraries. Binding the project, and more specifically, the PanoWidget, resulted in the…
0
votes
1 answer

Xamarin Binding for an android sdk

I am creating a xamarin binding for an android SDK, and I get a few errors while I build the binding project. One of the error is: Error CS0234: The type or namespace name ITrustDefenderMobileStandardV2' does not exist in the…
Libin Joseph
  • 7,070
  • 5
  • 29
  • 52
-1
votes
1 answer

DataTemplate with data binding from two sources

I have a data template with an image which has Source property binding to the default source(the observable collection, it works fine). The issue is that I need its IsVisible property binding to other source(an object declared in my code behind) but…
Éder Rocha
  • 1,538
  • 11
  • 29
-1
votes
3 answers

Show JSON response through binding (Xamarin forms)

i showed json response now i want to it to show like in a proper format in the editor section. Below is my code: (i am trying this from past two days but i dont know how to show this in a proper format) Page 1 from where i passed the json…
-1
votes
2 answers

Xamarin rest api

Binding does not work in my code. what's wrong in this code? HttpClient client = new HttpClient(); var response = await client.GetAsync(string.Format("uri link")); string jsonstring = await response.Content.ReadAsStringAsync(); RootObject item =…
1 2 3 4 5 6
7