I am getting an error "Cannot resolve method 'maketext (android.content.Context, java.lang.String, java.lang.String, int ')". I assume that there is some problem with the altitude part (int). Can someone tell me how to fix this?
@OnClick(R.id.btn_get_last_location)
public void showLastKnownLocation() {
if (mCurrentLocation != null) {
Toast.makeText(getApplicationContext(), "Lat: " + mCurrentLocation.getLatitude()
+ ", Lng: " + mCurrentLocation.getLongitude(), ", Alt: " + mCurrentLocation.getAltitude(), Toast.LENGTH_LONG).show();
}
else
{
Toast.makeText(getApplicationContext(), "Last known location is not available!", Toast.LENGTH_SHORT).show();
}
}