@Override
 public boolean onContextItemSelected(MenuItem item) {
   String value = item.getIntent().getStringExtra(MENU_VALUE);
   switch (item.getItemId()) {
     case R.id.copy_ssid:
       {
         ClipboardManager clipboard =
             (ClipboardManager) getActivity().getSystemService(Context.CLIPBOARD_SERVICE);
         clipboard.setText(value);
         Toast.makeText(getActivity(), getString(R.string.msg_copied, value), Toast.LENGTH_SHORT)
             .show();
         return true;
       }
     case R.id.copy_mac:
       {
         ClipboardManager clipboard =
             (ClipboardManager) getActivity().getSystemService(Context.CLIPBOARD_SERVICE);
         clipboard.setText(value);
         Toast.makeText(getActivity(), getString(R.string.msg_copied, value), Toast.LENGTH_SHORT)
             .show();
         return true;
       }
     case R.id.use_mac:
       mCallbacks.onItemSelected(value);
       return true;
   }
   return super.onContextItemSelected(item);
 }
  public void accept(View view) {

    if (checkCorrectFill()) {

      if (atEdit) {
        Toast.makeText(this, "Product changed", Toast.LENGTH_SHORT).show();
        nutrientsDBAdapter.updateRowById(
            intent.getIntExtra(GlycemicIndexDBAdapter.KEY_ROWID, 0),
            newName.getText().toString().trim(),
            Float.parseFloat(newProteins.getText().toString()),
            Float.parseFloat(newFats.getText().toString()),
            Float.parseFloat(newCarbs.getText().toString()),
            Float.parseFloat(newCalories.getText().toString()));

        navigateBack();
      } else {
        Toast.makeText(this, "Product added", Toast.LENGTH_SHORT).show();
        // insert
        nutrientsDBAdapter.insertNewRow(
            newName.getText().toString().trim(),
            Float.parseFloat(newProteins.getText().toString()),
            Float.parseFloat(newFats.getText().toString()),
            Float.parseFloat(newCarbs.getText().toString()),
            Float.parseFloat(newCalories.getText().toString()));

        // clear forms
        newName.getEditableText().clear();
        newProteins.getEditableText().clear();
        newFats.getEditableText().clear();
        newCarbs.getEditableText().clear();
        newCalories.getEditableText().clear();
      }
    }
  }
Ejemplo n.º 3
0
 @Override
 protected void handlerData() {
   if (quoteData == null) {
     if (btnTag == 2) {
       Toast.makeText(Bill.this, "读取数据失败!请刷新或者重新设置网络。。", Toast.LENGTH_LONG).show();
       super.onPageUp();
       hiddenProgressToolBar();
       return;
     }
     fillNullCurrentPageContent(this);
     hiddenProgressToolBar();
     if (type == 1 || btnTag == 3) { // 进去页面请求 或 刷新
       Toast.makeText(Bill.this, "读取数据失败!请刷新或者重新设置网络。。", Toast.LENGTH_LONG).show();
       setToolBar(0, false, R.color.zr_dimgray);
       setToolBar(1, false, R.color.zr_dimgray);
       setToolBar(2, false, R.color.zr_dimgray);
     }
     return;
   } else {
     try {
       String res = TradeUtil.checkResult(quoteData);
       if (res != null) {
         if (!("-1").equals(res)) toast(res);
         hiddenProgressToolBar();
         return;
       }
       totalRecordCount = allRecords.length();
       fillCurrentPageContent(this);
     } catch (Exception e) {
       hiddenProgressToolBar();
     }
   }
   hiddenProgressToolBar();
   setBtnStatus();
 }
  // TODO: if uploadingComplete() when activity backgrounded, won't work.
  public void uploadingComplete(ArrayList<String> result) {

    int resultSize = result.size();
    boolean success = false;
    if (resultSize == totalCount) {
      Toast.makeText(
              this, getString(R.string.upload_all_successful, totalCount), Toast.LENGTH_SHORT)
          .show();

      success = true;
    } else {
      String s = totalCount - resultSize + " of " + totalCount;
      Toast.makeText(this, getString(R.string.upload_some_failed, s), Toast.LENGTH_LONG).show();
    }

    Intent in = new Intent();
    in.putExtra(GlobalConstants.KEY_SUCCESS, success);
    setResult(RESULT_OK, in);

    // for each path, update the status
    FileDbAdapter fda = new FileDbAdapter(this);
    fda.open();
    for (int i = 0; i < resultSize; i++) {
      Cursor c = fda.fetchFilesByPath(result.get(i), null);
      if (c != null) {
        if (c.getString(c.getColumnIndex(FileDbAdapter.KEY_STATUS))
            .equals(FileDbAdapter.STATUS_COMPLETED))
          fda.updateFile(result.get(i), FileDbAdapter.STATUS_SUBMITTED, null);
      }
    }
    fda.close();
    finish();
  }
Ejemplo n.º 5
0
 @Override
 public void onLoadPatchListenerReceiveFail(
     final File patchFile, int errorCode, final boolean isUpgrade) {
   super.onLoadPatchListenerReceiveFail(patchFile, errorCode, isUpgrade);
   switch (errorCode) {
     case ShareConstants.ERROR_PATCH_NOTEXIST:
       Toast.makeText(context, "patch file is not exist", Toast.LENGTH_LONG).show();
       break;
     case ShareConstants.ERROR_PATCH_RUNNING:
       // try later
       // only retry for upgrade patch
       if (isUpgrade) {
         handler.postDelayed(
             new Runnable() {
               @Override
               public void run() {
                 TinkerInstaller.onReceiveUpgradePatch(context, patchFile.getAbsolutePath());
               }
             },
             60 * 1000);
       }
       break;
     case Utils.ERROR_PATCH_ROM_SPACE:
       Toast.makeText(context, "rom space is not enough", Toast.LENGTH_LONG).show();
       break;
   }
   SampleTinkerReport.onTryApplyFail(errorCode);
 }
Ejemplo n.º 6
0
  @Override
  public void onClick(View v) {
    switch (v.getId()) {
      case R.id.reset_btn:
        if (reset_password1.getText().toString().trim().length() < 8) {
          Toast.makeText(this, "密码须大于8位", Toast.LENGTH_SHORT).show();
        } else if (!reset_password1
            .getText()
            .toString()
            .equals(reset_password2.getText().toString())) {
          Toast.makeText(this, "输入的两次密码不相等", Toast.LENGTH_SHORT).show();
        } else {
          HttpUtils.resetPassword(
              res,
              phone.replaceAll(" ", ""),
              reset_password2.getText().toString().replaceAll(" ", ""));
        }
        break;
      case R.id.register_back:
        super.finish();
        overridePendingTransition(R.anim.push_left_in, R.anim.push_left_out);
        break;
      case R.id.policy:
        Intent intent = new Intent(E8_ResetPwdActivity.this, E13_User_policy_Activity.class);
        startActivity(intent);
        this.overridePendingTransition(R.anim.push_right_in, R.anim.push_right_out);
        break;

      default:
        break;
    }
  }
Ejemplo n.º 7
0
  private void playFile() {
    if (playingFile == null || !playingFile.isFile()) resetPlayingFile();
    if (playingFile == null) {
      Toast.makeText(AndroidWave.this, "Cannot play file", Toast.LENGTH_SHORT).show();
      return;
    }
    if (mp != null) mp.stop();
    Log.d("file to play", playingFile.getAbsolutePath());
    mp = MediaPlayer.create(AndroidWave.this, Uri.fromFile(playingFile));
    if (mp == null) {
      Toast.makeText(AndroidWave.this, "Cannot play file", Toast.LENGTH_SHORT).show();
      return;
    }
    mp.setOnCompletionListener(
        new OnCompletionListener() {

          @Override
          public void onCompletion(MediaPlayer arg0) {
            stopPlayFile();
          }
        });
    sm.stop();
    mp.start();
    playButton.setText(R.string.stop);
    playButton.setBackgroundColor(0xFF009900);
  }
Ejemplo n.º 8
0
  /**
   * computes a geopoint the is the central geopoint between the user and the car. also it zooms so
   * both marks are visible on the map
   *
   * @author ricky barrette
   */
  protected void showBoth() {
    if (mMap != null) {
      if (mCarPoint == null) {
        Toast.makeText(getActivity(), R.string.mark_car_first, Toast.LENGTH_LONG).show();
      } else if (mMap.getUserLocation() == null) {
        Toast.makeText(getActivity(), R.string.no_gps_signal, Toast.LENGTH_LONG).show();
      } else {
        if (mMap.getMap() != null) {
          mMap.getMap().getController().stopAnimation(false);
          mMap.followUser(false);
          final GeoPoint user = mMap.getUserLocation();

          /*
           * here we null check our next set of value before we send
           * them off to geoutils if they have became null for some
           * reason we disable show both mode
           */
          if (mCarPoint != null && user != null) {
            new Thread(
                    new Runnable() {
                      @Override
                      public void run() {
                        mHandler.sendMessage(
                            mHandler.obtainMessage(MIDPOINT, GeoUtils.midPoint(mCarPoint, user)));
                      }
                    })
                .start();
          }

        } else {
          Log.e(TAG, "showBoth.mMap.getMap() is null");
        }
      }
    }
  }
Ejemplo n.º 9
0
        @Override
        public void handleMessage(Message message) {
          Bundle bundle = message.getData();

          if (bundle.containsKey("showProgressDialog")) {
            myProgressDialog =
                ProgressDialog.show(ScriptActivity.this, "Installing", "Loading", true);
          } else if (bundle.containsKey("setMessageProgressDialog")) {
            if (myProgressDialog.isShowing()) {
              myProgressDialog.setMessage(bundle.getString("setMessageProgressDialog"));
            }
          } else if (bundle.containsKey("dismissProgressDialog")) {
            if (myProgressDialog.isShowing()) {
              myProgressDialog.dismiss();
            }
          } else if (bundle.containsKey("installSucceed")) {
            Toast toast =
                Toast.makeText(getApplicationContext(), "Install Succeed", Toast.LENGTH_LONG);
            toast.show();
          } else if (bundle.containsKey("installFailed")) {
            Toast toast =
                Toast.makeText(
                    getApplicationContext(),
                    "Install Failed. Please check logs.",
                    Toast.LENGTH_LONG);
            toast.show();
          }
        }
 @Override
 protected void onPostExecute(Boolean result) {
   // marca datas disponiveis
   if (result) {
     highlightProfessionalDTOList(
         selectedDateFreeProfessionalDTOSet, unavailableProfessionalsSet);
   } else {
     selectedDateFreeProfessionalDTOSet.clear();
     screenCalendar.unselectDate(selectedDate);
     highlightProfessionalDTOList(
         selectedDateFreeProfessionalDTOSet, unavailableProfessionalsSet);
     finishDownViewLoad();
     Ping ping = new Ping();
     if (!ping.check()) {
       Toast.makeText(
               getActivity(),
               mParentActivity.getResources().getString(R.string.err_no_connection_try_again),
               Toast.LENGTH_LONG)
           .show();
     } else {
       Toast.makeText(
               getActivity(),
               mParentActivity.getResources().getString(R.string.err_toast),
               Toast.LENGTH_LONG)
           .show();
     }
   }
   finishFullViewLoad();
 }
        @Override
        public void handleMessage(Message msg) {

          if (msg != null) {
            switch (msg.what) {
              case TOAST_HANDLER_MESSAGE_SENT:
                Toast.makeText(
                        SmsReceiverService.this,
                        SmsReceiverService.this.getString(R.string.quickreply_sent_toast),
                        Toast.LENGTH_SHORT)
                    .show();
                break;
              case TOAST_HANDLER_MESSAGE_SEND_LATER:
                Toast.makeText(
                        SmsReceiverService.this,
                        SmsReceiverService.this.getString(R.string.quickreply_failed_send_later),
                        Toast.LENGTH_SHORT)
                    .show();
                break;
              case TOAST_HANDLER_MESSAGE_FAILED:
                Toast.makeText(
                        SmsReceiverService.this,
                        SmsReceiverService.this.getString(R.string.quickreply_failed),
                        Toast.LENGTH_SHORT)
                    .show();
                break;
            }
          }
        }
 @Override
 protected void onPostExecute(Boolean result) {
   // marca datas disponiveis
   if (result) {
     highlightDailyScheduleList(selectedProfFreeCalendars);
   } else {
     screenCalendar.clearHighlightedDates();
     screenCalendar.unselectDate(selectedDate);
     finishUpViewLoad();
     Ping ping = new Ping();
     if (!ping.check()) {
       Toast.makeText(
               getActivity(),
               mParentActivity.getResources().getString(R.string.err_no_connection_try_again),
               Toast.LENGTH_LONG)
           .show();
     } else {
       Toast.makeText(
               getActivity(),
               mParentActivity.getResources().getString(R.string.err_toast),
               Toast.LENGTH_LONG)
           .show();
     }
   }
   finishFullViewLoad();
 }
