1. 程式人生 > 程式設計 >快速入門HarmonyOS的Java UI框架的教程

快速入門HarmonyOS的Java UI框架的教程

本文件適用於HarmonyOS應用開發的初學者。編寫兩個簡單的頁面,實現在第一個頁面點選按鈕跳轉到第二個頁面。

注意:執行Hello World在建立工程時,裝置型別和模板分別以Wearable和Empty Feature Ability(Java)為例,本文件也基於相同的裝置型別和模板進行說明。

編寫第一個頁面

在Java UI框架中,提供了兩種編寫佈局的方式:在XML中宣告UI佈局和在程式碼中建立佈局。這兩種方式創建出的佈局沒有本質差別,為了熟悉兩種方式,我們將通過XML的方式編寫第一個頁面,通過程式碼的方式編寫第二個頁面。

XML編寫頁面

在“Project”視窗,開啟“entry > src > main > resources > base”,右鍵點選“base”資料夾,選擇“New > Directory”,命名為“layout”。

鍵點選“layout”資料夾,選擇“New > File”,命名為“main_layout.xml”。

0000000000011111111.20200917120417.34233295676813690694135023815559:50510917062253:2800:642CEF3864709AF4CA90D6E2D342923D671918358DBAB41F1CDF6076F5F4DABE.png?needInitFileName=true?needInitFileName=true

在“layout”資料夾下可以看到新增了“main_layout.xml”檔案。

0000000000011111111.20200917120417.30532054029557177825168732061918:50510917062253:2800:4D84274B6A1E5680B97F231FCA1259AF3D0BDE26FEA1B0E693F096ABA1166CDA.png?needInitFileName=true?needInitFileName=true

開啟“main_layout.xml”檔案,新增一個文字和一個按鈕,示例程式碼如下:

<?xml version="1.0" encoding="utf-8"?>
<DependentLayout
    xmlns:ohos="http://schemas.huawei.com/res/ohos"
    ohos:width="match_parent"
    ohos:height="match_parent"
    ohos:background_element="#000000">
  <Text
      ohos:id="$+id:text"
      ohos:width="match_content"
      ohos:height="match_content"
      ohos:center_in_parent="true"
      ohos:text="Hello World"
      ohos:text_color="white"
      ohos:text_size="32fp"/>
  <Button
      ohos:id="$+id:button"
      ohos:width="match_content"
      ohos:height="match_content"
      ohos:text_size="19fp"
      ohos:text="Next"
      ohos:top_padding="8vp"
      ohos:bottom_padding="8vp"
      ohos:right_padding="80vp"
      ohos:left_padding="80vp"
      ohos:text_color="white"
      ohos:background_element="$graphic:button_element"
      ohos:center_in_parent="true"
      ohos:align_parent_bottom="true"/>
</DependentLayout>

上述按鈕的背景是通過“button_element”來顯示的,需要在“base”目錄下建立“graphic”資料夾,在“graphic”資料夾中新建一個“button_element.xml”檔案。

0000000000011111111.20200917120417.20657229793966139327199575643230:50510917062253:2800:995A3F1C2739D797D7A35B1E965D068C864946BAAFA47541A7690CC377796C91.png?needInitFileName=true?needInitFileName=true

“button_element.xml”的示例程式碼如下:

<?xml version="1.0" encoding="utf-8"?>
<shape
    xmlns:ohos="http://schemas.huawei.com/res/ohos"
    ohos:shape="oval">
  <solid
      ohos:color="#007DFF"/>
</shape>

說明:如果DevEco Studio提示xmlns欄位錯誤,請忽略,不影響後續操作。

載入XML佈局

在“Project”視窗中,選擇“entry > src > main > java > com.example.helloworld > slice” ,開啟“MainAbilitySlice.java”檔案。重寫onStart()方法載入XML佈局,示例程式碼如下:

package com.example.myapplication.slice;
 
import com.example.myapplication.ResourceTable;
import ohos.aafwk.ability.AbilitySlice;
import ohos.aafwk.content.Intent;
 
public class MainAbilitySlice extends AbilitySlice {
 
@Override
public void onStart(Intent intent) {
super.onStart(intent);
super.setUIContent(ResourceTable.Layout_main_layout); // 載入XML佈局
}
 
@Override
public void onActive() {
super.onActive();
}
 
@Override
public void onForeground(Intent intent) {
super.onForeground(intent);
}
}

效果如圖所示:

0000000000011111111.20200917120417.17663833033072512715148579643111:50510917062253:2800:374BFE1A78208D3FFA61DC06089E102874789818F097FD8390DDA132FC96A594.png?needInitFileName=true?needInitFileName=true

建立另一個頁面

建立Feature Ability

