Android x Kotlin 實作課程:打造個人專屬計算機 APP EP3 佈局優化使用 Style 樣式包

閱讀時間約 14 分鐘

打造個人專屬計算機 APP 系列文章目錄:
https://vocus.cc/article/65acea9ffd897800019c13dc

課程摘要

本課程學習如何提取共同屬性,透過 Style 樣式包,套用至每個按鈕。來提升佈局的可讀性和好維護性。

教學影片

若您無法順利觀看教學影片,請先登入您的 YouTube 帳號,然後點擊以下連結加入我們的頻道會員:

  • 一般會員:成為一般會員後,您將能夠觀看我們所提供的一般會員專屬線上課程。
  • 精實會員:成為精實會員後,您將能夠觀看我們所提供的精實會員專屬線上課程。

範例程式碼

styles.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="MyButtonStyle" parent="Widget.AppCompat.Button">
<item name="android:layout_width">0dp</item>
<item name="android:layout_height">0dp</item>
<item name="android:layout_columnWeight">1</item>
<item name="android:layout_rowWeight">1</item>
<item name="android:textColor">@color/white</item>
<item name="android:textSize">30sp</item>
</style>
</resources>

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="#050005">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="3"
android:orientation="vertical">
<TextView
android:id="@+id/processTextView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="end"
android:padding="8dp"
android:textColor="#efefef"
android:textColorHint="@color/white"
android:textSize="35sp"
tools:hint="計算機過程顯示區域"/>
<TextView
android:id="@+id/resultTextView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:gravity="end"
android:padding="8dp"
android:textColor="@color/white"
android:textColorHint="@color/white"
android:textSize="45sp"
tools:hint="666"/>
</LinearLayout>
<GridLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="7"
android:columnCount="4">

<androidx.appcompat.widget.AppCompatButton
android:id="@+id/buttonAllClear"
style="@style/MyButtonStyle"
android:text="AC" />

<androidx.appcompat.widget.AppCompatButton
android:id="@+id/buttonToggleSign"
style="@style/MyButtonStyle"
android:text="+/-" />

<androidx.appcompat.widget.AppCompatButton
android:id="@+id/buttonDivide"
style="@style/MyButtonStyle"
android:text="/"/>

<androidx.appcompat.widget.AppCompatButton
android:id="@+id/buttonBackspace"
style="@style/MyButtonStyle"
android:text="⌫"/>
<androidx.appcompat.widget.AppCompatButton
android:id="@+id/button7"
style="@style/MyButtonStyle"
android:text="7"/>

<androidx.appcompat.widget.AppCompatButton
android:id="@+id/button8"
style="@style/MyButtonStyle"
android:text="8"/>

<androidx.appcompat.widget.AppCompatButton
android:id="@+id/button9"
style="@style/MyButtonStyle"
android:text="9"/>

<androidx.appcompat.widget.AppCompatButton
android:id="@+id/buttonMultiply"
style="@style/MyButtonStyle"
android:text="*"/>

<androidx.appcompat.widget.AppCompatButton
android:id="@+id/button4"
style="@style/MyButtonStyle"
android:text="4"/>

<androidx.appcompat.widget.AppCompatButton
android:id="@+id/button5"
style="@style/MyButtonStyle"
android:text="5"/>

<androidx.appcompat.widget.AppCompatButton
android:id="@+id/button6"
style="@style/MyButtonStyle"
android:text="6"/>

<androidx.appcompat.widget.AppCompatButton
android:id="@+id/buttonMinus"
style="@style/MyButtonStyle"
android:text="-"/>

<androidx.appcompat.widget.AppCompatButton
android:id="@+id/button1"
style="@style/MyButtonStyle"
android:text="1"/>

<androidx.appcompat.widget.AppCompatButton
android:id="@+id/button2"
style="@style/MyButtonStyle"
android:text="2"/>

<androidx.appcompat.widget.AppCompatButton
android:id="@+id/button3"
style="@style/MyButtonStyle"
android:text="3"/>

<androidx.appcompat.widget.AppCompatButton
android:id="@+id/buttonPlus"
style="@style/MyButtonStyle"
android:text="+"/>

<androidx.appcompat.widget.AppCompatButton
android:id="@+id/button0"
android:layout_width="0dp"
android:layout_height="0dp"
android:text="0"
android:layout_columnSpan="2"
android:layout_columnWeight="1"
android:layout_rowWeight="1"
android:textColor="@color/white"
android:textSize="30sp"/>
<androidx.appcompat.widget.AppCompatButton
android:id="@+id/buttonDot"
style="@style/MyButtonStyle"
android:text="."/>