Ejemplo n.º 13
0
  private void setInfoFromPict(Uri imageUri) {

    Bitmap resizedBitmap = RamenUtil.getResizedBitmap(imageUri, this);
    ((ImageView) findViewById(R.id.img_ramenpict)).setImageBitmap(resizedBitmap);

    ExifInterface exifInterface = null;
    try {
      ContentResolver resolver = getContentResolver();
      Cursor cursor = resolver.query(imageUri, null, null, null, null);
      cursor.moveToFirst();
      String filepath = cursor.getString(cursor.getColumnIndex(MediaStore.MediaColumns.DATA));

      exifInterface = new ExifInterface(filepath);

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

    float[] latLong = new float[2];
    exifInterface.getLatLong(latLong);

    if (latLong[0] != 0.0f || latLong[1] != 0.0f) {
      ((EditText) findViewById(R.id.txt_lat)).setText(String.valueOf(latLong[0]));
      ((EditText) findViewById(R.id.txt_lon)).setText(String.valueOf(latLong[1]));
      Toast.makeText(this, "写真の位置情報を自動入力しました", Toast.LENGTH_SHORT).show();
    } else {
      Toast.makeText(this, "写真の位置情報が含まれていません。経度緯度を入力してください。", Toast.LENGTH_SHORT).show();
    }
  }
Ejemplo n.º 14
0
 @Override
 public void handleMessage(android.os.Message msg) {
   switch (msg.what) {
     case 0:
       String result = (String) msg.obj;
       int update_Info = JsonUtil.getUpdate_Info(result);
       if (update_Info == 0) {
         Toast.makeText(getApplicationContext(), "修改密码成功", 0).show();
         // 修改登录状态
         getSharedPreferences("Login_UserInfo", Context.MODE_PRIVATE)
             .edit()
             .putBoolean("login_type", false)
             .commit();
         Intent intent = new Intent(MineFragment_Update_Pwd.this, MineFragment_Login.class);
         startActivity(intent);
         manager.killActivity(MineFragment_Update_Pwd.this);
       } else if (update_Info == -1) {
         Toast.makeText(getApplicationContext(), "修改密码失败", 0).show();
       } else if (update_Info == -2) {
         Toast.makeText(getApplicationContext(), "用户不存在", 0).show();
       } else if (update_Info == -3) {
         Toast.makeText(getApplicationContext(), "原密码不正确", 0).show();
       }
       pb_update.setVisibility(View.INVISIBLE);
       next_ok.setClickable(true);
       break;
     default:
       break;
   }
 };
Ejemplo n.º 15
0
  public void attemptLogin() {
    String loginName = mNameView.getText().toString();
    String mPassword = mPasswordView.getText().toString();
    boolean cancel = false;
    View focusView = null;

    if (TextUtils.isEmpty(mPassword)) {
      Toast.makeText(this, getString(R.string.error_pwd_required), Toast.LENGTH_SHORT).show();
      focusView = mPasswordView;
      cancel = true;
    }

    if (TextUtils.isEmpty(loginName)) {
      Toast.makeText(this, getString(R.string.error_name_required), Toast.LENGTH_SHORT).show();
      focusView = mNameView;
      cancel = true;
    }

    if (cancel) {
      focusView.requestFocus();
    } else {
      showProgress(true);
      if (imService != null) {
        //				boolean userNameChanged = true;
        //				boolean pwdChanged = true;
        loginName = loginName.trim();
        mPassword = mPassword.trim();
        imService.getLoginManager().login(loginName, mPassword);
      }
    }
  }
  // This method will trigger on item Click of navigation menu
  @Override
  public boolean onNavigationItemSelected(MenuItem menuItem) {

    // Checking if the item is in checked state or not, if not make it in checked state
    if (menuItem.isChecked()) menuItem.setChecked(false);
    else menuItem.setChecked(true);

    // Closing drawer on item click
    drawerLayout.closeDrawers();

    // Check to see which item was being clicked and perform appropriate action
    switch (menuItem.getItemId()) {
      case R.id.option_1:
        Toast.makeText(getApplicationContext(), "Option 1 Selected", Toast.LENGTH_SHORT).show();
        launchHomeFragment();
        return true;

      case R.id.option_2:
        Toast.makeText(getApplicationContext(), "Option 2 Selected", Toast.LENGTH_SHORT).show();
        return true;
      case R.id.option_3:
        Toast.makeText(getApplicationContext(), "Option 3 Selected", Toast.LENGTH_SHORT).show();
        return true;
      default:
        Toast.makeText(getApplicationContext(), "Somethings Wrong", Toast.LENGTH_SHORT).show();
        return true;
    }
  }
Ejemplo n.º 17
0
  public void apply(View v) {
    // read raw values from the input widgets
    master_switch = switch_master_switch.isChecked();
    left_margin = Integer.parseInt(ET_left_margin.getText().toString());
    right_margin = Integer.parseInt(ET_right_margin.getText().toString());
    top_margin = Integer.parseInt(ET_top_margin.getText().toString());
    bottom_margin = Integer.parseInt(ET_bottom_margin.getText().toString());

    // save the values
    Editor editor = pref.edit();
    editor.putBoolean(Keys.MASTER_SWITCH, master_switch);
    editor.putInt(Keys.LEFT_MARGIN, left_margin);
    editor.putInt(Keys.RIGHT_MARGIN, right_margin);
    editor.putInt(Keys.TOP_MARGIN, top_margin);
    editor.putInt(Keys.BOTTOM_MARGIN, bottom_margin);
    editor.apply();

    int viewH = (screen_height - top_margin - bottom_margin);
    Log.d("VIEW H", Integer.toString(viewH));

    int viewW = screen_width - left_margin - right_margin;
    Log.d("VIEW W", Integer.toString(viewW));

    Toast.makeText(this, "Changes applied!", Toast.LENGTH_SHORT).show();
    if (viewW < screen_width * 0.5 || viewH < screen_height * 0.5)
      Toast.makeText(this, "Warning, the view area may be too small!", Toast.LENGTH_LONG).show();
    if (left_margin > screen_width
        || top_margin > screen_height
        || right_margin < 0
        || bottom_margin < 0)
      Toast.makeText(this, "Your view area goes off the screen!", Toast.LENGTH_LONG).show();

    finish();
  }
Ejemplo n.º 18
0
  @SuppressWarnings("StatementWithEmptyBody")
  @Override
  public boolean onNavigationItemSelected(MenuItem item) {
    // Handle navigation view item clicks here.
    int id = item.getItemId();

    if (id == R.id.nav_camara) {
      // Handle the camera action
    } else if (id == R.id.nav_gallery) {

      Toast.makeText(getApplicationContext(), "Galeria", Toast.LENGTH_SHORT).show();

    } else if (id == R.id.nav_slideshow) {

      Toast.makeText(getApplicationContext(), "Slideshow", Toast.LENGTH_SHORT).show();

    } else if (id == R.id.nav_manage) {

      Toast.makeText(getApplicationContext(), "Manage", Toast.LENGTH_SHORT).show();

    } else if (id == R.id.nav_share) {

      Toast.makeText(getApplicationContext(), "Share", Toast.LENGTH_SHORT).show();

    } else if (id == R.id.nav_send) {

      Toast.makeText(getApplicationContext(), "Send", Toast.LENGTH_SHORT).show();
    }

    DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
    drawer.closeDrawer(GravityCompat.START);
    return true;
  }
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    getActionBar().setTitle(R.string.title_devices);
    mHandler = new Handler();

    // Use this check to determine whether BLE is supported on the device.  Then you can
    // selectively disable BLE-related features.
    if (!getPackageManager().hasSystemFeature(PackageManager.FEATURE_BLUETOOTH_LE)) {
      Toast.makeText(this, R.string.ble_not_supported, Toast.LENGTH_SHORT).show();
      finish();
    }

    // Initializes a Bluetooth adapter.  For API level 18 and above, get a reference to
    // BluetoothAdapter through BluetoothManager.
    final BluetoothManager bluetoothManager =
        (BluetoothManager) getSystemService(Context.BLUETOOTH_SERVICE);
    mBluetoothAdapter = bluetoothManager.getAdapter();

    // Checks if Bluetooth is supported on the device.
    if (mBluetoothAdapter == null) {
      Toast.makeText(this, R.string.error_bluetooth_not_supported, Toast.LENGTH_SHORT).show();
      finish();
      return;
    }

    Log.i("SCAN", "" + mBluetoothAdapter.isMultipleAdvertisementSupported());
    Log.i("SCAN", "" + mBluetoothAdapter.isOffloadedFilteringSupported());
    Log.i("SCAN", "" + mBluetoothAdapter.isOffloadedScanBatchingSupported());
  }
  // ------------------------------------------------------------------------------------------
  private void selectErrorMessageToShow(int statusCode) {

    switch (statusCode) {
      case 400:

      case 401:

      case 403:

      case 404:
        Toast.makeText(this, ErrorMessage.ERROR_MESSAGE_INPUT, Toast.LENGTH_SHORT).show();
        break;

      case 500:
        Toast.makeText(this, ErrorMessage.ERROR_MESSAGE_SERVER, Toast.LENGTH_SHORT).show();
        break;

      case 502:
        Toast.makeText(this, ErrorMessage.ERROR_MESSAGE_BADGATEWAY, Toast.LENGTH_SHORT).show();
        break;

      case 503:
        Toast.makeText(this, ErrorMessage.ERROR_MESSAGE_SERVICE_UNAVAILABLE, Toast.LENGTH_SHORT)
            .show();
        break;

      default:
        Toast.makeText(this, ErrorMessage.ERROR_MESSAGE_INPUT, Toast.LENGTH_SHORT).show();
        break;
    }
  }
  void stopRecord() {
    recording = false;
    sendBroadcast(new Intent(C.actionSetIconRecord));
    try {
      mW.flush();
      mW.close();
      mW = null;

      // http://stackoverflow.com/questions/13737261/nexus-4-not-showing-files-via-mtp
      //			MediaScannerConnection.scanFile(this, new String[] { mFile.getAbsolutePath() }, null,
      // null);
      // http://stackoverflow.com/questions/5739140/mediascannerconnection-produces-android-app-serviceconnectionleaked
      sendBroadcast(new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE).setData(Uri.fromFile(mFile)));

      Toast.makeText(
              this,
              new StringBuilder()
                  .append(getString(R.string.app_name))
                  .append("Record-")
                  .append(getDate())
                  .append(".csv ")
                  .append(getString(R.string.notify_toast_saved)),
              Toast.LENGTH_LONG)
          .show();
    } catch (Exception e) {
      e.printStackTrace();
      Toast.makeText(
              this,
              getString(R.string.notify_toast_error) + " " + e.getMessage(),
              Toast.LENGTH_LONG)
          .show();
    }
    topRow = true;
    mNM.notify(10, mNotificationRead);
  }
        @Override
        public boolean onLongClick(View v) {

          int nBtnID = v.getId();
          // If the mode is not changed, open the setting view. If the mode is same, close the
          // setting view.
          if (nBtnID == mPenBtn.getId()) {
            mSCanvas.setSettingViewSizeOption(
                SCanvasConstants.SCANVAS_SETTINGVIEW_PEN,
                SCanvasConstants.SCANVAS_SETTINGVIEW_SIZE_MINI);
            if (mSCanvas.getCanvasMode() == SCanvasConstants.SCANVAS_MODE_INPUT_PEN) {
              mSCanvas.toggleShowSettingView(SCanvasConstants.SCANVAS_SETTINGVIEW_PEN);
            } else {
              mSCanvas.setCanvasMode(SCanvasConstants.SCANVAS_MODE_INPUT_PEN);
              mSCanvas.showSettingView(SCanvasConstants.SCANVAS_SETTINGVIEW_PEN, true);
              updateModeState();
            }
            return true;
          } else if (nBtnID == mEraserBtn.getId()) {
            mSCanvas.setSettingViewSizeOption(
                SCanvasConstants.SCANVAS_SETTINGVIEW_ERASER,
                SCanvasConstants.SCANVAS_SETTINGVIEW_SIZE_MINI);
            if (mSCanvas.getCanvasMode() == SCanvasConstants.SCANVAS_MODE_INPUT_ERASER) {
              mSCanvas.toggleShowSettingView(SCanvasConstants.SCANVAS_SETTINGVIEW_ERASER);
            } else {
              mSCanvas.setCanvasMode(SCanvasConstants.SCANVAS_MODE_INPUT_ERASER);
              mSCanvas.showSettingView(SCanvasConstants.SCANVAS_SETTINGVIEW_ERASER, true);
              updateModeState();
            }
            return true;
          } else if (nBtnID == mTextBtn.getId()) {
            mSCanvas.setSettingViewSizeOption(
                SCanvasConstants.SCANVAS_SETTINGVIEW_TEXT,
                SCanvasConstants.SCANVAS_SETTINGVIEW_SIZE_MINI);
            if (mSCanvas.getCanvasMode() == SCanvasConstants.SCANVAS_MODE_INPUT_TEXT) {
              mSCanvas.toggleShowSettingView(SCanvasConstants.SCANVAS_SETTINGVIEW_TEXT);
            } else {
              mSCanvas.setCanvasMode(SCanvasConstants.SCANVAS_MODE_INPUT_TEXT);
              mSCanvas.showSettingView(SCanvasConstants.SCANVAS_SETTINGVIEW_TEXT, true);
              updateModeState();
              Toast.makeText(mContext, "Tap Canvas to insert Text", Toast.LENGTH_SHORT).show();
            }
            return true;
          } else if (nBtnID == mFillingBtn.getId()) {
            mSCanvas.setSettingViewSizeOption(
                SCanvasConstants.SCANVAS_SETTINGVIEW_FILLING,
                SCanvasConstants.SCANVAS_SETTINGVIEW_SIZE_MINI);
            if (mSCanvas.getCanvasMode() == SCanvasConstants.SCANVAS_MODE_INPUT_FILLING) {
              mSCanvas.toggleShowSettingView(SCanvasConstants.SCANVAS_SETTINGVIEW_FILLING);
            } else {
              mSCanvas.setCanvasMode(SCanvasConstants.SCANVAS_MODE_INPUT_FILLING);
              mSCanvas.showSettingView(SCanvasConstants.SCANVAS_SETTINGVIEW_FILLING, true);
              updateModeState();
              Toast.makeText(mContext, "Tap Canvas to fill color", Toast.LENGTH_SHORT).show();
            }
            return true;
          }

          return false;
        }
 public void doAfterPostSuccess(String s, int articleId) {
   if (s.equals("IOException")) {
     Toast.makeText(
             getActivity().getApplicationContext(),
             "Server not available, please contact application owner",
             Toast.LENGTH_SHORT)
         .show();
     mAdapter.notifyDataSetChanged();
     swipeLayout.setRefreshing(false);
     return;
   }
   addNewArticleToUser(s, articleId);
   done++;
   Log.d("SVF", "Done " + done + " out of " + topics.length());
   if (done == topics.length()) {
     swipeLayout.setRefreshing(false);
     ValuesAndUtil.getInstance().saveUserData(user, getActivity().getApplicationContext());
     try {
       JSONArray sortedTopics =
           ValuesAndUtil.getInstance().sortTopicsArray(user.getJSONArray("topics"));
       user.put("topics", sortedTopics);
       ValuesAndUtil.getInstance().saveUserData(user, getActivity().getApplicationContext());
       mAdapter = new StoriesViewAdapter(sortedTopics);
       if (numUpdated == 0) {
         Toast.makeText(getActivity(), "No updates found for any stories", Toast.LENGTH_SHORT)
             .show();
       }
     } catch (JSONException e) {
       e.printStackTrace();
     }
     mRecyclerView.setAdapter(mAdapter);
     Log.d("SVF", "Finished updating all articles");
   }
 }
