Example #1
0
  private void doLogout() {
    AppController.deleteToken(this);
    AppController.sdeleteFBToken(this);

    Session session = AppController.staticSession.getActiveSession();
    if (session != null) session.closeAndClearTokenInformation();
    Intent i = new Intent(AfterLoginActivity.this, MainActivity.class);
    startActivity(i);
    finish();
  }
Example #2
0
 @Override
 protected Void doInBackground(Void... params) {
   try {
     DefaultHttpClient httpclient = new DefaultHttpClient();
     String reqURL = Constants.BASE_URL + Constants.MESSAGE_COUNT;
     HttpPost httpPost = new HttpPost(reqURL);
     String json = "";
     JSONObject reqparams = new JSONObject();
     reqparams.accumulate("appId", "1966477342111");
     reqparams.accumulate("secret", Constants.secret);
     reqparams.accumulate("access_token", AppController.getToken(AfterLoginActivity.this));
     reqparams.accumulate("device_id", AppController.getRegistrationId(AfterLoginActivity.this));
     reqparams.accumulate("os_type", "android");
     json = reqparams.toString();
     StringEntity se = new StringEntity(json);
     httpPost.setEntity(se);
     httpPost.setHeader("Accept", "application/json");
     httpPost.setHeader("Content-type", "application/json");
     HttpResponse httpResponse = httpclient.execute(httpPost);
     inputStream = httpResponse.getEntity().getContent();
     if (inputStream != null) result = AppController.convertInputStreamToString(inputStream);
     else result = "Did not work!";
   } catch (Exception e) {
     Log.d("InputStream", e.getLocalizedMessage());
   }
   try {
     JSONObject object = new JSONObject(result);
     JSONArray array = object.getJSONArray("data");
     message_count = array.length();
     runOnUiThread(
         new Runnable() {
           @Override
           public void run() {
             actionBarMessagesTV.setText(String.valueOf(message_count));
             Log.v("XXXXXXXXXXXX", "data sayısını bastı");
           }
         });
   } catch (JSONException e) {
     e.printStackTrace();
     runOnUiThread(
         new Runnable() {
           @Override
           public void run() {
             actionBarMessagesTV.setText("0");
             Log.v("XXXXXXXXXXXX", "data sayısını basamaıd");
           }
         });
   }
   return null;
 }
Example #3
0
  private void setUpMain(String userName) {
    Window.setStatus(" ");

    createMain();

    appController.setUserName(userName);
  }
Example #4
0
 @Override
 protected void onCreate(Bundle savedInstanceState) {
   super.onCreate(savedInstanceState);
   setContentView(R.layout.activity_main);
   String token = AppController.getToken(this);
   if (!token.isEmpty()) {
     if (getIntent().hasExtra("reDirectUrl")) {
       Intent afterLoginActivity = new Intent(MainActivity.this, AfterLoginActivity.class);
       afterLoginActivity.putExtra(
           "reDirectUrl", getIntent().getExtras().getString("reDirectUrl"));
       startActivity(afterLoginActivity);
       finish();
     }
     Intent i = new Intent(this, AfterLoginActivity.class);
     startActivity(i);
     finish();
   }
   if (checkPlayServices()) {
     // If this check succeeds, proceed with normal processing.
     // Otherwise, prompt user to get valid Play Services APK.
     gcm = GoogleCloudMessaging.getInstance(this);
     regid = AppController.getRegistrationId(MainActivity.this);
     if (regid.isEmpty()) {
       registerInBackground();
     }
     LandingFragment landingFragment = LandingFragment.newInstance();
     android.support.v4.app.FragmentTransaction fragmentTransaction =
         getSupportFragmentManager().beginTransaction();
     fragmentTransaction.replace(R.id.activityMainFragmentContainer, landingFragment);
     fragmentTransaction.commit();
   } else {
     AlertDialog.Builder builder = new AlertDialog.Builder(this);
     builder.setTitle("Error");
     builder.setMessage(
         "You can not use this application without Google Play Service. Please get Google Play Services to use Hobtime Application");
     builder.setPositiveButton(
         "OK",
         new DialogInterface.OnClickListener() {
           @Override
           public void onClick(DialogInterface dialog, int which) {
             finish();
           }
         });
     AlertDialog dialog = builder.create();
     dialog.show();
   }
 }
Example #5
0
  /**
   * Method to fetch Task data from appropriate API
   *
   * @param index Position of the Feed in List
   * @param url The url of the API
   */
  private void fetchTaskData(final int index, String url) {
    JsonObjectRequest jsonObjectRequest =
        new JsonObjectRequest(
            url,
            null,
            new Response.Listener<JSONObject>() {
              @Override
              public void onResponse(JSONObject response) {
                try {
                  String taskName = response.getString("name");
                  String taskDescription = response.getString("description");
                  String taskState = response.getString("state");
                  String modifiedTitle = "";

                  Cursor cursor =
                      getContentResolver()
                          .query(
                              Contract.FeedEntry.CONTENT_URI,
                              FEED_COLUMNS,
                              Contract.FeedEntry._ID + "=" + index,
                              null,
                              null);
                  if (cursor != null && cursor.moveToFirst()) {
                    modifiedTitle =
                        cursor
                            .getString(COL_FEED_TITLE)
                            .replace("{taskName}", '"' + taskName + '"');
                  }

                  ContentValues contentValues = new ContentValues();
                  contentValues.put(Contract.FeedEntry._ID, index);
                  contentValues.put(Contract.FeedEntry.COLUMN_FEED_TITLE, modifiedTitle);
                  contentValues.put(Contract.FeedEntry.COLUMN_FEED_TASK_NAME, taskName);
                  contentValues.put(
                      Contract.FeedEntry.COLUMN_FEED_TASK_DESCRIPTION, taskDescription);
                  contentValues.put(Contract.FeedEntry.COLUMN_FEED_TASK_STATE, taskState);

                  getContentResolver()
                      .update(
                          Contract.FeedEntry.CONTENT_URI,
                          contentValues,
                          Contract.FeedEntry._ID + " = ?",
                          new String[] {Integer.toString(index)});

                } catch (JSONException e) {
                  showToast("Error in working with JSON: " + e.getMessage());
                }
              }
            },
            new Response.ErrorListener() {
              @Override
              public void onErrorResponse(VolleyError error) {
                showToast("VolleyError: " + error.getMessage());
              }
            });

    // Add request to the queue
    AppController.getInstance().getRequestQueue().add(jsonObjectRequest);
  }
