2
即時通訊嘗試實施基於GPS達的鬧鐘如果我在城市x我安置一個針點在該地點時,當我達到特定的精確點它應該給我一個警報或警報我已經實施了一個完整的地圖結構,我也編程爲顯示我的當前位置和準確定位。我不知道如何附上源代碼,請幫助我以這種方式對Android真的很陌生,我不知道該怎麼做。這裏是代碼請指導我在哪裏我錯了。如何設置鬧鐘或谷歌地圖上的警報android
public void onLocationChanged(Location l)
{
// TODO Auto-generated method stub
lat=(int) (l.getLatitude() *1E6) ;
longi=(int) (l.getLongitude() *1E6);
ourLocation= new GeoPoint(lat,longi);
OverlayItem overlayItem= new OverlayItem(ourLocation,"","");
CustomPinpoint custom=new CustomPinpoint(d,Main.this);
custom.insertPinPoint(overlayItem);
overlayList.add(custom);
controller.setCenter(ourLocation);
geocoder= new Geocoder(getBaseContext(), Locale.getDefault());
try
{
List<Address>address1=geocoder.getFromLocation
(ourLocation.getLatitudeE6()/1E6,ourLocation .getLongitudeE6()/1E6, 1);
if(address1.size()>0)
{
for(int i=0; i<address1.get(0).getMaxAddressLineIndex();i++)
{
display1 += address1.get(0).getAddressLine(i)+"\n";
}
}
}
catch(IOException e1)
{
e1.printStackTrace();
Toast.makeText(getBaseContext(), "error", Toast.LENGTH_LONG).show();
}
if(display1.equals(display))
{
AlertDialog alert= new AlertDialog.Builder(Main.this).create();
alert.setTitle("Destination");
alert.setMessage("You Reached to destination");
alert.setButton("OK",new DialogInterface.OnClickListener()
{
public void onClick(DialogInterface arg0, int arg1)
{
// TODO Auto-generated method stub
}
});
alert.show();
}
}
你的意思是我必須爲alertDialog創建一個類,而不是簡單地在if語句的主體中調用該類?我不知道我的代碼,我正確的方式? – saman
您不僅必須在您的主體中聲明「public void showSettingsAlert()」,還要創建新類以顯示警報對話框。 – BBonDoo