Ejemplo n.º 24
0
  /**
   * Wipe the device.
   *
   * @param code - Operation code.
   * @param data - Data required by the operation(PIN).
   */
  public void wipeDevice(String code, String data) {
    String inputPin;
    String savedPin = Preference.getString(context, resources.getString(R.string.shared_pref_pin));

    try {
      JSONObject wipeKey = new JSONObject(data);
      inputPin = (String) wipeKey.get(resources.getString(R.string.shared_pref_pin));
      String status;
      if (inputPin.trim().equals(savedPin.trim())) {
        status = resources.getString(R.string.shared_pref_default_status);
      } else {
        status = resources.getString(R.string.shared_pref_false_status);
      }

      resultBuilder.build(code, status);

      if (inputPin.trim().equals(savedPin.trim())) {
        Toast.makeText(context, resources.getString(R.string.toast_message_wipe), Toast.LENGTH_LONG)
            .show();
        try {
          Thread.sleep(PRE_WIPE_WAIT_TIME);
        } catch (InterruptedException e) {
          Log.e(TAG, "Wipe pause interrupted :" + e.toString());
        }
        devicePolicyManager.wipeData(ACTIVATION_REQUEST);
      } else {
        Toast.makeText(
                context, resources.getString(R.string.toast_message_wipe_failed), Toast.LENGTH_LONG)
            .show();
      }
    } catch (JSONException e) {
      Log.e(TAG, "Invalid JSON format." + e);
    }
  }