Example #6
0
  /**
   * Method to fetch Profile data from appropriate API
   *
   * @param index Position of the Feed in List
   * @param url The url of the API
   */
  private void fetchProfileData(final int index, String url) {
    JsonObjectRequest jsonObjectRequest =
        new JsonObjectRequest(
            url,
            null,
            new Response.Listener<JSONObject>() {
              @Override
              public void onResponse(JSONObject response) {
                try {
                  String firstName = response.getString("first_name");
                  String avatarUrl = response.getString("avatar_mini_url");
                  String modifiedTitle = "";

                  Cursor cursor =
                      getContentResolver()
                          .query(
                              Contract.FeedEntry.CONTENT_URI,
                              FEED_COLUMNS,
                              Contract.FeedEntry._ID + "=" + index,
                              null,
                              null);
                  if (cursor != null && cursor.moveToFirst()) {
                    modifiedTitle =
                        cursor
                            .getString(COL_FEED_TITLE)
                            .replace("{profileName}", '"' + firstName + '"');
                  }

                  ContentValues contentValues = new ContentValues();
                  contentValues.put(Contract.FeedEntry._ID, index);
                  contentValues.put(Contract.FeedEntry.COLUMN_FEED_TITLE, modifiedTitle);
                  contentValues.put(Contract.FeedEntry.COLUMN_FEED_AUTHOR, firstName);
                  contentValues.put(
                      Contract.FeedEntry.COLUMN_FEED_AUTHOR_PROFILE,
                      "https://stage.airtasker.com/android-code-test" + avatarUrl);

                  getContentResolver()
                      .update(
                          Contract.FeedEntry.CONTENT_URI,
                          contentValues,
                          Contract.FeedEntry._ID + " = ?",
                          new String[] {Integer.toString(index)});

                } catch (JSONException e) {
                  showToast("Error in working with JSON: " + e.getMessage());
                }
              }
            },
            new Response.ErrorListener() {
              @Override
              public void onErrorResponse(VolleyError error) {
                showToast("VolleyError: " + error.getMessage());
              }
            });

    // Add request to the queue
    AppController.getInstance().getRequestQueue().add(jsonObjectRequest);
  }
Example #7
0
  // Gets the Events
  public void getEvents() {
    String tag_string_req = "req_events";

    StringRequest strReq =
        new StringRequest(
            Request.Method.POST,
            URL,
            new Response.Listener<String>() {

              @Override
              public void onResponse(String response) {

                hideDialog();

                try {
                  JSONObject jObj = new JSONObject(response);
                  boolean error = jObj.getBoolean("error");

                  if (!error) {
                    layout.removeAllViews();
                    events = new ArrayList<JSONObject>();

                    int counter = 0;
                    while (jObj.has(Integer.toString(counter))) {
                      events.add(jObj.getJSONObject(Integer.toString(counter)));
                      counter++;
                    }
                    drawEvents();
                  } else {
                    String error_msg = jObj.getString("error_msg");
                    // Toast.makeText(getBaseContext(),error_msg, Toast.LENGTH_LONG).show();
                  }
                } catch (JSONException e) {
                  e.printStackTrace();
                }
              }
            },
            new Response.ErrorListener() {

              @Override
              public void onErrorResponse(VolleyError error) {
                hideDialog();
                // Toast.makeText(getApplicationContext(),"Something went wrong",
                // Toast.LENGTH_LONG).show();
              }
            }) {

          @Override
          protected Map<String, String> getParams() {
            Map<String, String> params = new HashMap<String, String>();
            params.put("tag", "get");
            params.put("uid", uid);

            return params;
          }
        };
    AppController.getInstance().addToRequestQueue(strReq, tag_string_req);
  }
Example #8
0
  // Gets the country code of the user so the app can add Country Codes to the Phone numbers in the
  // users contacts.
  public void getCountry() {
    String tag_string_req = "req_country";
    if (first) {
      pDialog.setMessage("Getting your contacts...");
      showDialog();
    }

    StringRequest strReq =
        new StringRequest(
            Request.Method.POST,
            CONTACTS_URL,
            new Response.Listener<String>() {

              @Override
              public void onResponse(String response) {

                try {
                  JSONObject jObj = new JSONObject(response);
                  boolean error = jObj.getBoolean("error");
                  if (!error) {
                    JSONObject details = jObj.getJSONObject("result");
                    country = details.getString("country");
                    ownphone = details.getString("phone");
                    getContacts();
                  } else {
                    country = null;
                    ownphone = null;
                  }
                } catch (JSONException e) {

                }
              }
            },
            new Response.ErrorListener() {

              @Override
              public void onErrorResponse(VolleyError error) {
                // Toast.makeText(getApplicationContext(),"something went wrong",
                // Toast.LENGTH_LONG).show();
              }
            }) {

          @Override
          protected Map<String, String> getParams() {
            // Posting params to register url
            Map<String, String> params = new HashMap<String, String>();
            params.put("tag", "check");
            params.put("uid", uid);
            return params;
          }
        };

    // Adding request to request queue
    AppController.getInstance().addToRequestQueue(strReq, tag_string_req);
  }
Example #9
0
  /**
   * Creates the main view of Guvnor. The path used to invoke guvnor is used to identify the view to
   * show: If the path contains "StandaloneEditor.html" then the StandaloneGuidedEditorManager is
   * used to render the view. If not, the default view is shown.
   */
  private void createMain() {
    EventBus eventBus = new SimpleEventBus();
    SuggestionCompletionCache.getInstance().setEventBus(eventBus);
    ClientFactory clientFactory = new ClientFactoryImpl(eventBus);
    appController = new AppController(clientFactory, eventBus);

    if (Window.Location.getPath().contains("StandaloneEditor.html")) {
      RootLayoutPanel.get()
          .add(new StandaloneEditorManager(clientFactory, eventBus).getBaseLayout());
    } else {

      RootLayoutPanel.get().add(appController.getMainPanel());
    }
  }
Example #10
0
  /**
   * Creates the main view of Guvnor. The path used to invoke guvnor is used to identify the view to
   * show: If the path contains "StandaloneEditor.html" then the StandaloneGuidedEditorManager is
   * used to render the view. If not, the default view is shown.
   */
  private void createMain() {
    EventBus eventBus = new SimpleEventBus();
    RefreshModuleDataModelImpl.getInstance().setEventBus(eventBus);
    ClientFactory clientFactory = new ClientFactoryImpl(eventBus);
    appController = new AppController(clientFactory, eventBus);

    /*        if (Window.Location.getPath().contains("StandaloneEditor.html")) {
        RootLayoutPanel.get().add(new StandaloneEditorManager(clientFactory, eventBus).getBaseLayout());
    } else {*/

    RootLayoutPanel.get().add(appController.getMainPanel());
    // }

  }
