Developing Xamarin Android Native Applications

★★★★★
★★★★
★★★
★★

February 23, 2015 by Ankit Asthana // 11 Comments
 

Xamarin has quickly become a popular way for creating cross-platform mobile applications promoting true code-reuse while allowing developers to create native* (native here means natural to the platform) user interfaces, providing them access to full spectrum of functionality exposed by the underlying platform/device and guaranteeing native* performance by allowing applications to leverage platform specific hardware acceleration. To add on, Xamarin integrates fully into Visual Studio and allows development of iOS, Android and Windows applications alike.

So what does this mean for our true native (C/C++) developers? Well if you take a look at Xamarin’s current approach for the android platform, it allows for leveraging android native (C/C++) libraries when building end-end Xamarin Android applications.

This approach currently however involves mucking around with the Xamarin Android project files in Visual Studio and adding the Item-Group pointing to the prebuilt dynamic shared library mentioned here in the Xamarin Android guides. Typically this native dynamic shared library is developed in another IDE (commonly, Eclipse), which adds further complexity given developers now have to worry about using two IDE’s and absorbing the fun that comes from the added complexity to edit, build and debug their application specially when working in the native (C/C++) library layer.

With Visual Studio 2015 CTP 6, this is no longer the case and developers can now create even this native (C/C++) library in Visual Studio, we (the C++ cross-platform mobile team) have been working with Xamarin in order to provide a smooth experience when developing Xamarin Android Native applications. This blog highlights a few of the enablement made available with Visual Studio 2015 CTP 6 and while all the work has not been finished yet, we are excited for you try it out and provide us feedback.

Getting Started

As a pre-requisite for being able to follow this blog, developers need to installVisual Studio 2015 CTP6 with Visual C++ cross-platform mobile bits and Xamarin optional packages. Once these bits have been installed you have everything you need to start developing Xamarin Android Native applications entirely in Visual Studio. Let us start with creating a Xamarin Android Project. For purposes of this blog let’s choose the simplest of Xamarin Android templates ‘Blank App (Android)’ from the File->New project menu and create a new project called ‘XamarinNativeExample’.

Next to the existing solution let’s add a dynamic shared library project from the ‘ Visual C++ – Cross-Platform node ’ and call it ‘NativeLibrary’.

Once we are done, our solution should have two projects (a Xamarin Android project and a C++ Dynamic Shared Library project) in solution explorer.

Referencing Android Native libraries from a Xamarin Android project

As mentioned in the abstract of this blog traditionally developers leveraging native android binaries would have to go build them in other IDE’s and then to leverage these pre-built android native binaries within a Xamarin Android project they would have to muck around with the Xamarin Android project. With the work we have done referencing the native binary is as simple as adding a project reference between the ‘XamarinNativeExample’ and the ‘NativeLibrary’ projects. The process is illustrated in the images below:

Once the reference has been added, under the references section for the ‘XamarinNativeExample’ project the ‘NativeLibrary’ entry should be found. One would notice that this reference is currently not resolved, this is a known issue and even though the reference doesn’t resolve at design time the application package file (.apk) that is built would contain the native library.

Next let us go ahead and add some code in our native library and invoke it from our Xamarin Android project. In the ‘NativeLibrary.cpp’ source file within the ‘NativeLibrary’ project, add the following function. This function will be invoked every time the button defined in our Xamarin Android project is clicked.

int clickCount = 1;

int
getClickCount() {


   return
clickCount++;

}

To call this function from the Xamarin Android
project ‘XamarinNativeExample’, add
the following code in ‘MainActivity.cs’ file.


[DllImport(“libNativeLibrary.so“)]


public extern static int
getClickCount(); 

This Dllimport attribute will load the android
native library at application runtime. For using this attribute the ‘using
System.Runtime.InteropServices;’ namespace will also be required in your source.
Next let us modify the existing source line in the ‘OnCreate’ function. OnCreate
method is the first method to be called when the activity is created. This
modification in the OnCreate function will allow us to call the ‘getClickCount’
function from the native library whenever the user clicks the button.


button.Click +=
delegate
{ button.Text = string.Format(“
{0}
clicks!
“, getClickCount()); };

At this point we are almost done but before we go
ahead and build our solution and test out our new Xamarin Android Native
Application, the active solution platform needs to be setup appropriately (ARM
or x86 depending upon the choice of your debug target) as shown in the figure
below.

Lastly let us make sure that we have named our
‘NativeLibrary’ correctly by viewing the ‘Target Name’ property in the
NativeLibrary project property pages.

At this point we are all set to go ahead and build/deploy our application to
an Android device or emulator. In case you had any issues following this
blog, the solution being presented in this blog can be found here.

Debugging
an Android Native Library in a Xamarin Android Application

In addition to being able to consume and build a
native android library easily in a Xamarin Android application. The Visual
studio experience will also allow developers to easily debug their native
android library code being consumed within the Xamarin Android application.
To demonstrate this, continuing with our example bring up the property pages for
the ‘XamarinNativeExample’ project
and choose the ‘Native’ debugger option in the ‘Android Options’ menu as shown
in the figure below.

Next let us bring up the ‘NativeLibrary.cpp’
source and set a breakpoint in our ‘getClickCount()’ function and start
debugging (F5). Once the application starts up, on every button click the
break-point we set should be hit.

While this is a trivial example, all other debug
features such as expression evaluation, watch window, auto window work with this
experience as well.

Wrap
Up

