protected void listViewItemClick(AdapterView parent, View view, int position, long id) {
   Intent intent = new Intent(getActivity(), BrowserWeiboMsgActivity.class);
   intent.putExtra("token", token);
   intent.putExtra("msg", bean.getItem(position));
   startActivity(intent);
 }