Example #11
0
  private void openWebViewFragment(String url) {

    showShareButton();
    actionBarHobtime.setBackgroundColor(getResources().getColor(R.color.hobtimeGreen));
    String requestedPage = url + "?access_token=" + AppController.getToken(this);
    AppController.shareLink = url;
    WebViewFragment webViewFragment = WebViewFragment.newInstance(requestedPage);
    FragmentTransaction fragmentTransaction = getSupportFragmentManager().beginTransaction();
    fragmentTransaction.setCustomAnimations(
        R.anim.slide_in_right, R.anim.slide_out_left, R.anim.slide_in_left, R.anim.slide_out_right);
    fragmentTransaction.replace(R.id.afterLoginFragmentContainer, webViewFragment);
    fragmentTransaction.addToBackStack("");
    fragmentTransaction.commit();
  }
Example #12
0
  // Checks whether a contact is in the details database or not.
  public void checkContact(final String phone, final String name) {
    String tag_string_req = "req_phoneno";

    StringRequest strReq =
        new StringRequest(
            Request.Method.POST,
            CONTACTS_URL,
            new Response.Listener<String>() {

              @Override
              public void onResponse(String response) {

                try {
                  JSONObject jObj = new JSONObject(response);
                  boolean error = jObj.getBoolean("error");
                  if (!error) {
                    String uid = jObj.getJSONObject("uid").getString("UID");
                    Log.d("added:", name);
                    user_db.addContact(uid, name, phone);
                  }
                } catch (JSONException e) {

                }
              }
            },
            new Response.ErrorListener() {

              @Override
              public void onErrorResponse(VolleyError error) {
                // Toast.makeText(getApplicationContext(),"something went wrong",
                // Toast.LENGTH_LONG).show();
              }
            }) {

          @Override
          protected Map<String, String> getParams() {
            // Posting params to register url
            Map<String, String> params = new HashMap<String, String>();
            params.put("tag", "get");
            params.put("phone", phone);
            return params;
          }
        };

    // Adding request to request queue
    AppController.getInstance().addToRequestQueue(strReq, tag_string_req);
  }
  public static void createUser(String name, String email, Context c, final VolleyRes res) {
    String tag_json_obj = "json_obj_req";

    String url = "http://api.androidhive.info/volley/person_object.json";

    final ProgressDialog pDialog = new ProgressDialog(c);
    pDialog.setMessage("Loading...");
    pDialog.show();

    JsonObjectRequest jsonObjReq =
        new JsonObjectRequest(
            Request.Method.POST,
            url,
            null,
            new Response.Listener<JSONObject>() {

              @Override
              public void onResponse(JSONObject response) {
                Log.d(TAG, response.toString());
                pDialog.hide();
                res.onSuccessResponse();
              }
            },
            new Response.ErrorListener() {

              @Override
              public void onErrorResponse(VolleyError error) {
                VolleyLog.d(TAG, "Error: " + error.getMessage());
                pDialog.hide();
                res.onFailureResponse();
              }
            }) {

          @Override
          protected Map<String, String> getParams() {
            Map<String, String> params = new HashMap<String, String>();
            params.put("name", "Androidhive");
            params.put("email", "*****@*****.**");
            params.put("password", "password123");

            return params;
          }
        };

    // Adding request to request queue
    AppController.getInstance().addToRequestQueue(jsonObjReq, tag_json_obj);
  }
Example #14
0
  /** Checks whether the users UID is in the details DB. If not, starts the PhoneActivity. */
  public void firstLogin() {
    String tag_string_req = "req_phone";
    StringRequest strReq =
        new StringRequest(
            Request.Method.POST,
            CONTACTS_URL,
            new Response.Listener<String>() {

              @Override
              public void onResponse(String response) {

                try {
                  JSONObject jObj = new JSONObject(response);
                  boolean error = jObj.getBoolean("error");
                  Log.d("test", Boolean.toString(error));
                  if (error) {
                    Intent intent = new Intent(MainActivity.this, PhoneActivity.class);
                    startActivity(intent);
                    finish();
                  }
                } catch (JSONException e) {
                  e.printStackTrace();
                }
              }
            },
            new Response.ErrorListener() {

              @Override
              public void onErrorResponse(VolleyError error) {
                // Toast.makeText(getApplicationContext(),error.toString(),
                // Toast.LENGTH_LONG).show();
              }
            }) {

          @Override
          protected Map<String, String> getParams() {
            Map<String, String> params = new HashMap<String, String>();
            params.put("tag", "check");
            params.put("uid", uid);

            return params;
          }
        };
    AppController.getInstance().addToRequestQueue(strReq, tag_string_req);
  }
Example #15
0
  @Override
  protected void onResume() {

    super.onResume();

    new GetMessageCountTask().execute();
    if (AppController.redirectUrl != null) {
      openNotificationPage(
          AppController.redirectUrl + "/&access_token=" + AppController.getToken(this));
      AppController.redirectUrl = null;
    }
    //        else if(AppController.redirectUrl ==null){
    //            AfterLoginFragment afterLoginFragment = AfterLoginFragment.newInstance();
    //            FragmentTransaction fragmentTransaction =
    // getSupportFragmentManager().beginTransaction();
    //            fragmentTransaction.replace(R.id.afterLoginFragmentContainer, afterLoginFragment);
    //            fragmentTransaction.commit();
    //        }
    RelativeLayout actionBarMessagesRL = (RelativeLayout) findViewById(R.id.actionBarMessagesRL);
    actionBarMessagesRL.setOnClickListener(
        new View.OnClickListener() {
          @Override
          public void onClick(View v) {
            showShareButton();
            String requestedPage =
                Constants.NOTIFICATIONS_LINK
                    + "?access_token="
                    + AppController.getToken(AfterLoginActivity.this);
            WebViewFragment webViewFragment = WebViewFragment.newInstance(requestedPage);
            FragmentTransaction fragmentTransaction =
                getSupportFragmentManager().beginTransaction();
            fragmentTransaction.setCustomAnimations(
                R.anim.slide_in_left,
                R.anim.slide_out_right,
                R.anim.slide_in_left,
                R.anim.slide_out_right);
            fragmentTransaction.replace(R.id.afterLoginFragmentContainer, webViewFragment);
            fragmentTransaction.addToBackStack("");
            fragmentTransaction.commit();
          }
        });
  }
