您的位置:首页 > 其它

聊天(环信)

2016-05-30 09:37 260 查看
在聊天的界面应该创建一个activity,然后再写一个application(别忘了继承),然后导入IMsdk(环信)

这是在activity中继承fragmentactivity;

package com.example.markingfriends;

import android.os.Bundle;

import android.support.v4.app.FragmentActivity;

import com.hyphenate.easeui.EaseConstant;

import com.hyphenate.easeui.ui.EaseChatFragment;

public class CallActivity extends FragmentActivity {

    

    @Override

    protected void onCreate(Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);

        setContentView(R.layout.call_activity);

        //new出EaseChatFragment或其子类的实例

         EaseChatFragment chatFragment = new EaseChatFragment();

         //传入参数

         Bundle args = new Bundle();

         args.putInt(EaseConstant.EXTRA_CHAT_TYPE, EaseConstant.CHATTYPE_GROUP);

         args.putString(EaseConstant.EXTRA_USER_ID, "zw123");

         chatFragment.setArguments(args);

         getSupportFragmentManager().beginTransaction().add(R.id.fl_call_fl, chatFragment).commit();

        }

        

    }

在创建一个application;

package com.example.adapter;

import android.app.Application;

import com.hyphenate.chat.EMOptions;

import com.hyphenate.easeui.controller.EaseUI;

public class App extends Application{

    @Override

    public void onCreate() {

        super.onCreate();

        

        EMOptions options = new EMOptions();

        // 默认添加好友时,是不需要验证的,改成需要验证

        options.setAcceptInvitationAlways(false);

        

        EaseUI.getInstance().init(getApplicationContext(), options);

        

    }

}

XML布局

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

    android:layout_width="match_parent"

    android:layout_height="match_parent"

    android:orientation="vertical" >

    

    <FrameLayout

        android:id="@+id/fl_call_fl"

        android:layout_width="match_parent"

        android:layout_height="match_parent"

        ></FrameLayout>

    

</LinearLayout>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: