I have the pin view created, assigned an Id, and is present in resource.cs
The problem is that I am trying to reference the view in my settings activity so I can use the onDataEntered method to get the values, but my reference variable is always null. Even though using breakpoints tells me that the view I have referenced is not null.
`using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Android.App;
using Android.Content;
using Android.OS;
using Android.Runtime;
using Android.Views;
using Android.Widget;
using Android.Gms.Ads;
using Android.Preferences;
using Com.Goodiebag.Pinview;
using static Com.Goodiebag.Pinview.Pinview;
I have the pin view created, assigned an Id, and is present in resource.cs
The problem is that I am trying to reference the view in my settings activity so I can use the onDataEntered method to get the values, but my reference variable is always null. Even though using breakpoints tells me that the view I have referenced is not null.
`using System; using System.Collections.Generic; using System.Linq; using System.Text;
using Android.App; using Android.Content; using Android.OS; using Android.Runtime; using Android.Views; using Android.Widget; using Android.Gms.Ads; using Android.Preferences; using Com.Goodiebag.Pinview; using static Com.Goodiebag.Pinview.Pinview;
namespace JourneyAssistant { [Activity(Label = "Settings")] public class SettingsActivity : Activity, IPinViewEventListener { //Variable declarations AdView mAdView; ISharedPreferences preferences; ISharedPreferencesEditor editor; Switch hideAddress; Button saveBTN; EditText streetName; EditText area; EditText town; EditText county; EditText postcode; Pinview pinView; string pinViewPin; public string userPin; bool hideAddressStatus;
}`
Does anybody know whats going on please?