Example #16
0
 @Override
 public void onModuleLoad() {
   AppController appViewer = new AppController();
   appViewer.go(RootPanel.get());
 }
Example #17
0
  // Draws the Events
  private void drawEvents() {

    int counter = 0;
    layout.removeAllViews();
    for (JSONObject j : events) {
      try {
        final String eid = j.getString("eid");
        final String name = j.getString("name");
        final int icon = j.getInt("icon");
        final int creator = j.getInt("creator");
        String update = j.getString("updated");
        final String temp = j.getString("datetime");
        String month = temp.substring(5, 7);
        String day = temp.substring(8, 10);
        String date = day + '-' + month;

        RelativeLayout.LayoutParams lp_icon = new RelativeLayout.LayoutParams(height, height);
        RelativeLayout.LayoutParams lp_button = new RelativeLayout.LayoutParams(width, height);
        RelativeLayout.LayoutParams lp_date = new RelativeLayout.LayoutParams(dateWidth, height);
        RelativeLayout.LayoutParams lp_div = new RelativeLayout.LayoutParams(width, divHeight);

        /**
         * Adds the icon: to limit the use of data we store the images in a local database, and in
         * an online database. Whenever someone uploads a new icon a new random icon_ID gets
         * generated when the icon_ID in your local DB doesn't equal the one in the online database,
         * the one in the online DB gets downloaded and the offline DB gets updated with this EID
         * and image.
         */
        lp_icon.setMargins(0, (height + divHeight) * counter, 0, 0);
        final ImageButton img = new ImageButton(this);
        if (icon == 0) {
          img.setImageResource(R.drawable.group);
          img.setPadding(12, 12, 12, 12);
          user_db.deleteBlob(eid);
        } else {
          if (icon == user_db.getVersion(eid)) {
            byte[] image = user_db.getBlob(eid);
            img.setImageBitmap(BitmapFactory.decodeByteArray(image, 0, image.length));
            img.setPadding(7, 7, 7, 7);
          } else {
            String tag_icon = "req_icon";
            StringRequest stringRequest =
                new StringRequest(
                    Request.Method.POST,
                    URL_ICON,
                    new Response.Listener<String>() {

                      @Override
                      public void onResponse(String response) {
                        try {
                          JSONObject jObj = new JSONObject(response);
                          boolean error = jObj.getBoolean("error");

                          if (!error) {
                            byte[] blob = Base64.decode(jObj.getString("blob"), Base64.DEFAULT);
                            if (user_db.getVersion(eid) == 0) {
                              user_db.addBLOB(eid, icon, blob);
                            } else {
                              user_db.updateBlob(eid, icon, blob);
                            }
                            img.setImageBitmap(BitmapFactory.decodeByteArray(blob, 0, blob.length));
                            img.setPadding(7, 7, 7, 7);
                          }
                        } catch (JSONException e) {
                          e.printStackTrace();
                        }
                      }
                    },
                    new Response.ErrorListener() {

                      @Override
                      public void onErrorResponse(VolleyError error) {}
                    }) {

                  @Override
                  protected Map<String, String> getParams() {
                    Map<String, String> params = new HashMap<String, String>();
                    params.put("tag", "get");
                    params.put("eid", eid);
                    return params;
                  }
                };
            AppController.getInstance().addToRequestQueue(stringRequest, tag_icon);
          }
        }
        img.setLayoutParams(lp_icon);
        img.setBackground(null);
        img.setScaleType(ImageView.ScaleType.FIT_CENTER);
        layout.addView(img);

        // Add the button
        lp_button.setMargins(height, (height + divHeight) * counter, height, 0);
        TextView button = new TextView(this);
        button.setText(name);
        button.setTypeface(express);
        button.setTextSize(getResources().getDimension(R.dimen.button_text));
        button.setTextColor(getResources().getColor(R.color.black));
        button.setGravity(Gravity.CENTER_VERTICAL);
        button.setLayoutParams(lp_button);
        layout.addView(button);
        button.setOnClickListener(
            new View.OnClickListener() {
              @Override
              public void onClick(View v) {
                Intent intent = new Intent(MainActivity.this, EventActivity.class);
                Bundle b = new Bundle();
                b.putString("eid", eid);
                b.putString("name", name);
                b.putInt("icon", icon);
                b.putInt("creator", creator);
                b.putString("date", temp);
                intent.putExtras(b);
                startActivity(intent);
              }
            });

        // Add the Date
        if (!month.equals("00") && !day.equals("00")) {
          lp_date.setMargins(0, (height + divHeight) * counter, 0, 0);
          lp_date.addRule(RelativeLayout.ALIGN_PARENT_RIGHT, RelativeLayout.TRUE);
          TextView datetime = new TextView(this);
          datetime.setText(date);
          datetime.setGravity(Gravity.CENTER);
          datetime.setLayoutParams(lp_date);
          layout.addView(datetime);
        }

        // Add the Divider
        lp_div.setMargins(height, (height + divHeight) * counter + height, 20, 0);
        ImageView div = new ImageView(this);
        div.setImageResource(R.drawable.divider);
        div.setLayoutParams(lp_div);
        layout.addView(div);

        counter++;
      } catch (JSONException ex) {

      }
    }
  }
Example #18
0
 protected final CategoryServiceAsync getRpcService() {
   return appController.getRpcService();
 }
Example #19
0
 protected final HasWidgets getContainer() {
   return appController.getContainer();
 }
