Beispiel #1
0
 private async void Init()
 {
     sjcGoldRate = ConvertXmlToObject(await GetData());
     adapter     = new CityAdapter(sjcGoldRate);
     rvCities.SetLayoutManager(new LinearLayoutManager(this));
     rvCities.SetAdapter(adapter);
     tvTitle.Text       = sjcGoldRate.Title;
     tvUrl.Text         = sjcGoldRate.Url;
     tvUpdatedTime.Text = sjcGoldRate.CityList.UpdatedTime;
     tvUnit.Text        = sjcGoldRate.CityList.Unit;
 }
Beispiel #2
0
 public CityAdapter(SjcGoldRate sjcGoldRate)
 {
     this.sjcGoldRate = sjcGoldRate;
 }