This blog should provide you insight into the work
that the Visual Studio team has done in partnership with Xamarin to enable a
smooth experience when building Xamarin Android Native applications. We would
love you folks to try this experience out and provide your feedback.
Additionally If you would like us to talk about a specific topic on our blogs
please let us know.  As a reminder the goal with this CTP release is for us
to collect feedback and learn from you. We are considering future support for
other platforms too and your feedback is critical in shaping the direction of
our product.

Sharing feedback is easy! Make feature suggestions
on UserVoice,
log bugs you find on our Connect site
and send us
a smile or frown
 from inside the IDE. You can also leave comments
below. In addition to this if you are
looking to have a directed conversation with our product
team on this topic, please reach out to us through email (aasthan@microsoft.com). We
would love to know more and connect with you. 

XamarinNativeExample.zip



Download Visual Studio
                   

visual studio 2017 创建 android 本地共享库(.so) 并从 C# android 项目中调用的更多相关文章

  1. Visual Studio 2017创建XAML文件

    Visual Studio 2017创建XAML文件   在Visual Stuido 2015中,在已经创建好的项目中添加XAML文件,只要右击项目,单击“添加”|“新建项”命令,然后从“添加新项” ...

  2. 如何使用visual studio 2017创建C语言项目

    使用visual studio 2017创建一个C语言项目,步骤如下: (1)打开Visual Studio 2017环境后出现欢迎界面,如图1所示. 图1  Visual Studio 2017欢迎 ...

  3. Visual Studio 2017 创建Winfrom工程

    1.打开Visual Studio 2017,出现界面点击-创建新项目 2.选择-Window桌面,选择windows 窗体应用(.NET Framework) 3.完成窗体程序创建,可在左边工具栏里 ...

  4. Visual Studio 2017创建.net standard类库编译出错原因

    正式版上个月已经Release了,从那时到现在经常会收到更新提示,估计问题还不少吧!其中最吸引我的当然是.net standard与.net core. 刚好最近接触.net standard项目,新 ...

  5. Visual Studio 2017 + Python3.6安装scipy库

    Windows10下安装scipy很麻烦,直接在命令行下使用pip install scipy无法安装,但可以借助VS2017的集成环境来安装. (1)首先在Visual Studio Install ...

  6. Visual Studio 2017 离线安装方式

    Visual Studio, 特别是Visual Studio 2017 通常是一个在线安装程序,如果你在安装过程中失去连接,你可以遇到问题.但是,由于法律原因,微软没有提供完整的可下载的ISO镜像. ...

  7. 使用 Visual Studio 2017 部署 Azure 应用服务的 Web 应用

    本快速入门介绍了如何使用 Visual Studio 2017 创建并部署 Azure Web 应用.在本教程中完成的所有操作均符合1元试用条件. 本快速入门介绍了如何使用 Visual Studio ...

  8. 三、Android NDK编程预备之Java jni入门创建C/C++共享库

    转自: http://www.eoeandroid.com/thread-264971-1-1.html 应网友回复,答应在两天前要出一篇创建C/C++共享库的,但由于清明节假期,跟朋友出去游玩,丢手 ...

  9. Visual Studio 2017中使用Libman管理客户端库

    什么是Libman 微软在Visual Studio 2017 15.8版本中内嵌了一个新的工具Library Manager. Library Manager(简称Libman)是一个客户端库管理工 ...

随机推荐

  1. C++之 类型定义语句--typedef

    typedef的作用是给一个已经存在的数据类型起个别名. 使用的语法形式是:typedef   已有类型名  新类型名表;. 新类型名表中可以有多个标识符,它们之间用逗号分开,就是在一个typedef ...

  2. F2833x 调用DSP函数库实现复数的FFT的方法

    转载自:http://blog.csdn.net/aeecren/article/details/67644363:个人觉得写的很详细,值得一看 在数字信号处理中,FFT变换是经常使用到的,在DSP中 ...

  3. Hello vue.js的随笔记录

    数据双向绑定的script在组件定义位置后面才顶用. 使用它的话,引用js就好,比较简单. 声明一个vm对象,new Vue({}).这个构造里传一个对象,包含el:界面元素,data:数据,meth ...

  4. position三种属性的区别

    1.static(静态定位):默认值.没有定位,元素出现在正常的流中(忽略 top, bottom, left, right 或者 z-index 声明). 2.relative(相对定位):生成相对 ...

  5. python模块和包(模块、包、发布模块)

    模块和包 目标 模块 包 发布模块 01. 模块 1.1 模块的概念 模块是 Python 程序架构的一个核心概念 每一个以扩展名 py 结尾的 Python 源代码文件都是一个 模块 模块名 同样也 ...

  6. JDBC学习DayOne

    一.相关概念 1.JDBC的定义 JDBC(Java Data Base Connectivity,java数据库连接)是一种用于执行SQL语句的Java API,可以为多种关系数据库提供统一访问,它 ...

  7. selenium中的对文本进行全选,复制,粘贴,剪切和删除的操作

    # 键盘全选操作from selenium.webdriver.common.keys import Keysdriver.find_element_by_css_selector('#key-dem ...

  8. element ui 手动关闭$notify弹框

    1.需求: 当用户点击 “点击下载” 后,文件导出这个弹框主动消失. 2.解决方案: 如下图所示 (需要注意的是这里的关闭是 点击弹框任意处就会关闭,如果想实现我的需求需要判断一下即可)

  9. Oracle CONNECT by 简单用法

    Oracle查询层级的  一个表里 通过一个parentid连接 select * FROM A_MERIATILA start with id=520 CONNECT by prior id=PAR ...

  10. Activity简说

    Activity 四个状态 running 运行:前台显示,当前焦点 paused 暂停:上面被其他activity覆盖,有一部分可见 stopped 停止:被其他activity完全覆盖,不可见 d ...