Skip to main content

ESRI using Eclipse setup guide


Please follow these steps to install the ArcGIS for Android 1.0 Beta Eclipse plug-ins:
1. Start Eclipse, then select Help > Install New Software....

2. In the top-right corner, Click Add.
3. In the Add Repository dialog that appears, enter “ArcGIS Android” for the Name and the following URL for the Location: http://downloads.esri.com/software/arcgis/android
4. In the Available Software dialog, select the checkbox next to ArcGIS for Android and click Next.
5. In the next window, you'll see two plug-ins to be installed. Click Next.

6. Display the License text by clicking on "IMPORTANT-READ CAREFULLY". Read the license text, then click the radio button to accept the license agreements, then click Finish.
7. When the installation completes, restart Eclipse.
* Notes for users of ArcGIS for Android Early Adopter release only
If you had installed the plug-ins for the ArcGIS for Android Early Adopter release, please refer to the Help for ArcGIS API for Android > Esri’s Eclipse tooling > Updating the plug-ins for installation instructions.


Comments

Popular posts from this blog

ProgressDialog example using handler android

final ProgressDialog dialog = ProgressDialog . show ( this , "Title" , "Message" , true ); final Handler handler = new Handler () { public void handleMessage ( Message msg ) { dialog . dismiss (); } } ; Thread t = new Thread () { public void run () { // write process code here. handler . sendEmptyMessage ( 0 ); } } ; t . start ();

How to set image button click effect ?

I have one simple solution: using that, you can set the default press effect to the button. // Create button and add event Button addImageView = (Button) bottomView.findViewById(R.id. addImage ); addImageView.setOnClickListener( new OnClickListener () { @Override public void onClick(View v) { // click event } }); //Using this code set touch listener addImageView.setOnTouchListener( touchEffect ); //touch listner OnTouchListener touchEffect = new OnTouchListener() {         public boolean onTouch(View v, MotionEvent event) {             switch (event.getAction()) {                 case MotionEvent. ACTION_DOWN : {                     v.getBackground().setColorFilter(0xe0f47521,PorterDuff.Mode. SRC_ATOP );                     v....

Get cursor position of Edittext android or How to insert text at cursor position.

You can get the Cursor position using the getSelectionStart() and getSelectionEnd() methods. If no text is highlighted, both getSelectionStart() and getSelectionEnd() return the position of the cursor.  myEditText . getSelectionStart (); or myEditText . getSelectionEnd (); How to insert text at cursor position. int curPos = editText .getSelectionStart(); String str = editText .getText().toString(); String str1 = (String) str.substring(0, curPos); String str2 = (String) str.substring(curPos); editText .setText(str1+ "<br/>" + list1 [which] +str2);