鸿蒙开发(2)---Button组件
目錄
- 鴻蒙App開發(fā)之Button
- 創(chuàng)建一個Button
- 圓形按鈕
- 無背景有邊框的圓角按鈕
- 按鈕的點擊事件(實戰(zhàn)通話界面)
鴻蒙App開發(fā)之Button
按鈕是我們開發(fā)中最常見的組件之一,如果讀者已經打開鴻蒙開發(fā)工具DevEco Studio,按住Ctrl添加Button類,會發(fā)現其繼承自Text組件。
public class Button extends Text所以,其在鴻蒙中是沒有自有的XML屬性的,其所有屬性都繼承自Text組件。
創(chuàng)建一個Button
這里,我們和Text組件一樣,首先通過XML布局文件進行Button組件的創(chuàng)建。示例代碼如下所示:
<Buttonohos:id="$+id:test_button"ohos:height="match_content"ohos:width="match_content"ohos:element_left="$media:icon"ohos:layout_alignment="horizontal_center"ohos:top_margin="30vp"ohos:background_element="$graphic:background_ability_main"ohos:text="$string:test_button"ohos:text_size="40vp" />這里,我們創(chuàng)建了一個長方形的按鈕。graphic資源文件如下,僅僅設置了其背景的顏色為紅色。
<shape xmlns:ohos="http://schemas.huawei.com/res/ohos"ohos:shape="rectangle"><solidohos:color="#FF0000"/> </shape>運行之后,效果如下:
圓形按鈕
通過graphic資源文件的設置,我們還可以將按鈕變換為圓形頭像類似的圓形按鈕。示例代碼如下:
<?xml version="1.0" encoding="UTF-8" ?> <shape xmlns:ohos="http://schemas.huawei.com/res/ohos"ohos:shape="oval"><solidohos:color="#FF0000"/> </shape>不過,需要注意的是,這里我們設置的按鈕為oval橢圓形,而圓形也是橢圓形的一種,但圓形的寬高相等。所以,我們還需要將Button按鈕寬高設置成一樣。
<Buttonohos:id="$+id:test_button"ohos:height="100vp"ohos:width="100vp"ohos:layout_alignment="horizontal_center"ohos:top_margin="30vp"ohos:background_element="$graphic:background_ability_main"ohos:text="+"ohos:text_size="40vp" />運行之后,效果如下:
至于橢圓,只要保證寬高不相等即是橢圓按鈕。
無背景有邊框的圓角按鈕
這里,我們還是實現一個長方形的按鈕,但其4個角是圓角過渡,且沒有背景。示例代碼如下:
<shapexmlns:ohos="http://schemas.huawei.com/res/ohos"ohos:shape="rectangle"><strokeohos:width="2"ohos:color="#FF0000"/><cornersohos:radius="100"/> </shape>這里,我們設置了邊框的寬度為2,且為紅色,同時設置圓角為100。而XML布局中的按鈕代碼如下所示:
<Buttonohos:id="$+id:test_button"ohos:height="match_content"ohos:width="match_content"ohos:layout_alignment="horizontal_center"ohos:top_margin="30vp"ohos:padding="10vp"ohos:background_element="$graphic:background_ability_main"ohos:text="$string:test_button"ohos:text_size="40vp" />運行之后,效果如下:
按鈕的點擊事件(實戰(zhàn)通話界面)
眾所周知,我們很多手機的通話界面就是12個圓形按鈕組成的按鍵。當我們點擊按鈕的時候,對應的數字就會輸入到上面的文本框中形成電話號碼。
下面,我們通過這個項目來實戰(zhàn)按鈕是否完全掌握。代碼如下:
這里我們使用最基本獲取控件的方式,后面講解ResourceTable時,教大家如何使用循環(huán)體獲取名稱相近的組件。
XML布局文件代碼:
<?xml version="1.0" encoding="utf-8"?> <DirectionalLayoutxmlns:ohos="http://schemas.huawei.com/res/ohos"ohos:height="match_parent"ohos:width="match_parent"ohos:orientation="vertical"><Textohos:id="$+id:phone_number_text"ohos:height="match_content"ohos:weight="1"ohos:text_size="30vp"ohos:layout_alignment="horizontal_center"ohos:width="match_content"/><!--第1排按鈕 --><DirectionalLayoutohos:height="match_content"ohos:width="match_parent"ohos:weight="1"ohos:margin="10vp"ohos:orientation="horizontal"><Buttonohos:id="$+id:button_1"ohos:height="100vp"ohos:width="100vp"ohos:text="1"ohos:text_size="30vp"ohos:left_margin="10vp"ohos:background_element="$graphic:background_ability_main"/><Buttonohos:id="$+id:button_2"ohos:height="100vp"ohos:width="100vp"ohos:text="2"ohos:text_size="30vp"ohos:left_margin="10vp"ohos:background_element="$graphic:background_ability_main"/><Buttonohos:id="$+id:button_3"ohos:height="100vp"ohos:width="100vp"ohos:text="3"ohos:text_size="30vp"ohos:left_margin="10vp"ohos:background_element="$graphic:background_ability_main"/></DirectionalLayout><!--第2排按鈕 --><DirectionalLayoutohos:height="match_content"ohos:width="match_parent"ohos:weight="1"ohos:margin="10vp"ohos:orientation="horizontal"><Buttonohos:id="$+id:button_4"ohos:height="100vp"ohos:width="100vp"ohos:text="4"ohos:text_size="30vp"ohos:left_margin="10vp"ohos:background_element="$graphic:background_ability_main"/><Buttonohos:id="$+id:button_5"ohos:height="100vp"ohos:width="100vp"ohos:text="5"ohos:text_size="30vp"ohos:left_margin="10vp"ohos:background_element="$graphic:background_ability_main"/><Buttonohos:id="$+id:button_6"ohos:height="100vp"ohos:width="100vp"ohos:text="6"ohos:text_size="30vp"ohos:left_margin="10vp"ohos:background_element="$graphic:background_ability_main"/></DirectionalLayout><!--第3排按鈕 --><DirectionalLayoutohos:height="match_content"ohos:width="match_parent"ohos:weight="1"ohos:margin="10vp"ohos:orientation="horizontal"><Buttonohos:id="$+id:button_7"ohos:height="100vp"ohos:width="100vp"ohos:text="7"ohos:text_size="30vp"ohos:left_margin="10vp"ohos:background_element="$graphic:background_ability_main"/><Buttonohos:id="$+id:button_8"ohos:height="100vp"ohos:width="100vp"ohos:text="8"ohos:text_size="30vp"ohos:left_margin="10vp"ohos:background_element="$graphic:background_ability_main"/><Buttonohos:id="$+id:button_9"ohos:height="100vp"ohos:width="100vp"ohos:text="9"ohos:text_size="30vp"ohos:left_margin="10vp"ohos:background_element="$graphic:background_ability_main"/></DirectionalLayout><!--第4排按鈕 --><DirectionalLayoutohos:height="match_content"ohos:width="match_parent"ohos:weight="1"ohos:margin="10vp"ohos:orientation="horizontal"><Buttonohos:id="$+id:button_10"ohos:height="100vp"ohos:width="100vp"ohos:text="*"ohos:text_size="30vp"ohos:left_margin="10vp"ohos:background_element="$graphic:background_ability_main"/><Buttonohos:id="$+id:button_0"ohos:height="100vp"ohos:width="100vp"ohos:text="0"ohos:text_size="30vp"ohos:left_margin="10vp"ohos:background_element="$graphic:background_ability_main"/><Buttonohos:id="$+id:button_11"ohos:height="100vp"ohos:width="100vp"ohos:text="#"ohos:text_size="30vp"ohos:left_margin="10vp"ohos:background_element="$graphic:background_ability_main"/></DirectionalLayout> </DirectionalLayout>graphic:background_ability_main資源文件代碼:
<shapexmlns:ohos="http://schemas.huawei.com/res/ohos"ohos:shape="oval"><strokeohos:width="2"ohos:color="#FF0000"/> </shape>總結
以上是生活随笔為你收集整理的鸿蒙开发(2)---Button组件的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 日常英语---十一、MapleStory
- 下一篇: 达梦redo log损坏的处理办法