使用Android Studio与ArcGIS Android SDK的开发环境部署和HelloWorld

android studio(以下简称AS)是google推荐的android专用IDE,替代目前主流的eclipse,另外arcgis也把AS作为推荐的android IDE

本文不介绍android SDK的部署和AS的安装

以下网站应该是AS的官方中国官网,有很多AS相关基础教程和AS的下载(不用*下载了),强烈推荐

http://www.android-studio.org/

本文代码以arcgis android SDK中的arcgis-android-sdk-v10.2.4\samples\Maps\HelloWorld为基础

环境:Android SDK API 19,android studio 1.0,arcgis android SDK 10.2.4,小米4+MIUI v6


首先new一个project,一直next就行

使用Android Studio与ArcGIS Android SDK的开发环境部署和HelloWorld

新建project后,把这里切换到project

使用Android Studio与ArcGIS Android SDK的开发环境部署和HelloWorld


打开以下文件

使用Android Studio与ArcGIS Android SDK的开发环境部署和HelloWorld

把代码改为

 package jls.as7;

 import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem; import com.esri.android.map.MapView; public class MainActivity extends Activity {
MapView mMapView; @Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main); // After the content of this Activity is set, the map can be accessed programmatically from the layout.
mMapView = (MapView) findViewById(R.id.map);
} @Override
protected void onPause() {
super.onPause(); // Call MapView.pause to suspend map rendering while the activity is paused, which can save battery usage.
if (mMapView != null)
{
mMapView.pause();
}
} @Override
protected void onResume() {
super.onResume(); // Call MapView.unpause to resume map rendering when the activity returns to the foreground.
if (mMapView != null)
{
mMapView.unpause();
}
}
}

打开arcgis android SDK的压缩包,在libs目录下,找到如下几个jar包

使用Android Studio与ArcGIS Android SDK的开发环境部署和HelloWorld

复制到代码里如下目录

使用Android Studio与ArcGIS Android SDK的开发环境部署和HelloWorld


同样是arcgis SDK的libs目录下,把以下几个文件夹

使用Android Studio与ArcGIS Android SDK的开发环境部署和HelloWorld

复制到代码的如下目录(jniLibs目录默认不存在,要手动新建)

使用Android Studio与ArcGIS Android SDK的开发环境部署和HelloWorld


打开AndroidManifest.xml,在manifest节点下,添加如下内容

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />

<uses-feature
android:glEsVersion="0x00020000"
android:required="true" />

使用Android Studio与ArcGIS Android SDK的开发环境部署和HelloWorld

使用Android Studio与ArcGIS Android SDK的开发环境部署和HelloWorld


打开moudle的build.gradle,在android节点下添加如下代码

packagingOptions {
exclude 'META-INF/LGPL2.1'
exclude 'META-INF/LICENSE'
exclude 'META-INF/NOTICE'
}

使用Android Studio与ArcGIS Android SDK的开发环境部署和HelloWorld

使用Android Studio与ArcGIS Android SDK的开发环境部署和HelloWorld


到此配置完毕,插上手机,Run运行程序

使用Android Studio与ArcGIS Android SDK的开发环境部署和HelloWorld

使用Android Studio与ArcGIS Android SDK的开发环境部署和HelloWorld

上一篇:在WPF程序中将控件所呈现的内容保存成图像(转载)


下一篇:配置oozie4.10+hadoop2.5.2