/*---------------------------------------------------------------------------- * Copyright (c) TJD Technologies Co., Ltd. 2024. All rights reserved. * * Description: * * Author: wuchangxin * * Create: 2025-03-11 *--------------------------------------------------------------------------*/ #ifndef TJD_UI_APP_FIND_DEVICE_VIEW_H #define TJD_UI_APP_FIND_DEVICE_VIEW_H // #include "View.h" // #include "TjdUiAppFindPhonePresenter.h" #include "components/ui_label.h" // #include "components/ui_label_button_ext.h" // #include "components/ui_list.h" #include "components/ui_scroll_view.h" // #include "components/ui_image_view.h" // #include "common/image.h" // #include "components/ui_view.h" // #include "gfx_utils/graphic_types.h" // #include "TjdUiMemManage.h" // #include "components/ui_checkbox.h" // #include "components/ui_edit_text.h" #include "components/ui_image_animator.h" #include "ui_label_ext.h" #include "ui_view.h" // #include "components/ui_view_group.h" namespace TJD { class TjdUiAppFindDeviceView : public OHOS::UIScrollView { public: TjdUiAppFindDeviceView(); ~TjdUiAppFindDeviceView(); static TjdUiAppFindDeviceView *GetInstance(void); void InitFindDeviceViewImage(); int PlayerStop(); int PlayerStart(); int LoopPlayerStart(); private: OHOS::UIView backGround_; OHOS::UIImageAnimatorView animatorfindDev_; OHOS::UILabelExt lblFindDev_; }; } #endif