update
This commit is contained in:
parent
4dbcd36f56
commit
c4473f2b16
@ -143,6 +143,7 @@
|
||||
android:windowSoftInputMode="stateHidden|adjustResize" />
|
||||
<activity
|
||||
android:name=".activity.WebViewActivity"
|
||||
android:launchMode="singleTask"
|
||||
android:screenOrientation="portrait"
|
||||
android:windowSoftInputMode="stateHidden|adjustResize" />
|
||||
<activity
|
||||
@ -175,11 +176,14 @@
|
||||
android:windowSoftInputMode="stateHidden|adjustResize" />
|
||||
<activity
|
||||
android:name=".activity.message.CallVideoActivity"
|
||||
android:launchMode="singleTask"
|
||||
android:hardwareAccelerated="true"
|
||||
android:screenOrientation="portrait"
|
||||
android:windowSoftInputMode="stateHidden|adjustResize" />
|
||||
<activity
|
||||
android:name=".activity.message.CallAudioActivity"
|
||||
android:launchMode="singleTask"
|
||||
android:hardwareAccelerated="true"
|
||||
android:screenOrientation="portrait"
|
||||
android:windowSoftInputMode="stateHidden|adjustResize" />
|
||||
<activity
|
||||
|
@ -725,7 +725,7 @@ public class ChatMessageFragment extends AbsConversationFragment {
|
||||
public void onItemClick(String bean, int position) {
|
||||
if (bean.equals(WordUtil.getNewString(R.string.copy))) {
|
||||
copyText(data);
|
||||
} else {
|
||||
} else if(bean.equals(WordUtil.getNewString(R.string.delete))){
|
||||
delete(data);
|
||||
}
|
||||
}
|
||||
|
@ -15,7 +15,7 @@ import io.rong.common.ParcelUtils;
|
||||
import io.rong.imlib.MessageTag;
|
||||
import io.rong.imlib.model.MessageContent;
|
||||
|
||||
@MessageTag(value = "MessageChatGiftContent", flag = MessageTag.ISPERSISTED)
|
||||
@MessageTag(value = "MessageChatGiftContent", flag = MessageTag.ISCOUNTED)
|
||||
public class MessageChatGiftContent extends MessageContent implements Parcelable {
|
||||
private String gift;
|
||||
private String number;
|
||||
|
@ -40,6 +40,7 @@ public class CustomConversationProvider extends BaseConversationProvider {
|
||||
}
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
|
||||
holder.getView(R.id.sex).setVisibility(View.GONE);
|
||||
}
|
||||
|
||||
|
@ -32,7 +32,7 @@ public class MsgCheckUtils {
|
||||
@Override
|
||||
public void onSuccess(UserBean data) {
|
||||
if (data.getInfo().getName_auth() == 2) {
|
||||
listener.onSuccess("", null);
|
||||
//listener.onSuccess("", null);
|
||||
} else if (data.getInfo().getName_auth() == 3) {
|
||||
listener.onError(data.getInfo().getName_auth(), "當前正在審核中,請耐心等待");
|
||||
}else {
|
||||
|
@ -76,7 +76,7 @@ public class RongcloudIMManager {
|
||||
mListener = listener;
|
||||
IMCenter.getInstance().addOnReceiveMessageListener(listener);
|
||||
//设置消息拦截器
|
||||
IMCenter.getInstance().setMessageInterceptor(new PDMessageInterceptor());
|
||||
//IMCenter.getInstance().setMessageInterceptor(new PDMessageInterceptor());
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user