Share My Creation World of Warcraft Realm Server Check

View attachment 15446Hi guys after playing with the JSON and HTTP utils (Thanks Erel for all your help :icon_clap:), i have created this little simple app, and thought i would post it on here, i have uploaded to Google Play (take a little while to appear), not sure if it will get any downloads :)

any thoughts please let me know

Regards

Stu

Android Play Store Link: WoW Realm Check App

Update - you can now click on a selected item to view more detailed information.(second Screen shot).
 

Attachments

  • screen shot1.jpg
    screen shot1.jpg
    71.5 KB · Views: 5,345
  • screen2.jpg
    screen2.jpg
    68.7 KB · Views: 574
  • WOWRealmCheck v105.zip
    297.2 KB · Views: 975
Last edited:

Stulish

Active Member
Licensed User
Longtime User
Any thoughts and feed back would be welcome :)
 

Stulish

Active Member
Licensed User
Longtime User
Guys,

I am trying to add a menu item to this app to refresh the data the Activity_Create sub i have added the Activity.AddMenuItem("Refresh Data","RefreshData") and created a Click sub, but the menu isn't populated when i run the app. i have never had a problem adding menu's before so do not understand what the problem is. The rest of the code is the same as what i previously uploaded, so i didn't re-upload.

B4X:
Sub Activity_Create(FirstTime As Boolean)
   'Do not forget to load the layout file created with the visual designer. For example:
   'Activity.LoadLayout("Layout1")
   Activity.LoadLayout("main")
   Panel_info.LoadLayout("realminfo")
   Timer1.Initialize("Timer1",250)
   Timer1.Enabled = True 
   RealmData.Initialize 
   Realms.Initialize 
   EUrealms.Initialize 
   USrealms.Initialize 
   savedRealms.Initialize 
   Activity.AddMenuItem("Refresh Data","RefreshData")
   Get_Realm_Data
   RegionSpinner.Add ("Europe")
   RegionSpinner.Add ("United States")
   RegionSpinner.Textsize = AddRealmButton.TextSize 
   Dim lab1 As Label 
   lab1 = RealmInfo_Listview.TwoLinesLayout.SecondLabel 
   lab1.TextColor = Colors.Black 
End Sub

Any help is appreciated

Regards

Stu
 

Stulish

Active Member
Licensed User
Longtime User
Thanks Erel,

Sorry i had a brain fart, you must get fed up with people asking the same questions.

Cheers for your help

Stu
 
Top