37 lines
832 B
C++
37 lines
832 B
C++
/*
|
|
* Copyright (c) CompanyNameMagicTag 2021-2021. All rights reserved.
|
|
* Description: bloodBandoff view
|
|
* Author:
|
|
* Create: 2021-08-01
|
|
*/
|
|
|
|
#ifndef BLOOD_BANDOFF_VIEW_H
|
|
#define BLOOD_BANDOFF_VIEW_H
|
|
|
|
#include "components/ui_label.h"
|
|
#include "components/ui_view_group.h"
|
|
#include "components/ui_image_animator.h"
|
|
#include "View.h"
|
|
#include "ohos_types.h"
|
|
|
|
namespace OHOS {
|
|
class BloodBandoffView {
|
|
public:
|
|
BloodBandoffView();
|
|
virtual ~BloodBandoffView();
|
|
|
|
UIViewGroup *CreateUIViewGroup();
|
|
static BloodBandoffView *GetInstance(void);
|
|
|
|
UIViewGroup *GetBandoffViewGroup();
|
|
UIImageAnimatorView *GetImageAnimator();
|
|
private:
|
|
UILabel *label;
|
|
UIViewGroup *group;
|
|
UIImageView *imageView;
|
|
UIImageAnimatorView *imageAnimator;
|
|
};
|
|
}
|
|
|
|
|
|
#endif // 血氧跳转界面
|