/**
* Copyright (C) 2016 Hyphenate Inc. 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.fanxin.huangfangyi.ui;
import java.util.List;
import android.os.Bundle;
import android.view.View;
import android.widget.ListView;
import com.fanxin.huangfangyi.R;
import com.fanxin.huangfangyi.adapter.NewFriendsMsgAdapter;
import com.fanxin.huangfangyi.db.InviteMessgeDao;
import com.fanxin.huangfangyi.domain.InviteMessage;
/**
* Application and notification
*
*/
public class NewFriendsMsgActivity extends BaseActivity {
private ListView listView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.em_activity_new_friends_msg);
listView = (ListView) findViewById(R.id.list);
InviteMessgeDao dao = new InviteMessgeDao(this);
List<InviteMessage> msgs = dao.getMessagesList();
NewFriendsMsgAdapter adapter = new NewFriendsMsgAdapter(this, 1, msgs);
listView.setAdapter(adapter);
dao.saveUnreadMessageCount(0);
}
public void back(View view) {
finish();
}
}