Whilst not a new language, Go has gained a lot of interest over the past two years and the number of bigger name projects utilizing the language is growing rapidly. I wrote an introductory article on the language for SitePoint and came across mentions of mobile support, so thought I’d take a look at the possibilities.  I was most excited to see what Go support on Android was like as they are both Google technologies and there have been rumblings of support from developers for a language to replace Java.  Getting Started  You will need GoLang 1.5+ installed.  Next install the GoMobile tool which compiles and runs pre-existing Go applications for Android and iOS:
go get golang.org/x/mobile/cmd/gomobilegomobile init
  We will be referring to the example applications shipped with the gomobile package in GoLangInstalldir/src/golang.org/x/mobile/example/. If you don’t have them installed, fetch them with this command:
go get -d golang.org/x/mobile/example/basic

Build and Install a Native Go Application

  For many application use cases, compiling Go to a native application and ignoring platform libraries and interfaces may be fine. If so it’s simple to compile your existing Go code, with a subset of functionality available. This includes:

  • App control and configuration
  • OpenGL ES 2 bindings
  • Asset management
  • Event management
  • Experimental packages include OpenAL bindings,audio, font, sprite and motion sensors
  •   We will be using one of the pre-existing gomobile examples to step through the process, but these can be replaced with your own project files.

    Android
    Build an Android APK

    gomobile build -target=android golang.org/x/mobile/example/basic

    Deploy to a Device

    gomobile install golang.org/x/mobile/example/basic

    iOS
    Build an iOS IPA

    gomobile build -target=ios golang.org/x/mobile/example/basic

    Deploy to a device

      There is no equivalent command for deployment on iOS as on Android, so after creating the app above you will have to follow your own personal favorite way of copying it to a device or emulator, such as the ios-deploy tool.  For something a bit more exciting, also try the steps above with the golang.org/x/mobile/example/audio example.  Let’s take a look inside the audio example (I wont reproduce the complete code here) and you don’t need to be overly familiar with GoLang (I’m not), this is more about looking at what is possible.  Firstly you see a set of import statements:
    import (...    "golang.org/x/mobile/app"    "golang.org/x/mobile/asset"...)
      If you dig around the folders and files that are imported in GoLangInstalldir/src/golang.org/x/mobile/* you will notice the various Java and Objective-C files that are compiled with your code.  Digging further you will see references to some of the classes imported and used in the code, such as app and glctx.

    Going Native

      We can code in Go and build a compact and optimized native app, but it’s not very ‘native-like’ right now, as all the required support libraries are only available in Java and Objective-C / Swift. How can we improve this experience?  The Go Mobile team have created another option, using go packages (your applications) inside a native application. Perfect for sharing some common Go code and binding to native code. It’s easy to get started, but may be complex to maintain in the long run.

    Android

      If you’re using Android Studio, import the reference project from GoLangInstalldir/src/golang.org/x/mobile/example/bind/android and open the build.grade (Module: hello) file to update your GOPATH and GO paths, here are mine (I installed GoLang with Homebrew):

      Sync Gradle and the application is then deployable to an emulator or device.

    Note: Currently this is only supported on ARM based devices and emulators.
    Let’s look at the Java and Go code:
    MainActivity.java

    package org.golang.example.bind;import android.app.Activity;import android.os.Bundle;import android.widget.TextView;import go.hello.Hello;public class MainActivity extends Activity {    private TextView mTextView;    @Override    protected void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.activity_main);        mTextView = (TextView) findViewById(R.id.mytextview);        // Call Go function.        String greetings = Hello.Greetings("Android and Gopher");        mTextView.setText(greetings);    }}

    src/golang.org/x/mobile/example/bind/hello/hello.go

    package helloimport "fmt"func Greetings(name string) string {    return fmt.Sprintf("Hello, %s!", name)}
      The go file is imported with import go.hello.Hello and the Greetings function within it accessible in the Java file via Hello.Greetings. With not too many extra steps, bindings between go functions and native UI elements are possible.

    iOS

      Binding an iOS application to Go requires different steps. First execute the following commands:
    cd GoLang_Install_dir/src/golang.org/x/mobile/example/bindgomobile bind -target=ios golang.org/x/mobile/example/bind/hello
      This will create a framework bundle called Hello.framework in the current folder that we can use in our project.  Open the sample iOS project found at GoLangInstalldir/src/golang.org/x/mobile/example/bind/ios/bind.xcodeproj in Xcode and drag Hello.framework into the project, checking “Copy items if needed”. This should result in the following folder structure:

      Build and run the application which, much like the Android app, calls Go methods into Objective-C code.  Let’s look at the code:
    #import "ViewController.h"#import "hello/Hello.h" // Gomobile bind generated header file in hello.framework@interface ViewController ()@end@implementation ViewController@synthesize textLabel;- (void)loadView {    [super loadView];    textLabel.text = GoHelloGreetings(@"iOS and Gopher");}@end
      #import "hello/Hello.h" imports the framework file generated earlier and textLabel.text = GoHelloGreetings(@"iOS and Gopher"); calls the function it exposes to set a label variable.  It’s possible to use the same auto-generated Objective-C framework file in a Swift based project and then use something like:
    let msg = Hello.GoHelloGreetings("gopher")

    Is It worth It?

      Well, in short, probably not. If you’re already programming your applications in Go and you’re OK with non-native looking interfaces then there’s nothing stopping you, as you can see it’s easy to build and deploy native applications written in Go. If you’re willing to take the extra steps to follow the binding option then you can take things a lot further, but still within certain limitations.  If you’re not using Go, then it’s likely not worth considering as a mobile native programming option yet. But I still feel strongly that there is enough potential and interest to make it a possibility in the not-distant-future and would of course, love to hear your opinions below.

    转自:http://www.sitepoint.com/ios-and-android-programming-with-go/

    更多相关文章

    1. 代码中设置drawableleft
    2. android 3.0 隐藏 系统标题栏
    3. Android开发中activity切换动画的实现
    4. Android(安卓)学习 笔记_05. 文件下载
    5. Android中直播视频技术探究之—摄像头Camera视频源数据采集解析
    6. 技术博客汇总
    7. android 2.3 wifi (一)
    8. AndRoid Notification的清空和修改
    9. Android中的Chronometer

    随机推荐

    1. 如何退出Android应用程序
    2. Android中 广播发送 和 接受 的简单示例
    3. Android(安卓)浅析 ContentProvider (一)
    4. Android双击两次返回按钮退出程序
    5. Android(安卓)Bluetooth
    6. android gridview 去除四周间隙
    7. Android中Broadcast的Intent大全
    8. Android(安卓)handler异步更新
    9. Android中获取应用程序(包)的大小-----Pa
    10. Android(安卓)HttpgetRequester+onRespon