How do I Insert Latitude/Longtitude in my database & use it to open Google maps with Intent? [closed]
CREATE TABLE IF NOT EXISTS employee (_id INTEGER PRIMARY KEY AUTOINCREMENT,
firstName VARCHAR(50),
lastName VARCHAR(50),
title VARCHAR(50),
department VARCHAR(50),
managerId INTEGER,
city VARCHAR(50),
officePhone VARCHAR(30),
cellPhone VARCHAR(30),
email VARCHAR(30),
picture VARCHAR(200))
INSERT INTO employee VALUES(1,'Ryan','Howard','Vice President, North East',
'Management', NULL, 'Scranton','570-999-8888',
'570-999-8887','ryan@dundermifflin.com','howard.jpg')
You really should put more time into formulating your question. I'm unsure what exactly you're stuck on. I'd recommend starting from scratch. Look at location + Android and how they tie together. Here is an example of an app that works with location services.
There is a similar question to yours answered well Here. If it is SQLite that's giving you issues have a look at this. Due to the lack of information I'm unsure what it is you're asking specifically. Hopefully these few suggestions will answer your query. If not add more information and I will attempt to give you a more specific answer.
精彩评论