想了解更多内容,请访问:
为玄武等地区用户提供了全套网页设计制作服务,及玄武网站建设行业解决方案。主营业务为成都网站设计、成都做网站、玄武网站设计,以传统方式定制建设网站,并提供域名空间备案等一条龙服务,秉承以专业、用心的态度为用户提供真诚的服务。我们深信只要达到每一位用户的要求,就会得到认可,从而选择与我们长期合作。这样,我们也可以走得更远!
和华为官方合作共建的鸿蒙技术社区
https://harmonyos.
服务卡片是FA的一种主要信息呈现形式,开发者可以在卡片中展示用户最关心的FA数据,并可以通过点击卡片内容直接打开FA。例如,天气类FA,可以在服务卡片中展示当前的基本天气信息,点击卡片启动天气FA,展示详细的天气数据。
同时,服务卡片支持不同的规格尺寸,开发者可以根据展示的不同内容和布局效果,选用不同的卡片尺寸,支持的尺寸包括:1x2、2x2、2x4 和 4x4。
知识点:
1.对象关系型数据库的使用,如何查询、创建卡片、删除卡片
2.如何更新卡片数据
安装DevEco Studio,详情请参考DevEco Studio下载。
设置DevEco Studio开发环境,DevEco Studio开发环境需要依赖于网络环境,需要连接上网络才能确保工具的正常使用,可以根据如下两种情况来配置开发环境:
如果可以直接访问Internet,只需进行下载HarmonyOS SDK操作。
如果网络不能直接访问Internet,需要通过代理服务器才可以访问,请参考配置开发环境。
- ├─config.json #项目配置文件
- ├─java
- │ └─com
- │ └─huawei
- │ └─learnharmony
- │ │ MainAbility.java
- │ │ MyApplication.java
- │ │ TimerAbility.java #用于定时更新卡片的服务
- │ │
- │ ├─database
- │ │ Form.java #卡片表,extends OrmObject
- │ │ FormDatabase.java #卡片数据库,extends OrmDatabase
- │ │
- │ ├─slice
- │ │ ClockCardSlice.java #时钟卡片主能力页,extends AbilitySlice
- │ │
- │ └─utils
- │ ComponentProviderUtils.java #ComponentProvider工具类
- │ DatabaseUtils.java #数据库工具类,实现Form的添加和删除
- │ DateUtils.java #日期工具类
- │ LogUtils.java #日志工具类
- │
- └─resources
- └─base
- ├─element
- │ string.json
- │
- ├─graphic
- │ background_ability_main.xml
- │ background_week.xml
- │
- ├─layout
- │ ability_main.xml #主能力页,默认
- │ form_image_with_info_date_card_1_2.xml #1x2规格的卡片
- │ form_image_with_info_date_card_2_2.xml #2x2规格的卡片
- │ form_image_with_info_date_card_2_4.xml #2x4规格的卡片
- │
- └─media
- form_image_with_info_datecard_default_image_2.png
- form_image_with_info_form_card_default_image_2.png
- icon.png
form_image_with_info_date_card_1_2.xml #1x2规格的卡片
- xmlns:ohos="http://schemas.huawei.com/res/ohos"
- ohos:height="match_parent"
- ohos:width="match_parent"
- ohos:background_element="#FFFFFFFF"
- ohos:remote="true">
- ohos:height="match_content"
- ohos:width="match_parent"
- ohos:orientation="vertical"
- ohos:vertical_center="true"
- >
- ohos:id="$+id:date"
- ohos:height="match_content"
- ohos:width="match_content"
- ohos:center_in_parent="true"
- ohos:text="2021-03-24"
- ohos:text_alignment="vertical_center"
- ohos:text_font="sans-serif-medium"
- ohos:text_size="20fp"
- />
form_image_with_info_date_card_2_2.xml #2x2规格的卡片
- xmlns:ohos="http://schemas.huawei.com/res/ohos"
- ohos:height="match_parent"
- ohos:width="match_parent"
- ohos:background_element="#FFFFFFFF"
- ohos:remote="true">
- ohos:height="match_content"
- ohos:width="match_parent"
- ohos:orientation="vertical"
- >
- ohos:id="$+id:date"
- ohos:height="match_content"
- ohos:width="match_parent"
- ohos:text_alignment="horizontal_center"
- ohos:margin="12fp"
- ohos:text="2021-03-24"
- ohos:text_font="sans-serif-medium"
- ohos:text_size="10fp"
- />
- ohos:id="$+id:title"
- ohos:height="match_content"
- ohos:width="match_parent"
- ohos:alignment="horizontal_center"
- ohos:orientation="horizontal"
- ohos:top_margin="35fp"
- >
- ohos:height="match_content"
- ohos:width="match_content"
- ohos:margin="8vp"
- ohos:text="HOUR"
- ohos:text_size="10fp"
- />
- ohos:height="match_content"
- ohos:width="match_content"
- ohos:margin="8vp"
- ohos:text="MIN"
- ohos:text_size="10fp"
- />
- ohos:height="match_content"
- ohos:width="match_content"
- ohos:margin="8vp"
- ohos:text="SEC"
- ohos:text_size="10fp"
- />
- ohos:id="$+id:time"
- ohos:height="match_content"
- ohos:width="match_parent"
- ohos:alignment="horizontal_center"
- ohos:below="$id:title"
- ohos:orientation="horizontal"
- ohos:top_margin="0.5fp"
- >
- ohos:id="$+id:hour"
- ohos:height="match_content"
- ohos:width="match_content"
- ohos:left_margin="10vp"
- ohos:right_margin="5vp"
- ohos:text="00"
- ohos:text_font="HwChinese-medium"
- ohos:text_size="20fp"
- ohos:top_margin="2vp"
- />
- ohos:height="match_content"
- ohos:width="match_content"
- ohos:text=":"
- ohos:text_font="bold"
- ohos:text_size="20fp"
- ohos:top_margin="2vp"
- />
- ohos:id="$+id:min"
- ohos:height="match_content"
- ohos:width="match_content"
- ohos:left_margin="5vp"
- ohos:right_margin="5vp"
- ohos:text="00"
- ohos:text_font="HwChinese-medium"
- ohos:text_size="20fp"
- ohos:top_margin="2vp"
- />
- ohos:height="match_content"
- ohos:width="match_content"
- ohos:text=":"
- ohos:text_font="bold"
- ohos:text_size="20fp"
- ohos:top_margin="2vp"
- />
- ohos:id="$+id:sec"
- ohos:height="match_content"
- ohos:width="match_content"
- ohos:left_margin="5vp"
- ohos:right_margin="10vp"
- ohos:text="00"
- ohos:text_font="HwChinese-medium"
- ohos:text_size="20fp"
- ohos:top_margin="2vp"
- />
- ohos:height="match_content"
- ohos:width="match_parent"
- ohos:alignment="center"
- ohos:below="$id:time"
- ohos:margin="16fp"
- ohos:orientation="horizontal"
- >
- ohos:id="$+id:sun"
- ohos:height="match_content"
- ohos:width="match_content"
- ohos:text="日"
- ohos:text_color="#C0C0C0"
- ohos:text_size="10fp"
- ohos:weight="1"
- />
- ohos:id="$+id:mon"
- ohos:height="match_content"
- ohos:width="match_content"
- ohos:text="一"
- ohos:text_color="#C0C0C0"
- ohos:text_size="10fp"
- ohos:weight="1"
- />
- ohos:id="$+id:tue"
- ohos:height="match_content"
- ohos:width="match_content"
- ohos:text="二"
- ohos:text_color="#C0C0C0"
- ohos:text_size="10fp"
- ohos:weight="1"
- />
- ohos:id="$+id:wed"
- ohos:height="match_content"
- ohos:width="match_content"
- ohos:text="三"
- ohos:text_color="#C0C0C0"
- ohos:text_size="10fp"
- ohos:weight="1"
- />
- ohos:id="$+id:thu"
- ohos:height="match_content"
- ohos:width="match_content"
- ohos:text="四"
- ohos:text_color="#C0C0C0"
- ohos:text_size="10fp"
- ohos:weight="1"
- />
- ohos:id="$+id:fri"
- ohos:height="match_content"
- ohos:width="match_content"
- ohos:text="五"
- ohos:text_color="#C0C0C0"
- ohos:text_size="10fp"
- ohos:weight="1"
- />
- ohos:id="$+id:sat"
- ohos:height="match_content"
- ohos:width="match_content"
- ohos:text="六"
- ohos:text_color="#C0C0C0"
- ohos:text_size="10fp"
- ohos:weight="1"
- />
form_image_with_info_date_card_2_4.xml #2x4规格的卡片
- xmlns:ohos="http://schemas.huawei.com/res/ohos"
- ohos:height="match_parent"
- ohos:width="match_parent"
- ohos:background_element="#FFFFFFFF"
- ohos:remote="true">
- ohos:height="match_content"
- ohos:width="match_parent"
- ohos:orientation="horizontal"
- >
- ohos:id="$+id:date"
- ohos:height="match_content"
- ohos:width="match_content"
- ohos:align_parent_left="true"
- ohos:margin="10fp"
- ohos:text="2021-03-24"
- ohos:text_font="sans-serif-medium"
- ohos:text_size="20fp"
- />
- ohos:height="match_content"
- ohos:width="match_content"
- ohos:align_parent_right="true"
- ohos:orientation="horizontal"
- ohos:top_margin="10fp"
- >
- ohos:id="$+id:sun"
- ohos:height="match_content"
- ohos:width="match_content"
- ohos:text="日"
- ohos:text_color="#C0C0C0"
- ohos:text_size="20fp"
- ohos:weight="1"
- />
- ohos:id="$+id:mon"
- ohos:height="match_content"
- ohos:width="match_content"
- ohos:text="一"
- ohos:text_color="#C0C0C0"
- ohos:text_size="20fp"
- ohos:weight="1"
- />
- ohos:id="$+id:tue"
- ohos:height="match_content"
- ohos:width="match_content"
- ohos:text="二"
- ohos:text_color="#C0C0C0"
- ohos:text_size="20fp"
- ohos:weight="1"
- />
- ohos:id="$+id:wed"
- ohos:height="match_content"
- ohos:width="match_content"
- ohos:text="三"
- ohos:text_color="#C0C0C0"
- ohos:text_size="20fp"
- ohos:weight="1"
- />
- ohos:id="$+id:thu"
- ohos:height="match_content"
- ohos:width="match_content"
- ohos:text="四"
- ohos:text_color="#C0C0C0"
- ohos:text_size="20fp"
- ohos:weight="1"
- />
- ohos:id="$+id:fri"
- ohos:height="match_content"
- ohos:width="match_content"
- ohos:text="五"
- ohos:text_color="#C0C0C0"
- ohos:text_size="20fp"
- ohos:weight="1"
- />
- ohos:id="$+id:sat"
- ohos:height="match_content"
- ohos:width="match_content"
- ohos:text="六"
- ohos:text_color="#C0C0C0"
- ohos:text_size="20fp"
- ohos:weight="1"
- ohos:right_margin="10fp"
- />
- ohos:id="$+id:title"
- ohos:height="match_content"
- ohos:width="match_parent"
- ohos:alignment="horizontal_center"
- ohos:orientation="horizontal"
- ohos:top_margin="35fp"
- >
- ohos:height="match_content"
- ohos:width="match_content"
- ohos:top_margin="20vp"
- ohos:left_margin="20vp"
- ohos:right_margin="20vp"
- ohos:text="HOUR"
- ohos:text_size="20fp"
- />
- ohos:height="match_content"
- ohos:width="match_content"
- ohos:top_margin="20vp"
- ohos:left_margin="20vp"
- ohos:right_margin="20vp"
- ohos:text="MIN"
- ohos:text_size="20fp"
- />
- ohos:height="match_content"
- ohos:width="match_content"
- ohos:top_margin="20vp"
- ohos:left_margin="20vp"
- ohos:right_margin="20vp"
- ohos:text="SEC"
- ohos:text_size="20fp"
- />
- ohos:id="$+id:time"
- ohos:height="match_content"
- ohos:width="match_parent"
- ohos:alignment="horizontal_center"
- ohos:below="$id:title"
- ohos:orientation="horizontal"
- >
- ohos:id="$+id:hour"
- ohos:height="match_content"
- ohos:width="match_content"
- ohos:left_margin="20vp"
- ohos:right_margin="10vp"
- ohos:text="00"
- ohos:text_font="HwChinese-medium"
- ohos:text_size="40fp"
- ohos:top_margin="2vp"
- />
- ohos:height="match_content"
- ohos:width="match_content"
- ohos:text=":"
- ohos:text_font="bold"
- ohos:text_size="40fp"
- ohos:top_margin="2vp"
- />
- ohos:id="$+id:min"
- ohos:height="match_content"
- ohos:width="match_content"
- ohos:left_margin="10vp"
- ohos:right_margin="10vp"
- ohos:text="00"
- ohos:text_font="HwChinese-medium"
- ohos:text_size="40fp"
- ohos:top_margin="2vp"
- />
- ohos:height="match_content"
- ohos:width="match_content"
- ohos:text=":"
- ohos:text_font="bold" 当前标题:HarmonyOS之时钟FA卡片开发样例实践
地址分享:http://www.shufengxianlan.com/qtweb/news27/528227.html网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联