这是我第一次尝试在Android应用程序的服务器 - 客户端交互。我为一个小小的应用程序编写了这个MainActivity.java文件。我正在尝试实施Google App Engine数据库,以便在地图上存储标记的信息。我将我的addMarkerTask类从google的这个示例中删除。
这是我的班级
package com.example.rpialmanac;
import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.model.LatLng;
import com.google.android.gms.maps.MapFragment;
import com.google.android.gms.maps.model.Marker;
import com.google.android.gms.maps.model.MarkerOptions;
import com.google.api.client.extensions.android.http.AndroidHttp;
import com.google.api.client.json.jackson2.JacksonFactory;
import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.os.AsyncTask;
import android.view.Menu;
import android.view.MenuItem;
public class MainActivity extends ActionBarActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
GoogleMap mMap;
mMap = ((MapFragment) getFragmentManager().findFragmentById(R.id.map)).getMap();
final LatLng FIELD = new LatLng(42.730357, -73.679951);
Marker field = mMap.addMarker(new MarkerOptions().position(FIELD));
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
/**
* AsyncTask for adding a new marker to the database */
private class addMarkerTask extends AsyncTask<Void, Void, Void> {
/**
* Calls appropriate CloudEndpoint to add a new marker to the database.
*
* @param params the place where the user is adding a marker
*/
@Override
protected Void doInBackground(Void... params) {
addMarker newMarker = new addMarker();
// Set the ID of the store where the user is.
// This would be replaced by the actual ID in the final version of the code.
newMarker.setMarkerName("86 field");
newMarker.setMarkerType("recreation")
newMarker.setMarkerLat(42.730357);
newMarker.setMarkerLong(-73.679951);
addMarkerEndpoint.Builder builder = new addMarkerEndpoint.Builder(
AndroidHttp.newCompatibleTransport(), new JacksonFactory(),
null);
builder = CloudEndpointUtils.updateBuilder(builder);
Checkinendpoint endpoint = builder.build();
try {
endpoint.insertCheckIn(checkin).execute();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return null;
}
}
}
然而,eclipse无法解析对象addMarker,我知道这是因为我没有从我的rpiAlmanac-AppEngine包中的addMarker.java文件导入该类,但是eclipse无法识别该类当我开始输入com.example.rpiAlmanac。*时。有谁知道是否可以从另一个包中导入一个类?如果还有其他方法可以做到这一点,我很乐意听到任何帮助。
答案 0 :(得分:0)
只需将其添加到您的导入语句中即可。
import com.example.rpiAlmanac.addMarker;
请注意,按照惯例,您应该使用大写字母开头。即Addmarker
顺便说一句,您是否启用了内容辅助自动激活功能? Eclipse - &gt;偏好 - &gt; Java - &gt;编辑 - &gt;内容辅助
还要检查您的课程是否在您的构建路径中。项目 - &gt;属性 - &gt; Java Build Pathh - &gt;源