Example #20
0
  public static void getAllData(String msg, Context c) {
    final Context context = c;

    final String message = msg;
    AppCommon.showDialog("Loading....", c);
    String url = AppCommon.getURL() + "allControlsData/0/0";
    Log.i("atag", url);
    final JsonObjectRequest jsonObjReq =
        new JsonObjectRequest(
            Request.Method.GET,
            url,
            new JSONObject(),
            new Response.Listener<JSONObject>() {
              @Override
              public void onResponse(JSONObject response) {

                try {

                  Log.i("atag", response.toString());

                  int loopLength =
                      (response.getJSONArray("allControlsDataResult").getJSONObject(0)).length();
                  ControllData strData = new ControllData();
                  DatabaseHandler db = new DatabaseHandler(context);

                  if (message.equals("upd")) {
                    db.deleteControllData();
                  }
                  for (int i = 0; i < loopLength; i++) {
                    if (i == 0) {
                      strData.setDataName("AREADATA");
                      strData.setDataValue(
                          response
                              .getJSONArray("allControlsDataResult")
                              .getJSONObject(0)
                              .getJSONArray("AREADATA")
                              .toString());
                    } else if (i == 1) {
                      strData.setDataName("WORDDATA");
                      strData.setDataValue(
                          response
                              .getJSONArray("allControlsDataResult")
                              .getJSONObject(0)
                              .getJSONArray("WORDDATA")
                              .toString());
                    } else if (i == 2) {
                      strData.setDataName("CATAGORYDATA");
                      strData.setDataValue(
                          response
                              .getJSONArray("allControlsDataResult")
                              .getJSONObject(0)
                              .getJSONArray("CATAGORYDATA")
                              .toString());
                      //                                }else if(i==3){
                      //                                    strData.setDataName("TYPEDATA");
                      //
                      // strData.setDataValue(response.getJSONArray("allControlsDataResult").getJSONObject(0).getJSONArray("TYPEDATA").toString());
                    } else if (i == 3) {
                      strData.setDataName("STATUS");
                      strData.setDataValue(
                          response
                              .getJSONArray("allControlsDataResult")
                              .getJSONObject(0)
                              .getJSONArray("STATUS")
                              .toString());
                    }
                    db.addControllData(strData);
                  }
                } catch (JSONException e) {
                  e.printStackTrace();
                }

                AppCommon.hideDialog();

                if (message.equals("FB") || message.equals("ACT")) {
                  Intent actvI = new Intent(context, NewDashboardActivity.class);
                  actvI.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
                  // ActivityCompat.finishAffinity(LoginActivity.class);
                  context.startActivity(actvI);
                } else if (message.equals("Skip")) {
                  Intent actvI = new Intent(context, NewDashboardActivity.class);
                  context.startActivity(actvI);
                } else if (message.equals("upd")) {
                  AppCommon.showAlert("Message", "Application data updated successfully.", context);
                } else {
                  Intent actvI = new Intent(context, UserRegistrationActivity.class);
                  actvI.putExtra("mobNo", message);
                  context.startActivity(actvI);
                }
              }
            },
            new Response.ErrorListener() {
              @Override
              public void onErrorResponse(VolleyError error) {
                AppCommon.hideDialog();
                Snackbar snackbar =
                    Snackbar.make(
                        ((Activity) context).findViewById(android.R.id.content),
                        CommonDialogs.SERVER_ERROR,
                        Snackbar.LENGTH_LONG);
                ColoredSnackbar.confirm(snackbar).show();
              }
            });
    jsonObjReq.setRetryPolicy(
        new DefaultRetryPolicy(30000, -1, DefaultRetryPolicy.DEFAULT_BACKOFF_MULT));

    AppController.getInstance().addToRequestQueue(jsonObjReq, tag_json_obj);
  }
Example #21
0
 protected final HandlerManager getEventBus() {
   return appController.getEventBus();
 }
Example #22
0
  @TargetApi(Build.VERSION_CODES.HONEYCOMB)
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_after_login);
    hobtimeOptionLL = (LinearLayout) findViewById(R.id.hobtimeOptionLL);
    actionBarShareIV = (ImageView) findViewById(R.id.actionBarShareIV);
    actionBarMessagesTV = (TextView) findViewById(R.id.actionBarMessagesTV);
    actionBarShareIV.setOnClickListener(
        new View.OnClickListener() {
          @Override
          public void onClick(View v) {
            showShareDialog();
          }
        });

    actionBarMoreIV = (ImageView) findViewById(R.id.actionBarMoreIV);
    actionBarMoreIV.setOnClickListener(
        new View.OnClickListener() {
          @Override
          public void onClick(View v) {
            if (isShowingMenu) {
              isShowingMenu = false;
              hobtimeOptionLL.setVisibility(View.GONE);
            } else {
              hobtimeOptionLL.setVisibility(View.VISIBLE);
              hobtimeOptionLL.requestFocus();
              isShowingMenu = true;
            }
          }
        });
    actionBarHobtime = (RelativeLayout) findViewById(R.id.actionBarHobtime);
    afteLoginActivityHeaderTV = (TextView) findViewById(R.id.afteLoginActivityHeaderTV);
    afteLoginActivityHeaderTV.setOnClickListener(this);
    Typeface custom_font = Typeface.createFromAsset(getAssets(), "fonts/Cookies.ttf");
    afteLoginActivityHeaderTV.setTypeface(custom_font);
    shortCutViewCreateActivityTV = (TextView) findViewById(R.id.shortCutViewCreateActivityTV);
    shortCutViewCreateGroupTV = (TextView) findViewById(R.id.shortCutViewCreateGroupTV);
    shortCutViewMyProfileMyTV = (TextView) findViewById(R.id.shortCutViewMyProfileMyTV);
    shortCutViewSupportTV = (TextView) findViewById(R.id.shortCutViewSupportTV);
    shortCutViewSupportTV.setOnClickListener(this);
    shortCutViewAboutTV = (TextView) findViewById(R.id.shortCutViewAboutTV);
    shortCutViewLogoutTV = (TextView) findViewById(R.id.shortCutViewLogoutTV);
    shortCutViewLogoutTV.setOnClickListener(this);
    shortCutViewAboutTV.setOnClickListener(this);
    shortCutViewCreateActivityTV.setOnClickListener(this);
    shortCutViewCreateGroupTV.setOnClickListener(this);
    shortCutViewMyProfileMyTV.setOnClickListener(this);
    shortCutViewAboutTV.setOnClickListener(this);

    new GetMessageCountTask().execute();
    if (AppController.redirectUrl != null) {
      openNotificationPage(
          AppController.redirectUrl + "/&access_token=" + AppController.getToken(this));
    } else {
      AfterLoginFragment afterLoginFragment = AfterLoginFragment.newInstance();
      FragmentTransaction fragmentTransaction = getSupportFragmentManager().beginTransaction();
      fragmentTransaction.replace(R.id.afterLoginFragmentContainer, afterLoginFragment);
      fragmentTransaction.commit();
    }
    RelativeLayout actionBarMessagesRL = (RelativeLayout) findViewById(R.id.actionBarMessagesRL);
    actionBarMessagesRL.setOnClickListener(
        new View.OnClickListener() {
          @Override
          public void onClick(View v) {
            showShareButton();
            String requestedPage =
                Constants.NOTIFICATIONS_LINK
                    + "?access_token="
                    + AppController.getToken(AfterLoginActivity.this);
            WebViewFragment webViewFragment = WebViewFragment.newInstance(requestedPage);
            FragmentTransaction fragmentTransaction =
                getSupportFragmentManager().beginTransaction();
            fragmentTransaction.setCustomAnimations(
                R.anim.slide_in_left,
                R.anim.slide_out_right,
                R.anim.slide_in_left,
                R.anim.slide_out_right);
            fragmentTransaction.replace(R.id.afterLoginFragmentContainer, webViewFragment);
            fragmentTransaction.addToBackStack("");
            fragmentTransaction.commit();
          }
        });
  }