Ejemplo n.º 25
0
 public void refreshWeather(int flag, boolean isAuto, boolean broadcast) {
   if (!Help.networkState(mContext) && !broadcast) {
     Log.d(TAG, "network is disabled");
     return;
   }
   SharedPreferences preferences =
       mContext.getSharedPreferences("controller", Context.MODE_PRIVATE);
   long lastTime = preferences.getLong("last_time_fetch_datas", 0);
   boolean isSuccess = preferences.getBoolean("update_success", true);
   if (System.currentTimeMillis() - lastTime > 1000 * 3600 * 2) {
     updateWeather(flag, preferences);
   } else if (System.currentTimeMillis() - lastTime <= 1000 * 3600 * 2 && isSuccess && !isAuto) {
     Toast.makeText(
             mContext,
             "It's unnecessary to update so frequently. Updating every 2h maybe is better.",
             Toast.LENGTH_SHORT)
         .show();
   } else if (System.currentTimeMillis() - lastTime <= 1000 * 10 && !isSuccess && !isAuto) {
     Toast.makeText(
             mContext, "Last update was fail. Just wait another ten second!", Toast.LENGTH_SHORT)
         .show();
   } else if (System.currentTimeMillis() - lastTime > 1000 * 10 && !isSuccess) {
     updateWeather(flag, preferences);
   } else if (System.currentTimeMillis() - lastTime > 1000 * 3600 * 3 && broadcast) {
     updateWeather(flag, preferences);
   }
   //        else if (broadcast && System.currentTimeMillis() - lastTime > 1000 * 3600 * 2) {
   //            updateWeather(flag, preferences);
   //        }
 }
 @Override
 protected void onActivityResult(int requestCode, int resultCode, Intent data) {
   // Check which request we're responding to
   if (requestCode == Tango.TANGO_INTENT_ACTIVITYCODE) {
     Log.i(TAG, "Triggered");
     // Make sure the request was successful
     if (resultCode == RESULT_CANCELED) {
       Toast.makeText(this, R.string.motiontrackingpermission, Toast.LENGTH_LONG).show();
       finish();
       return;
     }
     try {
       setTangoListeners();
     } catch (TangoErrorException e) {
       Toast.makeText(this, R.string.TangoError, Toast.LENGTH_SHORT).show();
     } catch (SecurityException e) {
       Toast.makeText(
               getApplicationContext(), R.string.motiontrackingpermission, Toast.LENGTH_SHORT)
           .show();
     }
     try {
       mTango.connect(mConfig);
       mIsTangoServiceConnected = true;
     } catch (TangoOutOfDateException outDateEx) {
       if (mTangoUx != null) {
         mTangoUx.showTangoOutOfDate();
       }
     } catch (TangoErrorException e) {
       Toast.makeText(getApplicationContext(), R.string.TangoError, Toast.LENGTH_SHORT).show();
     }
     setUpExtrinsics();
   }
 }