在“Project”視窗,開啟“entry > src > main > java”,右鍵點選“com.example.myapplication”資料夾,選擇“New > Ability > Empty Feature Ability(Java)”。配置Ability時,將“Page Name”設定為“SecondAbility”,點選“Finish”。建立完成後,可以看到新增了“SecondAbility”和“SecondAbilitySlice”檔案。

0000000000011111111.20200909202823.74930964459566968760104266787246:50510909131850:2800:9C60847A938FFBF2A4F35040DAAEED568A32C98B7B8E5712967F988E3670991F.png?needInitFileName=true?needInitFileName=true?needInitFileName=true

程式碼編寫介面

在上一節中,我們用XML的方式編寫了一個包含文字和按鈕的頁面。為了幫助開發者熟悉在程式碼中建立佈局的方式,接下來我們使用此方式編寫第二個頁面。

開啟 “SecondAbilitySlice.java”檔案,新增一個文字,示例程式碼如下:

package com.example.myapplication.slice;
 
import ohos.aafwk.ability.AbilitySlice;
import ohos.aafwk.content.Intent;
import ohos.agp.colors.RgbColor;
import ohos.agp.components.DependentLayout;
import ohos.agp.components.DependentLayout.LayoutConfig;
import ohos.agp.components.Text;
import ohos.agp.components.element.ShapeElement;
import ohos.agp.utils.Color;
 
import static ohos.agp.components.ComponentContainer.LayoutConfig.MATCH_PARENT;
import static ohos.agp.components.ComponentContainer.LayoutConfig.MATCH_CONTENT;
 
public class SecondAbilitySlice extends AbilitySlice {
 
  @Override
  public void onStart(Intent intent) {
    super.onStart(intent);
    // 宣告佈局
    DependentLayout myLayout = new DependentLayout(this);
    // 設定佈局大小
    myLayout.setWidth(MATCH_PARENT);
    myLayout.setHeight(MATCH_PARENT);
    ShapeElement element = new ShapeElement();
    element.setRgbColor(new RgbColor(0,0));
    myLayout.setBackground(element);
 
    // 建立一個文字
    Text text = new Text(this);
    text.setText("Nice to meet you.");
    text.setWidth(MATCH_PARENT);
    text.setTextSize(55);
    text.setTextColor(Color.WHITE);
    // 設定文字的佈局
    DependentLayout.LayoutConfig textConfig = new DependentLayout.LayoutConfig(MATCH_CONTENT,MATCH_CONTENT);
    textConfig.addRule(LayoutConfig.CENTER_IN_PARENT);
    text.setLayoutConfig(textConfig);
    myLayout.addComponent(text);
 
    super.setUIContent(myLayout);
  }
 
  @Override
  public void onActive() {
    super.onActive();
  }
 
  @Override
  public void onForeground(Intent intent) {
    super.onForeground(intent);
  }
}

實現頁面跳轉

開啟第一個頁面的“MainAbilitySlice.java”檔案,重寫onStart()方法新增按鈕的響應邏輯,實現點選按鈕跳轉到下一頁,示例程式碼如下:

package com.example.myapplication.slice;
 
import com.example.myapplication.ResourceTable;
import ohos.aafwk.ability.AbilitySlice;
import ohos.aafwk.content.Intent;
import ohos.aafwk.content.Operation;
import ohos.agp.components.*;
 
public class MainAbilitySlice extends AbilitySlice {
 
  @Override
  public void onStart(Intent intent) {
    super.onStart(intent);
    super.setUIContent(ResourceTable.Layout_main_layout);
    Button button = (Button) findComponentById(ResourceTable.Id_button);
 
    if (button != null) {
      // 為按鈕設定點選回撥
      button.setClickedListener(new Component.ClickedListener() {
        @Override
        public void onClick(Component component) {
        Intent secondIntent = new Intent();
        // 指定待啟動FA的bundleName和abilityName
        Operation operation = new Intent.OperationBuilder()
            .withDeviceId("")
            .withBundleName("com.example.myapplication")
            .withAbilityName("com.example.myapplication.SecondAbility")
            .build();
        secondIntent.setOperation(operation);
        startAbility(secondIntent); // 通過AbilitySlice的startAbility介面實現啟動另一個頁面
        }
      });
    }
  }
 
  @Override
  public void onActive() {
    super.onActive();
  }
 
  @Override
  public void onForeground(Intent intent) {
    super.onForeground(intent);
  }
}

再次執行專案,效果如圖所示:

快速入門HarmonyOS的Java UI框架的教程

總結

到此這篇關於快速入門HarmonyOS的Java UI框架的文章就介紹到這了,更多相關HarmonyOS的Java UI框架內容請搜尋我們以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援我們!