/** * 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.chatuidemo.activity; import java.util.List; import android.content.SharedPreferences; import android.os.Bundle; import android.view.View; import android.widget.ListView; import android.widget.RelativeLayout; import com.easemob.chatuidemo.Constant; import com.easemob.chatuidemo.adapter.NewFriendsMsgAdapter; import com.easemob.chatuidemo.db.InviteMessgeDao; import com.easemob.chatuidemo.domain.InviteMessage; import com.qingmu.jianzhidaren.R; import com.quark.jianzhidaren.ApplicationControl; /** * 申请与通知 * */ public class NewFriendsMsgActivity extends BaseActivity { private ListView listView; private RelativeLayout topLayout; private SharedPreferences sp; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_new_friends_msg); topLayout = (RelativeLayout) findViewById(R.id.title); sp = getSharedPreferences("jrdr.setting", MODE_PRIVATE); topLayout.setBackgroundColor(getResources().getColor( R.color.guanli_common_color)); listView = (ListView) findViewById(R.id.list); InviteMessgeDao dao = new InviteMessgeDao(this); List<InviteMessage> msgs = dao.getMessagesList(); // 设置adapter NewFriendsMsgAdapter adapter = new NewFriendsMsgAdapter(this, 1, msgs); listView.setAdapter(adapter); ApplicationControl.getInstance().getContactList() .get(Constant.NEW_FRIENDS_USERNAME).setUnreadMsgCount(0); } public void back(View view) { finish(); } }