次のコードを使用しているロケーションベースのプロジェクトを開発しています
プロジェクトにGoogle API 8を使用しています
lm.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, this);
currloc = lm.getLastKnownLocation(LocationManager.GPS_PROVIDER);
TextView t = (TextView)findViewById(R.id.textView1);
try{
t.setText("Your current location is - "+currloc.getLatitude()+","+currloc.getLongitude());
}catch (Exception e) {
// TODO: handle exception
t.setText("cant find current location ");
}
このコードは、htc でも私の Galaxy タブで正常に動作します
しかし、ネクサスを使用すると、場所にnull値が返されます。APIレベルを変更する必要がありますか、それともGalaxy nexusに特定の要件がありますか?事前に感謝します:)