Example #23
0
  /** Method to fetch Feed data from appropriate API */
  private void fetchFeedData() {
    JsonArrayRequest request =
        new JsonArrayRequest(
            FEED_API_URL,
            new Response.Listener<JSONArray>() {
              @Override
              public void onResponse(JSONArray response) {
                try {
                  Cursor cursor =
                      getContentResolver()
                          .query(Contract.FeedEntry.CONTENT_URI, FEED_COLUMNS, null, null, null);
                  if (cursor == null || cursor.getCount() == response.length()) {
                    return;
                  }

                  ContentValues rows[] = new ContentValues[response.length()];
                  for (int i = 0; i < response.length(); i++) {
                    int idx = i + 1;
                    JSONObject obj = response.getJSONObject(i);

                    String feedTitle = obj.getString("text");
                    String feedTime = obj.getString("created_at");
                    String feedEvent = obj.getString("event");

                    SimpleDateFormat format =
                        new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss", Locale.ENGLISH);
                    String formattedTime = "";
                    try {
                      Date date = format.parse(feedTime);
                      SimpleDateFormat sdf = new SimpleDateFormat("EEE h:mma", Locale.ENGLISH);
                      formattedTime = sdf.format(date);
                    } catch (ParseException e) {
                      e.printStackTrace();
                    }

                    ContentValues subcategoryValues = new ContentValues();
                    subcategoryValues.put(Contract.FeedEntry._ID, idx);
                    subcategoryValues.put(Contract.FeedEntry.COLUMN_FEED_TITLE, feedTitle);
                    subcategoryValues.put(Contract.FeedEntry.COLUMN_FEED_TIME, formattedTime);
                    subcategoryValues.put(Contract.FeedEntry.COLUMN_FEED_EVENT, feedEvent);

                    int taskId = obj.getInt("task_id");
                    String taskUrl = TASK_API_URL.replace("{taskId}", Integer.toString(taskId));
                    fetchTaskData(idx, taskUrl);

                    int profileId = obj.getInt("profile_id");
                    String profileUrl =
                        PROFILE_API_URL.replace("{profileId}", Integer.toString(profileId));
                    fetchProfileData(idx, profileUrl);

                    rows[i] = subcategoryValues;
                  }
                  getContentResolver().bulkInsert(Contract.FeedEntry.CONTENT_URI, rows);
                } catch (JSONException e) {
                  showToast("Error in working with JSON: " + e.getMessage());
                }
              }
            },
            new Response.ErrorListener() {
              @Override
              public void onErrorResponse(VolleyError error) {
                showToast("VolleyError: " + error.getMessage());
              }
            });

    // Add request to the queue
    AppController.getInstance().getRequestQueue().add(request);
  }
