A wrap for this Github Project - Download the complete B4A project from here (the project is too big to upload to the forum). Attached is the B4A library files.
It returns the name, the dialling code, and the ISO code of the selected country
Have tested it on Kitkat and Lollipop and it is working on both.
Sample Code:
Take note of the B4A manifest file.
B4A Library:
CountryPicker
Author: Github: Mike Lau, Wrapped by: Johan Schoeman
Version: 1
It returns the name, the dialling code, and the ISO code of the selected country
Have tested it on Kitkat and Lollipop and it is working on both.
Sample Code:
B4X:
#Region Project Attributes
#ApplicationLabel: b4aCountryPicker
#VersionCode: 1
#VersionName:
'SupportedOrientations possible values: unspecified, landscape or portrait.
#SupportedOrientations: portrait
#CanInstallToExternalStorage: False
#End Region
#AdditionalRes: ..\resource
#AdditionalRes: ..\DemoRes
#AdditionalRes: ..\LibRes
'#AdditionalRes: C:\Users\----------2\Documents\Basic 4 Android\JOHAN APPS\JHS LIBS\resource\b4a_appcompat, de.amberhome.objects.appcompat
'#AdditionalRes: C:\ANDRIOD_SDK_TOOLS\extras\android\support\v7\appcompat\res, android.support.v7.appcompat
'#AdditionalRes: C:\ANDRIOD_SDK_TOOLS\extras\google\google-play-services\libproject\google-play-services_lib\res, com.google.android.gms
'#AdditionalRes: C:\ANDRIOD_SDK_TOOLS\extras\android\support\design\res, android.support.design
'#ExcludeClasses: .games, .drive, .ads, .fitness, .wearable, .measurement, .cast, .auth, .nearby
'#ExcludeClasses: .tagmanager, .analytics, .wallet, .plus, .gcm, .maps, .panorama
'#Extends: android.support.v7.app.AppCompatActivity
#Region Activity Attributes
#FullScreen: False
#IncludeTitle: True
#End Region
Sub Process_Globals
'These global variables will be declared once when the application starts.
'These variables can be accessed from all modules.
End Sub
Sub Globals
'These global variables will be redeclared each time the activity is created.
'These variables can only be accessed from this module.
Private Button1 As Button
Dim cp As CountryPicker
Private Label1 As Label
End Sub
Sub Activity_Create(FirstTime As Boolean)
'Do not forget to load the layout file created with the visual designer. For example:
Activity.LoadLayout("main")
cp.Initialize("cp")
End Sub
Sub Activity_Resume
End Sub
Sub Activity_Pause (UserClosed As Boolean)
End Sub
Sub Button1_Click
cp.StartCountryPicker
End Sub
Sub cp_country_selected(country As String, dialingcode As String, isocode As String)
Log("Selected country = " & country)
Log("Dialing Code = +" & dialingcode)
Log("ISO Code = " & isocode)
Label1.Text = "Selected country = " & country & Chr(10) & "Dialing Code = +" & dialingcode & Chr(10) & "Iso Code = " & isocode
End Sub
Take note of the B4A manifest file.
B4A Library:
CountryPicker
Author: Github: Mike Lau, Wrapped by: Johan Schoeman
Version: 1
- CountryPicker
Events:- country_selected (country As String, dialingcode As String, isocode As String)
- Initialize (paramString As String)
- IsInitialized As Boolean
- StartCountryPicker
Attachments
Last edited: