Java tutorial
/** * Copyright (C) 2013-2014 EaseMob Technologies. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * http://www.apache.org/licenses/LICENSE-2.0 * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.easemob.helpdeskdemo.ui; import android.app.ProgressDialog; import android.content.Context; import android.os.Bundle; import android.view.MotionEvent; import android.view.View; import android.view.Window; import android.view.inputmethod.InputMethodManager; import android.widget.Button; import android.widget.EditText; import android.widget.RatingBar; import android.widget.RatingBar.OnRatingBarChangeListener; import android.widget.Toast; import com.easemob.EMCallBack; import com.easemob.chat.EMMessage; import com.easemob.chat.EMMessage.Type; import com.easemob.chat.KefuChatManager; import com.easemob.chat.TextMessageBody; import com.easemob.exceptions.EaseMobException; import com.easemob.helpdeskdemo.Constant; import com.easemob.helpdeskdemo.R; import org.json.JSONException; import org.json.JSONObject; public class SatisfactionActivity extends BaseActivity { private String msgId = ""; private RatingBar ratingBar = null; private Button btnSubmit = null; private EditText etContent = null; private ProgressDialog pd = null; @Override protected void onCreate(Bundle arg0) { super.onCreate(arg0); requestWindowFeature(Window.FEATURE_NO_TITLE); setContentView(R.layout.em_activity_satisfaction); msgId = getIntent().getStringExtra("msgId"); initView(); } private void initView() { ratingBar = (RatingBar) findViewById(R.id.ratingBar1); btnSubmit = (Button) findViewById(R.id.submit); etContent = (EditText) findViewById(R.id.edittext); btnSubmit.setOnClickListener(new MyClickListener()); ratingBar.setOnRatingBarChangeListener(new OnRatingBarChangeListener() { @Override public void onRatingChanged(RatingBar ratingBar, float rating, boolean fromUser) { if (rating < 1.0f) { ratingBar.setRating(1.0f); } } }); } class MyClickListener implements View.OnClickListener { @Override public void onClick(View v) { final EMMessage message = KefuChatManager.getInstance().getMessage(msgId); try { final JSONObject jsonObj = message.getJSONObjectAttribute(Constant.WEICHAT_MSG); JSONObject jsonArgs = jsonObj.getJSONObject("ctrlArgs"); final EMMessage sendMessage = EMMessage.createSendMessage(Type.TXT); String ratingBarValue = String.valueOf(ratingBar.getSecondaryProgress()); jsonArgs.put("summary", ratingBarValue); jsonArgs.put("detail", etContent.getText().toString()); JSONObject jsonSend = jsonObj; jsonSend.put("ctrlType", "enquiry"); sendMessage.setAttribute(Constant.WEICHAT_MSG, jsonSend); sendMessage.setReceipt(message.getFrom()); sendMessage.addBody(new TextMessageBody("")); pd = new ProgressDialog(SatisfactionActivity.this); pd.setMessage(getResources().getString(R.string.tip_wating)); pd.show(); KefuChatManager.getInstance().sendMessage(sendMessage, new EMCallBack() { @Override public void onSuccess() { runOnUiThread(new Runnable() { @Override public void run() { if (pd != null && pd.isShowing()) { pd.dismiss(); } KefuChatManager.getInstance().getConversation(message.getFrom()) .removeMessage(sendMessage.getMsgId()); Toast.makeText(getApplicationContext(), "?", Toast.LENGTH_SHORT).show(); setResult(RESULT_OK); finish(); } }); } @Override public void onProgress(int arg0, String arg1) { } @Override public void onError(int arg0, String arg1) { runOnUiThread(new Runnable() { @Override public void run() { if (pd != null && pd.isShowing()) { pd.dismiss(); } Toast.makeText(getApplicationContext(), R.string.tip_request_fail, Toast.LENGTH_SHORT).show(); } }); } }); } catch (JSONException e) { e.printStackTrace(); } catch (EaseMobException e) { e.printStackTrace(); } } } @Override public boolean dispatchTouchEvent(MotionEvent ev) { // Edittext if (ev.getAction() == MotionEvent.ACTION_DOWN) { View v = getCurrentFocus(); if (isShouldHideInput(v, ev)) { InputMethodManager inputManager = (InputMethodManager) getSystemService( Context.INPUT_METHOD_SERVICE); if (inputManager != null) { inputManager.hideSoftInputFromWindow(v.getWindowToken(), 0); } } return super.dispatchTouchEvent(ev); } // ????TouchEvent if (getWindow().superDispatchTouchEvent(ev)) { return true; } return onTouchEvent(ev); } private boolean isShouldHideInput(View v, MotionEvent event) { if (v != null && (v instanceof EditText)) { int[] leftTop = { 0, 0 }; // ??location? v.getLocationInWindow(leftTop); int left = leftTop[0]; int top = leftTop[1]; int bottom = top + v.getHeight(); int right = left + v.getWidth(); if (event.getX() > left && event.getX() < right && event.getY() > top && event.getY() < bottom) { // ?EditText return false; } else { return true; } } return false; } @Override protected void onDestroy() { super.onDestroy(); if (pd != null && pd.isShowing()) { pd.dismiss(); } } }