Example #24
0
  private void loginPostRequest(String email, String password) {

    data = new JSONObject();

    try {
      data.put("UserName", email);
      data.put("Password", password);

    } catch (JSONException e) {
      e.printStackTrace();
    }

    String url = "http://altynorda.kz/SGAccountAPI/Login";

    JsonObjectRequest jsonObjectRequest =
        new JsonObjectRequest(
            Request.Method.POST,
            url,
            data,
            new Response.Listener<JSONObject>() {
              @Override
              public void onResponse(JSONObject response) {

                try {
                  //                            msg = response.getString("errors");
                  //                            Toast.makeText(getApplicationContext(), msg,
                  // Toast.LENGTH_LONG).show();

                  if (response.getBoolean("success")) {

                    // getting the token and saving in SharedPrefs
                    token = response.getString("token");

                    //                                SharedPreferences loginPref =
                    // getSharedPreferences(BaseActivity.APP_PREFERENCES, MODE_PRIVATE);

                    SharedPreferences.Editor editor = loginPrefs.edit();
                    editor.putString(BaseActivity.GAME_PREFERENCES_TOKEN, token);
                    editor.commit();

                    Toast.makeText(
                            getApplicationContext(), "Авторизация успешна", Toast.LENGTH_LONG)
                        .show();
                    progressView.stop();
                    startActivity(new Intent(LoginActivity.this, MainActivity.class));

                  } else {

                    if (!response.getString("errors").isEmpty()) {
                      String errors = response.getString("errors");
                      Toast.makeText(getApplicationContext(), errors, Toast.LENGTH_SHORT).show();
                      progressView.stop();
                    }
                    // user needs to confirm the phone number
                    if (response.getString("redirect").equals("PhoneConfirmation")) {
                      progressView.stop();
                      startActivity(
                          new Intent(LoginActivity.this, PhoneConfirmationActivity.class));
                    }
                  }
                } catch (JSONException e) {
                  e.printStackTrace();
                }
              }
            },
            new Response.ErrorListener() {
              @Override
              public void onErrorResponse(VolleyError error) {

                //                        NetworkResponse response = error.networkResponse;

                String errors = error.getMessage();
                Toast.makeText(getApplicationContext(), errors, Toast.LENGTH_LONG).show();
                progressView.stop();
              }
            }) {
          /** Passing some request headers */
          @Override
          public Map<String, String> getHeaders() throws AuthFailureError {
            HashMap<String, String> headers = new HashMap<String, String>();
            headers.put("Content-Type", "application/json; charset=utf-8");
            return headers;
          }
        };
    AppController.getInstance().addToRequestQueue(jsonObjectRequest);
  }
  public void onModuleLoad() {

    HandlerManager eventBus = new HandlerManager(null);
    AppController appController = new AppController(projectsService, eventBus);
    appController.go();
  }
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    k = 0;
    setContentView(R.layout.activity_main);
    progressBar = (ProgressBar) findViewById(R.id.progresbar);
    progressBar.setVisibility(View.VISIBLE);
    // -----------------------------------------
    // nothing!!
    ObservableScrollView scrollview = (ObservableScrollView) findViewById(R.id.scrollview);
    FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.next);
    fab.attachToScrollView(scrollview);
    ll = (LinearLayout) findViewById(R.id.ll2);

    quizname = getIntent().getStringExtra("quizname");
    url = getIntent().getStringExtra("URI");
    totalq = getIntent().getStringExtra("totalq");

    // ------------------------------------------

    toolbar = (Toolbar) findViewById(R.id.app_bar);
    toolbar.setTitleTextColor(getResources().getColor(R.color.white));
    setSupportActionBar(toolbar);
    ActionBar actionBar = getSupportActionBar();
    actionBar.setBackgroundDrawable(new ColorDrawable(getResources().getColor(R.color.teal)));
    actionBar.setTitle("ORGANIC CHEMISTRY ");
    toolbar.setNavigationIcon(getResources().getDrawable(R.drawable.ic_back_white));
    toolbar.setNavigationOnClickListener(
        new View.OnClickListener() {
          @Override
          public void onClick(View v) {
            onBackPressed(); // PB in Gap-by default given//do something
          }
        });
    // --------------------------------------------

    /*  ActionBar bar = getActionBar();
    bar.setBackgroundDrawable(new ColorDrawable(getResources().getColor(R.color.actionbar_background)));*/

    // -------------------------------------------------------------

    imageLoader = AppController.getInstance().getImageLoader();

    timer = (TextView) findViewById(R.id.timer);
    cor = (TextView) findViewById(R.id.tcorrect);
    inc = (TextView) findViewById(R.id.incorrect);
    tot = (TextView) findViewById(R.id.tot);

    Typeface myTypeface = Typeface.createFromAsset(getAssets(), "fonts/pie.ttf");
    /* cor.setTypeface(myTypeface);
    inc.setTypeface(myTypeface);
    tot.setTypeface(myTypeface);*/

    t1 = (RadioButton) findViewById(R.id.t1);
    t2 = (RadioButton) findViewById(R.id.t2);
    t3 = (RadioButton) findViewById(R.id.t3);
    t4 = (RadioButton) findViewById(R.id.t4);
    question = (TextView) findViewById(R.id.question);

    v1 = (ImageView) findViewById(R.id.v1);
    v2 = (ImageView) findViewById(R.id.v2);
    v3 = (ImageView) findViewById(R.id.v3);
    v4 = (ImageView) findViewById(R.id.v4);
    questionimage = (ImageView) findViewById(R.id.questionimage);
    questionimage2 = (ImageView) findViewById(R.id.questionimage2);
    questionimage3 = (ImageView) findViewById(R.id.questionimage3);
    questionimage4 = (ImageView) findViewById(R.id.questionimage4);

    qiarr = new ImageView[] {questionimage, questionimage2, questionimage3, questionimage4};

    next = (FloatingActionButton) findViewById(R.id.next);
    next.setOnClickListener(this);

    t1.setOnCheckedChangeListener(this);
    t2.setOnCheckedChangeListener(this);
    t3.setOnCheckedChangeListener(this);
    t4.setOnCheckedChangeListener(this);

    AlertDialog.Builder builder1;

    // AlertDialog.Builder builder;
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
      builder1 =
          new AlertDialog.Builder(
              this, android.R.style.Theme_Material_Light_Dialog_Alert); // theme problem
    } else {
      builder1 = new AlertDialog.Builder(this);
    }
    builder1.setTitle("Test Information");
    builder1.setMessage(
        "This test would have "
            + totalq
            + " questions and you would get 1 minute for each question. All the best! ;)");
    builder1.setCancelable(true); // change
    builder1.setNeutralButton(
        android.R.string.ok,
        new DialogInterface.OnClickListener() {
          public void onClick(DialogInterface dialog, int id) {
            dialog.cancel();
            getdata();
          }
        });
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1) {
      builder1.setOnDismissListener(
          new DialogInterface.OnDismissListener() {
            @Override
            public void onDismiss(DialogInterface dialog) {
              getdata();
              Log.d("ondismiss", "dismissed");
            }
          });
    }
    AlertDialog alert11 = builder1.create();
    alert11.show();
  }
  public void getdata() {
    JsonArrayRequest req =
        new JsonArrayRequest(
            url,
            new Response.Listener<JSONArray>() {
              @Override
              public void onResponse(JSONArray response) {
                Log.d(TAG, response.toString());

                jsonArray = response;
                displayData(k);
                length = jsonArray.length();
              }
            },
            new Response.ErrorListener() {
              @Override
              public void onErrorResponse(VolleyError error) {
                VolleyLog.d(TAG, "Error: " + error.getMessage());
                if (AppStatus.getInstance(getBaseContext()).isOnline()) {

                  // Toast t = Toast.makeText(getBaseContext(),"You are online!!!!",8000).show();
                  // while im connected to the internet but my app isn't responding

                  /*new Thread(new Runnable() {
                          @Override
                          public void run() {


                              --timeout;
                              Log.d("timeout_count",Integer.toString(timeout));
                              if(timeout <=0)
                              {
                                  getdata();
                              }
                              else
                              {
                                  Snackbar.make(ll, "Connection too slow!", Snackbar.LENGTH_LONG)
                                          .setAction("Refreshed", null)
                                          .setActionTextColor(getResources().getColor(R.color.lightblue))//imp
                                          .setDuration(3000).show();
                              }

                          }
                      });



                  } else {

                      Snackbar.make(ll, "Please check your internet connection!", Snackbar.LENGTH_LONG)
                              .setAction("Refreshed", null)
                              .setActionTextColor(getResources().getColor(R.color.lightblue))//imp
                              .setDuration(3000).show();
                      Log.v("Home", "############################You are not online!!!!");
                      progressBar.setVisibility(View.INVISIBLE);
                  }*/

                }

                VolleyLog.d(TAG, "Error: " + error.getMessage());
                Snackbar.make(ll, "Please check your internet connection", Snackbar.LENGTH_LONG)
                    .setAction("Refreshed", null)
                    .setActionTextColor(getResources().getColor(R.color.lightblue)) // imp
                    .setDuration(3000)
                    .show();
                progressBar.setVisibility(View.INVISIBLE);
              }
            });

    // -----------------------------prevent double posting here(double request) double countdown
    // timer updation---------------------------------------

    req.setRetryPolicy(
        new DefaultRetryPolicy(
            500000,
            DefaultRetryPolicy.DEFAULT_MAX_RETRIES,
            DefaultRetryPolicy.DEFAULT_BACKOFF_MULT));
    AppController.getInstance().addToRequestQueue(req, "feeds");
  }
  private void syncSongsWithServer(final ArrayList<Song> songListArray) throws JSONException {
    /** Function to sync device music information to server */

    // Tag used to cancel the request
    String tag_string_req = "req_syncmusic";

    Map<String, JSONObject> postParam = new HashMap<String, JSONObject>();
    for (int i = 0; i < songListArray.size(); i++) {
      JSONObject innerObject = new JSONObject();
      innerObject.put("fileTitle", songListArray.get(i).getTitle());
      innerObject.put("fileArtist", songListArray.get(i).getArtist());
      innerObject.put("fileAlbum", songListArray.get(i).getAlbum());
      innerObject.put("fileChecksum", songListArray.get(i).getChecksum());
      postParam.put(String.valueOf(i), innerObject);
    }

    JsonObjectRequest jsonObjReq =
        new JsonObjectRequest(
            Request.Method.POST,
            AppConfig.URL_SYNCMUSIC,
            new JSONObject(postParam),
            new Response.Listener<JSONObject>() {
              @Override
              public void onResponse(JSONObject response) {
                //                        general.log("MOJA MUZYKA", "Sync to database OK:
                // "+response.toString());
                try {
                  boolean error = response.getBoolean("error");

                  if (!error) {
                    String reponseMessage = response.getString("message");
                    general.log("PLAYER", "Sync to database OK: " + reponseMessage);

                  } else {
                    // Error occurred, get error message
                    // message
                    String errorMsg = response.getString("message");
                    general.log("PLAYER", "Sync to database ERROR: " + errorMsg);
                  }
                } catch (JSONException e) {
                  e.printStackTrace();
                }
              }
            },
            new Response.ErrorListener() {

              @Override
              public void onErrorResponse(VolleyError error) {
                general.log("MOJA MUZYKA", "Sync to database ERROR: " + error.getMessage());
              }
            }) {

          /** Passing some request headers */
          @Override
          public Map<String, String> getHeaders() throws AuthFailureError {
            HashMap<String, String> headers = new HashMap<String, String>();
            headers.put("AUTHORIZATION", getResources().getString(R.string.soundieApiKey));
            headers.put("Content-Type", "application/json; charset=utf-8");
            return headers;
          }
        };

    // Adding request to request queue
    AppController.getInstance().addToRequestQueue(jsonObjReq, tag_string_req);
  }
