mcu_hi3321_watch/application/wearable/nativeapp/nativeui/makephone/include/WaitingHintsView.h
2025-05-26 20:15:20 +08:00

36 lines
874 B
C++

/*
* Copyright (c) CompanyNameMagicTag 2022-2022. All rights reserved.
* Description: WaitingHintsView.h
* Author:
* Create: 2022-03-14
*/
#ifndef WAITING_HINTS_VIEW_H
#define WAITING_HINTS_VIEW_H
#include "View.h"
#include "components/ui_label.h"
#include "components/ui_image_animator.h"
#include "components/ui_view_group.h"
#include "ohos_types.h"
namespace OHOS {
class WaitingHintsView {
public:
WaitingHintsView();
~WaitingHintsView();
UIViewGroup *CreateUIViewGroup();
static WaitingHintsView *GetInstance();
private:
bool InitImageViewDisplay(void);
bool InitUILabelDisplay(void);
UIViewGroup *group{nullptr};
UIView::OnClickListener* clickLeftListener{nullptr};
UIImageView *imageDissgree{nullptr};
UILabel *callerDisplay{nullptr};
UILabel *newcallHints{nullptr};
};
}
#endif