minafaw3

SelectDestinationActivity

Feb 11th, 2016
260
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.13 KB | None | 0 0
  1. package com.example.cabbookinghome;
  2.  
  3. import java.io.IOException;
  4. import java.util.ArrayList;
  5. import java.util.HashMap;
  6. import java.util.List;
  7. import org.json.JSONArray;
  8. import org.json.JSONException;
  9. import android.app.Activity;
  10. import android.app.ProgressDialog;
  11. import android.content.Context;
  12. import android.content.Intent;
  13. import android.graphics.Color;
  14. import android.os.Bundle;
  15. import android.support.v7.app.ActionBarActivity;
  16. import android.text.Editable;
  17. import android.text.TextWatcher;
  18. import android.util.Log;
  19. import android.view.KeyEvent;
  20. import android.view.MenuItem;
  21. import android.view.View;
  22. import android.view.View.OnClickListener;
  23. import android.view.inputmethod.InputMethodManager;
  24. import android.widget.AdapterView;
  25. import android.widget.AdapterView.OnItemClickListener;
  26. import android.widget.ArrayAdapter;
  27. import android.widget.AutoCompleteTextView;
  28. import android.widget.ImageButton;
  29. import android.widget.TextView;
  30. import android.widget.Toast;
  31. import co.easycabs.cabbookinghome.R;
  32. import com.coboltforge.slidemenu.SlideMenu;
  33. import com.google.android.gms.maps.GoogleMap;
  34. import com.google.android.gms.maps.MapFragment;
  35. import com.google.android.gms.maps.model.LatLng;
  36. import com.google.android.gms.maps.model.PolylineOptions;
  37. import epbit.Login.LoginDetails;
  38. import epbit.adapter.SlideMenuListener;
  39. import epbit.constants.IWebConstant;
  40. import epbit.exception.NetworkException;
  41. import epbit.exception.ParsingException;
  42. import epbit.exception.ServerException;
  43. import epbit.exception.TimeOutException;
  44. import epbit.helper.MyWebViewClient;
  45. import epbit.latlong.LatLongDetails;
  46. import epbit.service.AppAsynchTask;
  47. import epbit.utils.MapUtil;
  48.  
  49. public class SelectDestinationActivity extends ActionBarActivity implements
  50. OnClickListener, TextWatcher,
  51. OnItemClickListener {
  52. View view;
  53. private static GoogleMap googlemap;
  54. TextView set_source_SD_id;
  55. AutoCompleteTextView destination_ACT;
  56. ArrayList<String> names;
  57. JSONArray contacts = null;
  58. ArrayAdapter<String> adp;
  59. public TextView sd_distance, sd_time;
  60. public Context context;
  61. public ProgressDialog progress;
  62. ImageButton book_now_Image_Button;
  63. private SlideMenu slidemenu;
  64. View mapfragment;
  65. private GetSuggestionTask get_sug_task;
  66.  
  67. @Override
  68. protected void onCreate(Bundle savedInstanceState) {
  69.  
  70. super.onCreate(savedInstanceState);
  71. setContentView(R.layout.selecdestinationlayout);
  72.  
  73. LoginDetails.S_D_Distance = "0 KM";
  74. LoginDetails.Destination = "";
  75. context = SelectDestinationActivity.this;
  76. MyWebViewClient.setActionBar(getSupportActionBar(), context, false);
  77. book_now_Image_Button = (ImageButton) findViewById(R.id.book_now_Imagebutton_SD);
  78. set_source_SD_id = (TextView) findViewById(R.id.source_textview_SD);
  79. destination_ACT = (AutoCompleteTextView) findViewById(R.id.autocompletetextview);
  80. slidemenu = (SlideMenu) findViewById(R.id.slideMenu);
  81. slidemenu.init(this, R.menu.myslide, new SlideMenuListener(
  82. (Activity) context, R.id.item_three), 333);
  83. destination_ACT.setThreshold(0);
  84. slidemenu.setHeaderImage(getResources().getDrawable(
  85. R.drawable.ic_launcher));
  86.  
  87. initView();
  88.  
  89. }
  90.  
  91. private void initView() {
  92. if (!(LoginDetails.Address.equals("Getting your location .....")))
  93. set_source_SD_id.setText(LoginDetails.Address);
  94.  
  95.  
  96. names = new ArrayList<String>();
  97. IntialiseMapOnSD();
  98. destination_ACT.addTextChangedListener(this);
  99. destination_ACT.setOnItemClickListener(this);
  100. book_now_Image_Button.setOnClickListener(this);
  101.  
  102. }
  103.  
  104. @Override
  105. protected void onResume() {
  106.  
  107. super.onResume();
  108. IntialiseMapOnSD();
  109. }
  110.  
  111. private void IntialiseMapOnSD() {
  112.  
  113. if (googlemap == null) {
  114. googlemap = ((MapFragment) getFragmentManager().findFragmentById(
  115. R.id.mapfragment_SD)).getMap();
  116. }
  117. if (googlemap != null) {
  118. animateCameraToUserLocation("");
  119. } else {
  120. Toast.makeText(context, R.string.maps_create_error,
  121. Toast.LENGTH_SHORT).show();
  122. }
  123.  
  124. }
  125.  
  126. // ANIMATING CAMERA TO THE USER LOCATION
  127. private void animateCameraToUserLocation(String... params) {
  128.  
  129. MapUtil.changeCameraFocus(googlemap, LatLongDetails.user_latitude,
  130. LatLongDetails.user_longitude, 12);
  131.  
  132. if (params[0].equals(""))
  133. placeUserMarker();
  134.  
  135. }
  136.  
  137. // Placing Marker on the MAP
  138.  
  139. private void placeUserMarker() {
  140.  
  141. MapUtil.dropPin(googlemap, LatLongDetails.user_latitude,
  142. LatLongDetails.user_longitude, R.drawable.map_pointer, "");
  143.  
  144. }
  145.  
  146. public class GetSuggestionTask extends
  147. AppAsynchTask<String, String, String> {
  148. Context context;
  149.  
  150. public GetSuggestionTask(Activity activity) {
  151. super(activity);
  152. this.context = activity;
  153. setShowdialog(false);
  154.  
  155. }
  156.  
  157. @Override
  158. protected String customDoInBackground(String... params)
  159. throws NetworkException, ServerException, ParsingException,
  160. TimeOutException, IOException, JSONException {
  161. names = new ArrayList<String>();
  162. names = (ArrayList<String>) MapUtil.getAddressSuggestions(
  163. IWebConstant.Browser_GOOGLEAPI_KEY, params[0], ""
  164. + LatLongDetails.user_latitude, ""
  165. + LatLongDetails.user_longitude);
  166.  
  167. return names.toString();
  168.  
  169. }
  170.  
  171. @Override
  172. protected void customOnPostExecute(String result) {
  173. if (!names.isEmpty()) { // changed
  174. adp = new ArrayAdapter<String>(context,
  175. R.layout.autocompletelist, names);
  176. destination_ACT.setAdapter(adp);
  177.  
  178. } else {
  179. Toast.makeText(context, R.string.suggesttion_error,
  180. Toast.LENGTH_SHORT).show();
  181. }
  182. }
  183.  
  184. }
  185.  
  186.  
  187.  
  188. // @Override
  189. // public void onSlideMenuItemClick(int itemId) {
  190. //
  191. // switch (itemId) {
  192. //
  193. // case R.id.item_home:
  194. // startActivity(new Intent(SelectDestinationActivity.this,
  195. // ProfileActivity1.class)
  196. // .addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP));
  197. // finish();
  198. // break;
  199. // case R.id.item_one:
  200. // startActivity(new Intent(SelectDestinationActivity.this,
  201. // Profile.class).addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP));
  202. //
  203. // break;
  204. // case R.id.item_two:
  205. //
  206. // startActivity(new Intent(SelectDestinationActivity.this,
  207. // Rides.class).addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP));
  208. // break;
  209. // case R.id.item_three:
  210. //
  211. //
  212. // break;
  213. // case R.id.item_four:
  214. // startActivity(new Intent(SelectDestinationActivity.this,
  215. // RateCard.class).addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP));
  216. //
  217. // break;
  218. // case R.id.item_five:
  219. // startActivity(new Intent(SelectDestinationActivity.this, Help.class)
  220. // .addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP));
  221. //
  222. // break;
  223. // case R.id.item_six:
  224. // startActivity(new Intent(SelectDestinationActivity.this,
  225. // SignOut.class).addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP));
  226. //
  227. // break;
  228. // case R.id.item_seven:
  229. // startActivity(new Intent(SelectDestinationActivity.this,
  230. // ReferActivity.class)
  231. // .addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP));
  232. // finish();
  233. //
  234. // break;
  235. //
  236. // }
  237. //
  238. // }
  239.  
  240.  
  241. @Override
  242. protected void onStop() {
  243.  
  244. super.onStop();
  245. googlemap = null;
  246. }
  247.  
  248. @Override
  249. public boolean onOptionsItemSelected(MenuItem item) {
  250. switch (item.getItemId()) {
  251. case android.R.id.home: // this is the app icon of the actionbar
  252. slidemenu.show();
  253. break;
  254. }
  255. return super.onOptionsItemSelected(item);
  256. }
  257.  
  258. public boolean onKeyDown(int keyCode, KeyEvent event) {
  259.  
  260. if (keyCode == KeyEvent.KEYCODE_BACK) {
  261.  
  262. startActivity(new Intent(SelectDestinationActivity.this,
  263. ProfileActivity1.class)
  264. .addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP
  265. | Intent.FLAG_ACTIVITY_NEW_TASK));
  266.  
  267. }
  268. return super.onKeyDown(keyCode, event);
  269. }
  270.  
  271. @Override
  272. public void onClick(View v) {
  273. switch (v.getId()) {
  274. case R.id.book_now_Imagebutton_SD:
  275.  
  276. if ((!LoginDetails.S_D_Distance.equalsIgnoreCase("0 KM"))
  277. && LoginDetails.Destination.length() > 2)
  278. startActivity(new Intent(SelectDestinationActivity.this,
  279. RideActivity.class));
  280. else {
  281. if (LoginDetails.Destination.length() <= 0) {
  282. Toast.makeText(getApplicationContext(),
  283. R.string.select_destination_error,
  284. Toast.LENGTH_SHORT).show();
  285. }
  286. }
  287.  
  288. break;
  289.  
  290. }
  291.  
  292. }
  293.  
  294. @Override
  295. public void beforeTextChanged(CharSequence s, int start, int count,
  296. int after) {
  297. if (get_sug_task != null) {
  298. get_sug_task.cancel(true);
  299. }
  300. }
  301.  
  302. @Override
  303. public void onTextChanged(CharSequence s, int start, int before, int count) {
  304. googlemap.clear();
  305. LoginDetails.Destination = "";
  306. LoginDetails.S_D_Distance = "0 KM";
  307.  
  308. }
  309.  
  310. @Override
  311. public void afterTextChanged(Editable s) {
  312.  
  313.  
  314. if (s.length() > 3) {
  315. get_sug_task = new GetSuggestionTask((Activity) context);
  316. get_sug_task.execute(s.toString());
  317. }
  318.  
  319. }
  320.  
  321. @Override
  322. public void onItemClick(AdapterView<?> parent, View view, int position,
  323. long id) {
  324.  
  325. ((InputMethodManager) getSystemService(Activity.INPUT_METHOD_SERVICE))
  326. .toggleSoftInput(InputMethodManager.HIDE_IMPLICIT_ONLY, 0);
  327.  
  328. LoginDetails.Destination = parent.getItemAtPosition(position)
  329. .toString();
  330.  
  331.  
  332. new DrawRouteTask((Activity) context).execute();
  333.  
  334. }
  335.  
  336. public class DrawRouteTask extends
  337. AppAsynchTask<String, String, List<List<HashMap<String, String>>>> {
  338. Context context;
  339.  
  340. public DrawRouteTask(Activity activity) {
  341. super(activity,R.string.drawing_route,false);
  342. this.context = activity;
  343. }
  344.  
  345. @Override
  346. protected void onProgressUpdate(String... values) {
  347. super.onProgressUpdate(values);
  348. switch (Integer.parseInt(values[0])) {
  349. case 1:
  350. String loc[] = values[1].split(",");
  351. LatLongDetails.destination_latitude = Double
  352. .parseDouble(loc[0]);
  353. LatLongDetails.destination_longitude = Double
  354. .parseDouble(loc[1]);
  355. placeUserMarker();
  356. MapUtil.dropPin(googlemap, LatLongDetails.destination_latitude,
  357. LatLongDetails.destination_longitude, R.drawable.map_pointer,
  358. "");
  359.  
  360.  
  361. break;
  362.  
  363. }
  364.  
  365. }
  366.  
  367. @Override
  368. protected List<List<HashMap<String, String>>> customDoInBackground(String... params)
  369. throws NetworkException, ServerException, ParsingException,
  370. TimeOutException, IOException, JSONException {
  371.  
  372. String loc = MapUtil
  373. .getLatLongFromAddress(LoginDetails.Destination);
  374. String loc1[] = loc.split(",");
  375. LatLongDetails.destination_latitude = Double
  376. .parseDouble(loc1[0]);
  377. LatLongDetails.destination_longitude = Double
  378. .parseDouble(loc1[1]);
  379. publishProgress("1", loc);
  380. String res = "";
  381. HashMap<String, String> response = new HashMap<String, String>();
  382. List<List<HashMap<String, String>>> routes = new ArrayList<List<HashMap<String, String>>>();
  383. response = MapUtil.getTimeDistanceBetweenMapPoints(""
  384. + LatLongDetails.user_latitude, ""
  385. + LatLongDetails.user_longitude, ""
  386. + LatLongDetails.destination_latitude, ""
  387. + LatLongDetails.destination_longitude,
  388. IWebConstant.DISTANCE_UNITS);
  389.  
  390. LoginDetails.S_D_Distance = response.get("distance");
  391. LoginDetails.S_D_Time = response.get("duration");
  392. res = response.get("response");
  393. routes = MapUtil.getRoutesBetweenMapPoints(res);
  394.  
  395. return routes;
  396. }
  397.  
  398. @Override
  399. protected void customOnPostExecute(List<List<HashMap<String, String>>> result) {
  400.  
  401. if (result.size() == 0) {
  402. Toast.makeText(context, "No Route Found",
  403. Toast.LENGTH_SHORT).show();
  404. } else {
  405. ArrayList<LatLng> points = null;
  406. PolylineOptions polyLineOptions = null;
  407.  
  408. // traversing through routes
  409. for (int i = 0; i < result.size(); i++) {
  410. points = new ArrayList<LatLng>();
  411. polyLineOptions = new PolylineOptions();
  412. List<HashMap<String, String>> path = result.get(i);
  413.  
  414. for (int j = 0; j < path.size(); j++) {
  415. HashMap<String, String> point = path.get(j);
  416.  
  417. double lat = Double.parseDouble(point.get("lat"));
  418. double lng = Double.parseDouble(point.get("lng"));
  419. LatLng position = new LatLng(lat, lng);
  420.  
  421. points.add(position);
  422. }
  423.  
  424. polyLineOptions.addAll(points);
  425.  
  426. polyLineOptions.width(10);
  427. polyLineOptions.color(Color.RED);
  428. }
  429.  
  430. googlemap.addPolyline(polyLineOptions);
  431.  
  432. animateCameraToUserLocation("yes");
  433. Log.e("DISTANCE", LoginDetails.S_D_Distance);
  434. Log.e("TIME", LoginDetails.S_D_Time);
  435.  
  436. }
  437.  
  438. }
  439.  
  440. }
  441.  
  442. }
Add Comment
Please, Sign In to add comment