Ejemplo n.º 27
0
 @Override
 public void onTaskFinished(String response) {
   progress.cancel();
   if (response == null) {
     Toast.makeText(this, "An error has occured.", Toast.LENGTH_LONG).show();
     onResume();
     return;
   } else if (response == LocationHelper.LOCATION_FAILED) {
     Toast.makeText(this, "Unable to determine your location.", Toast.LENGTH_LONG).show();
     onResume();
     return;
   }
   Document doc = Jsoup.parse(response);
   if (doc.title().contains("Route")) {
     RouteActivity.start(HomeActivity.this, response);
   } else if (doc.title().contains("Stop")) {
     System.out.println(doc.title());
   } else if (response.contains("Did you mean?")
       && (response.contains("class=\"routeList\"")
           || response.contains("class=\"ambiguousLocations\""))) {
     new DidYouMeanDialog()
         .newInstance(this, response)
         .show(getSupportFragmentManager(), "com.steelhawks.hawkscout.DID_YOU_MEAN_DIALOG");
   } else if (response.contains("<h3>Nearby Stops:</h3>")) {
     NearbyStopsActivity.start(this, response);
   } else {
     new NoResultsDialog()
         .show(getSupportFragmentManager(), "com.steelhawks.hawkscout.NO_RESULTS");
     onResume();
   }
 }
  private void setUpExtrinsics() {
    // Set device to imu matrix in Model Matrix Calculator.
    TangoPoseData device2IMUPose = new TangoPoseData();
    TangoCoordinateFramePair framePair = new TangoCoordinateFramePair();
    framePair.baseFrame = TangoPoseData.COORDINATE_FRAME_IMU;
    framePair.targetFrame = TangoPoseData.COORDINATE_FRAME_DEVICE;
    try {
      device2IMUPose = mTango.getPoseAtTime(0.0, framePair);
    } catch (TangoErrorException e) {
      Toast.makeText(getApplicationContext(), R.string.TangoError, Toast.LENGTH_SHORT).show();
    }
    mRenderer
        .getModelMatCalculator()
        .SetDevice2IMUMatrix(
            device2IMUPose.getTranslationAsFloats(), device2IMUPose.getRotationAsFloats());

    // Set color camera to imu matrix in Model Matrix Calculator.
    TangoPoseData color2IMUPose = new TangoPoseData();

    framePair.baseFrame = TangoPoseData.COORDINATE_FRAME_IMU;
    framePair.targetFrame = TangoPoseData.COORDINATE_FRAME_CAMERA_COLOR;
    try {
      color2IMUPose = mTango.getPoseAtTime(0.0, framePair);
    } catch (TangoErrorException e) {
      Toast.makeText(getApplicationContext(), R.string.TangoError, Toast.LENGTH_SHORT).show();
    }
    mRenderer
        .getModelMatCalculator()
        .SetColorCamera2IMUMatrix(
            color2IMUPose.getTranslationAsFloats(), color2IMUPose.getRotationAsFloats());
  }
