|
如题。
// 文件传输回调函数定义
private void OnTransFileCallBack(int userid, String filename, String tempfilepath, int filelength, int wparam, int lparam, int taskid)
{
Message tMsg=new Message();
Bundle tBundle=new Bundle();
tBundle.putInt("HANDLETYPE", HANDLE_TYPE_TRANSFILE);
tBundle.putInt("USERID", userid);
tBundle.putString("FILENAME", filename);
tBundle.putString("TEMPFILE", tempfilepath);
tBundle.putInt("LENGTH", filelength);
tBundle.putInt("WPARAM", wparam);
tBundle.putInt("LPARAM", lparam);
tBundle.putInt("TASKID", taskid);
tMsg.setData(tBundle);
mHandler.sendMessage(tMsg);
}
该函数不能触发 ,怎么办?
|
|