Example #29
0
 public void onModuleLoad() {
   HandlerManager eventBus = new HandlerManager(null);
   AppController a = new AppController(eventBus);
   a.go(RootPanel.get());
 }
  public void getMasterList() {
    PDialog.show(getActivity());
    StringRequest request =
        new StringRequest(
            Request.Method.POST,
            getResources().getString(R.string.url_motherland) + "customers_monthly_report.php?",
            new Response.Listener<String>() {
              @Override
              public void onResponse(String response) {
                PDialog.hide();
                Log.v("response", response);
                try {
                  JSONObject jobj = new JSONObject(response);
                  String order_report = jobj.getString("orders");
                  String order_inprogress = jobj.getString("inprogress");
                  String order_completed = jobj.getString("completed");

                  JSONArray ar = new JSONArray(order_report);
                  JSONArray ar_inprogress = new JSONArray(order_inprogress);
                  JSONArray ar_completed = new JSONArray(order_completed);
                  JSONObject obj = ar.getJSONObject(0);
                  JSONObject obj_inprogress = ar_inprogress.getJSONObject(0);
                  JSONObject obj_completed = ar_completed.getJSONObject(0);

                  monthlyOrders.add(obj.getString("jan"));
                  monthlyOrders.add(obj.getString("feb"));
                  monthlyOrders.add(obj.getString("mar"));
                  monthlyOrders.add(obj.getString("Apr"));
                  monthlyOrders.add(obj.getString("May"));
                  monthlyOrders.add(obj.getString("Jun"));
                  monthlyOrders.add(obj.getString("July"));
                  monthlyOrders.add(obj.getString("Aug"));
                  monthlyOrders.add(obj.getString("Sep"));
                  monthlyOrders.add(obj.getString("Oct"));
                  monthlyOrders.add(obj.getString("Nov"));
                  monthlyOrders.add(obj.getString("December"));

                  orders_inprogress.add(obj_inprogress.getString("jan"));
                  orders_inprogress.add(obj_inprogress.getString("feb"));
                  orders_inprogress.add(obj_inprogress.getString("mar"));
                  orders_inprogress.add(obj_inprogress.getString("Apr"));
                  orders_inprogress.add(obj_inprogress.getString("May"));
                  orders_inprogress.add(obj_inprogress.getString("Jun"));
                  orders_inprogress.add(obj_inprogress.getString("July"));
                  orders_inprogress.add(obj_inprogress.getString("Aug"));
                  orders_inprogress.add(obj_inprogress.getString("Sep"));
                  orders_inprogress.add(obj_inprogress.getString("Oct"));
                  orders_inprogress.add(obj_inprogress.getString("Nov"));
                  orders_inprogress.add(obj_inprogress.getString("December"));

                  orders_completed.add(obj_completed.getString("jan"));
                  orders_completed.add(obj_completed.getString("feb"));
                  orders_completed.add(obj_completed.getString("mar"));
                  orders_completed.add(obj_completed.getString("Apr"));
                  orders_completed.add(obj_completed.getString("May"));
                  orders_completed.add(obj_completed.getString("Jun"));
                  orders_completed.add(obj_completed.getString("July"));
                  orders_completed.add(obj_completed.getString("Aug"));
                  orders_completed.add(obj_completed.getString("Sep"));
                  orders_completed.add(obj_completed.getString("Oct"));
                  orders_completed.add(obj_completed.getString("Nov"));
                  orders_completed.add(obj_completed.getString("December"));

                  Log.v("size", monthlyOrders.size() + "");
                  //                            Log.v("line_r")

                  BuildTable(12, 3);

                } catch (Exception e) {
                  e.printStackTrace();
                }
              }
            },
            new Response.ErrorListener() {

              @Override
              public void onErrorResponse(VolleyError arg0) {
                PDialog.hide();
                Toast.makeText(
                        getActivity(),
                        getResources().getString(R.string.no_internet_access),
                        Toast.LENGTH_LONG)
                    .show();
              }
            }) {

          @Override
          protected Map<String, String> getParams() {

            Map<String, String> params = new HashMap<>();
            params.put("email", StaticVariables.database.get(0).getEmail());
            params.put("password", StaticVariables.database.get(0).getPassword());
            params.put("id", StaticVariables.database.get(0).getId());
            return params;
          }
        };
    AppController.getInstance().addToRequestQueue(request, "data_receive");
  }