Ejemplo n.º 29
0
    public void onLocationChanged(Location location) {

      String message =
          String.format(
              "New Location \n Longitude: %1$s \n Latitude: %2$s",
              location.getLongitude(), location.getLatitude());
      Toast.makeText(MainActivity.this, message, Toast.LENGTH_LONG).show();
      if (Math.abs(oldlat - location.getLatitude()) + Math.abs(oldlong - location.getLongitude())
          > 0) ;
      oldlat = location.getLatitude();
      oldlong = location.getLongitude();

      dbh.addPlace(oldlat, oldlong, 2.2);
      Toast.makeText(MainActivity.this, "Newer", Toast.LENGTH_LONG).show();
      List<location> contacts = dbh.getAllplaces();
      location newc = new location();
      newc.setlong("6.9");
      newc.setlat("9.6");
      newc.ID = 5;
      newc.radius = 2.0;
      dbh.deleteplace(newc);
      for (location cn : contacts) {
        Toast.makeText(MainActivity.this, "" + cn.getlat(), Toast.LENGTH_LONG).show();
      }
    }
Ejemplo n.º 30
0
    @Override
    protected void onPostExecute(Object result) {
      if (destroyed) return;

      findViewById(R.id.wishbox_progress_container).setVisibility(View.GONE);

      if (result != null) {
        findViewById(R.id.content).setVisibility(View.VISIBLE);
        if (result instanceof Object[]) {
          Object[] arr = (Object[]) result;
          setWishes((ArrayList<Coupon>) arr[0]);
        }
      } else {
        if (CommonLib.isNetworkAvailable(mContext)) {
          Toast.makeText(
                  mContext,
                  mContext.getResources().getString(R.string.error_try_again),
                  Toast.LENGTH_SHORT)
              .show();
        } else {
          Toast.makeText(
                  mContext,
                  getResources().getString(R.string.no_internet_message),
                  Toast.LENGTH_SHORT)
              .show();

          findViewById(R.id.empty_view).setVisibility(View.VISIBLE);

          findViewById(R.id.content).setVisibility(View.GONE);
        }
      }
    }