@Override public void onClick(View inButton) { boolean isErr = false; if (mTitle.getText().toString().length() == 0) { mTitle.setError("Required"); mTitle.setEms(10); isErr = true; } if (mDesc.getText().toString().length() == 0) { mDesc.setActivated(true); mDesc.setError("Required"); isErr = true; } if (inButton.getId() == openWeb.getId()) web.setVisibility(View.VISIBLE); else if (inButton.getId() == mAvail.getId()) startActivity(new Intent(this, CheckActivity.class)); else if (inButton.getId() == mBack.getId()) finish(); else if (inButton.getId() == mSub.getId()) { AlertDialog.Builder al = new AlertDialog.Builder(this); if (isErr) return; else al.setTitle("Continue?") .setIcon(R.drawable.ornament) .setMessage("Your listing is going to be submitted to your chosen category.") .setPositiveButton( "OK", new DialogInterface.OnClickListener() { public void onClick(DialogInterface d, int x) { payment = new ArrayList<String>(); if (mCard.isChecked()) payment.add("Card"); if (mCheck.isChecked()) payment.add("Check"); if (mOnline.isChecked()) payment.add("Online"); if (mCash.isChecked()) payment.add("Cash"); // Toast.makeText(getApplicationContext(), payment.toString(), // Toast.LENGTH_LONG).show(); Intent intent = new Intent(getApplicationContext(), StartActivity.class); intent.putExtra("Payment", payment); intent.putExtra("Category", mChosenCategory); intent.putExtra("Title", mTitle.getText().toString()); intent.putExtra("Price", mPrice.getText().toString()); intent.putExtra("Description", mDesc.getText().toString()); intent.putExtra("Location", mLocation.getText().toString()); intent.putExtra("Photo", jpegData); startActivity(intent); } }) .setNegativeButton( "Cancel", new DialogInterface.OnClickListener() { public void onClick(DialogInterface d, int x) {} }) .show(); } else startActivityForResult( new Intent(this, com.lightbox.android.camera.activities.Camera.class), REQ); }
public void tryLogin() { mName = mEtAccount.getText().toString(); mPassword = mEtPassword.getText().toString(); if (mName.equals("") || mPassword.length() < 5) { // Please Specify Your Name and Sex" Toast.makeText( MainActivity.this, "Please Specify Your Name and Password correctly", Toast.LENGTH_LONG) .show(); } else { mUserInfo = new UserInfo(mName, 0, 0, 0, 0, 0, 0); /* if mNetcon is connected already, close it first */ /* here we use try because mNetCon might not have been instantiated yet */ /* try { NetConnect.getnetConnect().closeNetConnect(); } catch (Exception e) {} try { InitData.closeInitData(); FriendListInfo.closeFriendListInfo(); ChatServiceData.closeChatServiceData(); } catch (Exception e) {} */ CloseAll.closeAll(); /* to establish a new connect */ NetworkService.getInstance().onInit(this); NetworkService.getInstance().setupConnection(); if (NetworkService.getInstance().getIsConnected()) { String usrInfo = mUserInfo.toString() + GlobalStrings.signinDivider + mPassword + GlobalStrings.signinDivider; NetworkService.getInstance().sendUpload(GlobalMsgTypes.msgHandShake, usrInfo); } else { NetworkService.getInstance().closeConnection(); Toast.makeText(this, "failed to connect to Server", Toast.LENGTH_LONG).show(); return; } InitData initData = InitData.getInitData(); initData.start(); try { initData.join(); } catch (Exception e) { } mUserInfo = initData.getUserInfo(); Log.d( "connectedApp isonline : ", "" + mUserInfo.getIsOnline() + "+++++++++++++" + "+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++"); if (mUserInfo.getId() < 0) { Toast.makeText(this, "invalid username or password", Toast.LENGTH_SHORT).show(); return; } Log.d( "connectedApp isonline : ", "" + mUserInfo.getIsOnline() + "+++++++++++++" + "+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++"); ConnectedApp connected_app0 = ConnectedApp.getInstance(); // connected_app0.setConnect(mNetCon); connected_app0.setUserInfo(mUserInfo); connected_app0.clearListActivity(); connected_app0.instantiateListActivity(); Intent intent0 = new Intent(MainActivity.this, MainBodyActivity.class); // intent0.putExtra("username", mUserInfo.getName()); // intent0.putExtra("usersex", mUserInfo.getSex()); startActivity(intent0); finish(); } }