我是一个新手android开发者,现在我正在使用Mapview。我想根据他的纬度和经度在地图中显示不同种类的叠加。
我创建了一个带有sqlite的数据库,保存在文件夹资产上。这是我的tables.xml(对不起,但字段是西班牙语)
<database name="loteria.db" version="1">
<table name="puestos" to-string="%direccion%">
<field name="direccion" type="text" obligatory="true"/>
<field name="latitud" type="double" obligatory="false"/>
<field name="longitud" type="double" obligatory="false"/>
</table>
</database>
太简单了。我现在不需要更多。在我创建了一个名为MapaActivity的Activity之后我绘制了mapView。这里我有2个问题,第一个,我的mapView必须是TapControlledMapView,因为我想使用方法onsingleTapListener,但我不能,它导致FC总是,我不为什么!
第二个问题是当我想从数据库中提取实体列表(List
List<Entity> puestos = Lists.newArrayList();
DataFramework db = null;
try {
db = DataFramework.getInstance();
db.open(this, getPackageName());
puestos = db.getEntityList("puestos", "latitud < " + maxLatitud
+ " and latitud > " + minLatitud + " and longitud < "
+ maxLongitud + " and longitud > " + minLongitud);
} catch (Exception e) {
e.printStackTrace();
} finally {
db.close();
}
没有任何反应,puestos总是空着的。
任何想法???
谢谢!
答案 0 :(得分:0)
你怎么不只是使用SQLiteOpenHelper?查看本教程:http://www.vogella.com/articles/AndroidSQLite/article.html
我怀疑你会比使用xml构建表更好运。