/dateLoveInternational/src/main/java/com/datelove/online/International/activity/SelfIntroduceActivity.java

https://bitbucket.org/juzhiwiscom/datelove · Java · 124 lines · 105 code · 17 blank · 2 comment · 10 complexity · 5dbdbc69a13f203ebb4f60a8ef532dd1 MD5 · raw file

  1. package com.datelove.online.International.activity;
  2. import android.content.Context;
  3. import android.os.Bundle;
  4. import android.os.Vibrator;
  5. import android.text.InputType;
  6. import android.text.TextUtils;
  7. import android.view.View;
  8. import android.widget.Button;
  9. import android.widget.EditText;
  10. import android.widget.RelativeLayout;
  11. import com.alibaba.fastjson.JSON;
  12. import com.datelove.online.International.R;
  13. import com.datelove.online.International.base.BaseTitleActivity;
  14. import com.datelove.online.International.bean.BaseModel;
  15. import com.datelove.online.International.constant.IUrlConstant;
  16. import com.datelove.online.International.utils.Utils;
  17. import com.datelove.online.International.xml.PlatformInfoXml;
  18. import com.library.utils.SharedPreferenceUtil;
  19. import com.library.utils.Util;
  20. import com.zhy.http.okhttp.OkHttpUtils;
  21. import com.zhy.http.okhttp.callback.Callback;
  22. import butterknife.BindView;
  23. import butterknife.ButterKnife;
  24. import butterknife.OnClick;
  25. import okhttp3.Call;
  26. import okhttp3.Response;
  27. public class SelfIntroduceActivity extends BaseTitleActivity {
  28. @BindView(R.id.et_introduce)
  29. EditText etIntroduce;
  30. @BindView(R.id.btn_upload)
  31. Button btnUpload;
  32. @BindView(R.id.rl_background)
  33. RelativeLayout rlBackground;
  34. @Override
  35. protected int getLayoutResId() {
  36. return R.layout.activity_self_introduce;
  37. }
  38. @Override
  39. protected String getCenterTitle() {
  40. return getString(R.string.write_introduction);
  41. }
  42. @Override
  43. protected void initViewsAndVariables() {
  44. }
  45. @Override
  46. protected void addListeners() {
  47. }
  48. @Override
  49. protected void onCreate(Bundle savedInstanceState) {
  50. super.onCreate(savedInstanceState);
  51. // TODO: add setContentView(...) invocation
  52. ButterKnife.bind(this);
  53. }
  54. @OnClick({R.id.rl_background, R.id.btn_upload,R.id.et_introduce})
  55. public void onViewClicked(View view) {
  56. switch (view.getId()) {
  57. case R.id.rl_background:
  58. rlBackground.setBackgroundDrawable(getResources().getDrawable(R.drawable.shape_introduce));
  59. break;
  60. case R.id.et_introduce:
  61. rlBackground.setBackgroundDrawable(getResources().getDrawable(R.drawable.shape_introduce));
  62. break;
  63. case R.id.btn_upload:
  64. if (etIntroduce == null || TextUtils.isEmpty(etIntroduce.getText())) {
  65. rlBackground.setBackgroundDrawable(getResources().getDrawable(R.drawable.shape_introduce_bg));
  66. Vibrator vibrator = (Vibrator) getApplicationContext().getSystemService(Context.VIBRATOR_SERVICE);
  67. vibrator.vibrate(200);
  68. } else {
  69. String content = String.valueOf(etIntroduce.getText());
  70. OkHttpUtils.post()
  71. .url(IUrlConstant.URL_UPLOAD_QA_WORDS)
  72. .addParams("platformInfo", PlatformInfoXml.getPlatformJsonString())
  73. .addParams("content", content)
  74. .build()
  75. .execute(new Callback<BaseModel>() {
  76. @Override
  77. public BaseModel parseNetworkResponse(Response response, int id) throws Exception {
  78. String resultJson = response.body().string();
  79. if (!TextUtils.isEmpty(resultJson)) {
  80. return JSON.parseObject(resultJson, BaseModel.class);
  81. }
  82. return null;
  83. }
  84. @Override
  85. public void onError(Call call, Exception e, int id) {
  86. etIntroduce.setInputType(InputType.TYPE_NUMBER_VARIATION_NORMAL);
  87. Util.gotoActivity(SelfIntroduceActivity.this, UploadAudioActivity.class, true);
  88. }
  89. @Override
  90. public void onResponse(BaseModel response, int id) {
  91. if (response != null) {
  92. String isSucceed = response.getIsSucceed();
  93. if (!TextUtils.isEmpty(isSucceed) && "1".equals(isSucceed)) {
  94. // ToastUtil.showShortToast(SelfIntroduceActivity.this,R.string.cancel_success);
  95. isSucceed = response.getIsSucceed();
  96. SharedPreferenceUtil.setBooleanValue(Utils.getContext(), "SELF_INTRODUCE", "self_introduce", true);
  97. }
  98. }
  99. etIntroduce.setInputType(InputType.TYPE_NUMBER_VARIATION_NORMAL);
  100. Util.gotoActivity(SelfIntroduceActivity.this, UploadAudioActivity.class, true);
  101. }
  102. });
  103. }
  104. break;
  105. }
  106. }
  107. }