新聞中心
想了解更多內(nèi)容,請?jiān)L問:

為玄武等地區(qū)用戶提供了全套網(wǎng)頁設(shè)計(jì)制作服務(wù),及玄武網(wǎng)站建設(shè)行業(yè)解決方案。主營業(yè)務(wù)為成都網(wǎng)站設(shè)計(jì)、成都做網(wǎng)站、玄武網(wǎng)站設(shè)計(jì),以傳統(tǒng)方式定制建設(shè)網(wǎng)站,并提供域名空間備案等一條龍服務(wù),秉承以專業(yè)、用心的態(tài)度為用戶提供真誠的服務(wù)。我們深信只要達(dá)到每一位用戶的要求,就會(huì)得到認(rèn)可,從而選擇與我們長期合作。這樣,我們也可以走得更遠(yuǎn)!
和華為官方合作共建的鴻蒙技術(shù)社區(qū)
https://harmonyos.
時(shí)鐘FA卡片開發(fā)樣例
介紹
服務(wù)卡片是FA的一種主要信息呈現(xiàn)形式,開發(fā)者可以在卡片中展示用戶最關(guān)心的FA數(shù)據(jù),并可以通過點(diǎn)擊卡片內(nèi)容直接打開FA。例如,天氣類FA,可以在服務(wù)卡片中展示當(dāng)前的基本天氣信息,點(diǎn)擊卡片啟動(dòng)天氣FA,展示詳細(xì)的天氣數(shù)據(jù)。
同時(shí),服務(wù)卡片支持不同的規(guī)格尺寸,開發(fā)者可以根據(jù)展示的不同內(nèi)容和布局效果,選用不同的卡片尺寸,支持的尺寸包括:1x2、2x2、2x4 和 4x4。
知識點(diǎn):
1.對象關(guān)系型數(shù)據(jù)庫的使用,如何查詢、創(chuàng)建卡片、刪除卡片
2.如何更新卡片數(shù)據(jù)
搭建環(huán)境
安裝DevEco Studio,詳情請參考DevEco Studio下載。
設(shè)置DevEco Studio開發(fā)環(huán)境,DevEco Studio開發(fā)環(huán)境需要依賴于網(wǎng)絡(luò)環(huán)境,需要連接上網(wǎng)絡(luò)才能確保工具的正常使用,可以根據(jù)如下兩種情況來配置開發(fā)環(huán)境:
如果可以直接訪問Internet,只需進(jìn)行下載HarmonyOS SDK操作。
如果網(wǎng)絡(luò)不能直接訪問Internet,需要通過代理服務(wù)器才可以訪問,請參考配置開發(fā)環(huán)境。
代碼結(jié)構(gòu)解讀
- ├─config.json #項(xiàng)目配置文件
- ├─java
- │ └─com
- │ └─huawei
- │ └─learnharmony
- │ │ MainAbility.java
- │ │ MyApplication.java
- │ │ TimerAbility.java #用于定時(shí)更新卡片的服務(wù)
- │ │
- │ ├─database
- │ │ Form.java #卡片表,extends OrmObject
- │ │ FormDatabase.java #卡片數(shù)據(jù)庫,extends OrmDatabase
- │ │
- │ ├─slice
- │ │ ClockCardSlice.java #時(shí)鐘卡片主能力頁,extends AbilitySlice
- │ │
- │ └─utils
- │ ComponentProviderUtils.java #ComponentProvider工具類
- │ DatabaseUtils.java #數(shù)據(jù)庫工具類,實(shí)現(xiàn)Form的添加和刪除
- │ DateUtils.java #日期工具類
- │ LogUtils.java #日志工具類
- │
- └─resources
- └─base
- ├─element
- │ string.json
- │
- ├─graphic
- │ background_ability_main.xml
- │ background_week.xml
- │
- ├─layout
- │ ability_main.xml #主能力頁,默認(rèn)
- │ form_image_with_info_date_card_1_2.xml #1x2規(guī)格的卡片
- │ form_image_with_info_date_card_2_2.xml #2x2規(guī)格的卡片
- │ form_image_with_info_date_card_2_4.xml #2x4規(guī)格的卡片
- │
- └─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規(guī)格的卡片
- 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規(guī)格的卡片
- 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規(guī)格的卡片
- 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" 當(dāng)前文章:HarmonyOS之時(shí)鐘FA卡片開發(fā)樣例實(shí)踐
網(wǎng)址分享:http://m.fisionsoft.com.cn/article/dpddjcg.html


咨詢
建站咨詢
