/*********************************************** /gen auto by zuitools ***********************************************/ #ifndef __DEVICEUPDATEACTIVITY_H__ #define __DEVICEUPDATEACTIVITY_H__ #include "app/Activity.h" #include "entry/EasyUIContext.h" #include "uart/ProtocolData.h" #include "uart/ProtocolParser.h" #include "utils/Log.h" #include "control/ZKDigitalClock.h" #include "control/ZKButton.h" #include "control/ZKCircleBar.h" #include "control/ZKDiagram.h" #include "control/ZKListView.h" #include "control/ZKPointer.h" #include "control/ZKQRCode.h" #include "control/ZKTextView.h" #include "control/ZKSeekBar.h" #include "control/ZKEditText.h" #include "control/ZKVideoView.h" #include "window/ZKSlideWindow.h" /*TAG:Macro宏ID*/ #define ID_DEVICEUPDATE_sys_back 100 #define ID_DEVICEUPDATE_Window1 110004 #define ID_DEVICEUPDATE_VersionNoNew 50016 #define ID_DEVICEUPDATE_TextView8 50015 #define ID_DEVICEUPDATE_VersionNew 50004 #define ID_DEVICEUPDATE_VersionNo 50014 #define ID_DEVICEUPDATE_TextView7 50013 #define ID_DEVICEUPDATE_Version 50002 #define ID_DEVICEUPDATE_ButtonDialog1 20006 #define ID_DEVICEUPDATE_TextViewDialog1 50011 #define ID_DEVICEUPDATE_TextView6 50010 #define ID_DEVICEUPDATE_WindowDialog1 110003 #define ID_DEVICEUPDATE_TextViewProgressMessage 50012 #define ID_DEVICEUPDATE_TextViewProgressLoading 50008 #define ID_DEVICEUPDATE_TextView4 50007 #define ID_DEVICEUPDATE_WindowProgress 110002 #define ID_DEVICEUPDATE_ButtonInstantly 20002 #define ID_DEVICEUPDATE_TextView3 50003 #define ID_DEVICEUPDATE_TextView5 50005 #define ID_DEVICEUPDATE_WindowFind 110001 #define ID_DEVICEUPDATE_TextViewTitle 50009 #define ID_DEVICEUPDATE_TextView1 50001 #define ID_DEVICEUPDATE_ButtonUpdate 20001 #define ID_DEVICEUPDATE_TextView2 50006 /*TAG:Macro宏ID END*/ class DeviceUpdateActivity : public Activity, public ZKSeekBar::ISeekBarChangeListener, public ZKListView::IItemClickListener, public ZKListView::AbsListAdapter, public ZKSlideWindow::ISlideItemClickListener, public EasyUIContext::ITouchListener, public ZKEditText::ITextChangeListener, public ZKVideoView::IVideoPlayerMessageListener { public: DeviceUpdateActivity(); virtual ~DeviceUpdateActivity(); /** * 注册定时器 */ void registerUserTimer(int id, int time); /** * 取消定时器 */ void unregisterUserTimer(int id); /** * 重置定时器 */ void resetUserTimer(int id, int time); protected: /*TAG:PROTECTED_FUNCTION*/ virtual const char* getAppName() const; virtual void onCreate(); virtual void onClick(ZKBase *pBase); virtual void onResume(); virtual void onPause(); virtual void onIntent(const Intent *intentPtr); virtual bool onTimer(int id); virtual void onProgressChanged(ZKSeekBar *pSeekBar, int progress); virtual int getListItemCount(const ZKListView *pListView) const; virtual void obtainListItemData(ZKListView *pListView, ZKListView::ZKListItem *pListItem, int index); virtual void onItemClick(ZKListView *pListView, int index, int subItemIndex); virtual void onSlideItemClick(ZKSlideWindow *pSlideWindow, int index); virtual bool onTouchEvent(const MotionEvent &ev); virtual void onTextChanged(ZKTextView *pTextView, const string &text); void rigesterActivityTimer(); virtual void onVideoPlayerMessage(ZKVideoView *pVideoView, int msg); void videoLoopPlayback(ZKVideoView *pVideoView, int msg, size_t callbackTabIndex); void startVideoLoopPlayback(); void stopVideoLoopPlayback(); bool parseVideoFileList(const char *pFileListPath, std::vector& mediaFileList); int removeCharFromString(string& nString, char c); private: /*TAG:PRIVATE_VARIABLE*/ int mVideoLoopIndex; int mVideoLoopErrorCount; }; #endif