<androidx.appcompat.widget.AppCompatButton
android:id="@+id/buttonEquals"
style="@style/MyButtonStyle"
android:text="="/>

</GridLayout>

</LinearLayout>
avatar-img
11會員
244內容數
哈囉!歡迎光臨我的沙龍!我是 KT,一位對應用程式開發充滿熱情的開發者。在這個專屬空間,我將與您分享我在應用開發領域的深入學習心得和豐富的實戰經驗。如果您對應用程式開發技術同樣充滿好奇,渴望不斷探索新知,歡迎成為我們的會員,一起在應用程式開發的旅途上,探索更深層次的技術世界,享受學習的樂趣。
留言0
查看全部
avatar-img
發表第一個留言支持創作者!
HKT實驗室 的其他內容
本課程學習如何如何實作計算機介面,佈局文字元件及按鈕。學習使用 LinearLayout 垂直排列元件,調整背景色。透過 GridLayout 佈局計算機按鈕。
我們將深入介紹如何使用 Kotlin 在 Android 平台上開發一個簡單的計算機應用程式。這個課程的目標是教授大家如何通過點擊計算機鍵盤,輸入算式,並得到計算結果。透過這套課程,你將能夠熟練掌握 Kotlin 語言在 Android 開發中的實際應用,並輕鬆打造出屬於自己的計算機應用程式。
本課程學習如何如何實作計算機介面,佈局文字元件及按鈕。學習使用 LinearLayout 垂直排列元件,調整背景色。透過 GridLayout 佈局計算機按鈕。
我們將深入介紹如何使用 Kotlin 在 Android 平台上開發一個簡單的計算機應用程式。這個課程的目標是教授大家如何通過點擊計算機鍵盤,輸入算式,並得到計算結果。透過這套課程,你將能夠熟練掌握 Kotlin 語言在 Android 開發中的實際應用,並輕鬆打造出屬於自己的計算機應用程式。
你可能也想看
Google News 追蹤
Thumbnail
本文總結和介紹了Kotlin的基本語法、註解和變數的使用,透過實例進行講解,以幫助讀者更好地理解和快速上手Kotlin語言。
https://vocus.cc/168money/tagTab/64e4c172fd897800014e4376 也歡迎訂閱講義學習!
前言 那麼今天要來教大家,如何實現各種排版,以及不同的 CSS 可以做出怎樣的效果。 整理好你的思緒,深深吸一口氣,讓我們在 2024 這嶄新的一年當中,開始新的學習之旅吧。 字體相關 color 設定文字的顏色。 <p style="color: blue;">這是藍色文字。</
前言 今天課程要來學習,在 .css 設計樣式後,怎麼透過選擇器,讓 .html 可以有所配對,經過這一步後,便可以開始學習,如何正式設計 .css 了。 選擇器 介紹 還記得上次課程,我們在 .css 檔案中,撰寫的程式碼嗎?讓我們來複習看看: .highlight { co
Thumbnail
這篇文是我自己的學習筆記,整理過後覺得挺值得分享的,就決定直接PO一篇文。 這邊只會紀錄重點跟脈絡,還有一些個人心得。 如果想要有仔細的案例講解,可以直接到Hahow購買線上課程, 課程名稱是《讓圖不只是好看的-資訊設計思考力!》。
Thumbnail
編輯的基本功,是對文字的敏感度。
Thumbnail
本文總結和介紹了Kotlin的基本語法、註解和變數的使用,透過實例進行講解,以幫助讀者更好地理解和快速上手Kotlin語言。
https://vocus.cc/168money/tagTab/64e4c172fd897800014e4376 也歡迎訂閱講義學習!
前言 那麼今天要來教大家,如何實現各種排版,以及不同的 CSS 可以做出怎樣的效果。 整理好你的思緒,深深吸一口氣,讓我們在 2024 這嶄新的一年當中,開始新的學習之旅吧。 字體相關 color 設定文字的顏色。 <p style="color: blue;">這是藍色文字。</
前言 今天課程要來學習,在 .css 設計樣式後,怎麼透過選擇器,讓 .html 可以有所配對,經過這一步後,便可以開始學習,如何正式設計 .css 了。 選擇器 介紹 還記得上次課程,我們在 .css 檔案中,撰寫的程式碼嗎?讓我們來複習看看: .highlight { co
Thumbnail
這篇文是我自己的學習筆記,整理過後覺得挺值得分享的,就決定直接PO一篇文。 這邊只會紀錄重點跟脈絡,還有一些個人心得。 如果想要有仔細的案例講解,可以直接到Hahow購買線上課程, 課程名稱是《讓圖不只是好看的-資訊設計思考力!》。
Thumbnail
編輯的基本功,是對文字的敏感度。