这一节,我们将对粗糙的计算器界面进行美化,最后让它的效果如下,
给整个背景调整一个背景颜色,让它变得美观。
activity_main.xml
中,给整个界面增加一个背景颜色#FF4B5459
,对界面的父布局LinearLayout
使用android:background
属性设置;这里的颜色是采用AARRGGBB
的形式进行定义的,AA
表示透明度,RR
代表红色,GG
代表绿色,BB
代表蓝色;
<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" tools:context="com.anddle.calculator.MainActivity" android:orientation="vertical" android:background="#FF4B5459">
</LinearLayout>
开始调整显示区域。
结果显示区域和表达式显示区域混在一起,不易分辨,需要把它们分开;
5dp
;间隔线的颜色为#FF5C6265
;
<LinearLayout android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="1" android:orientation="vertical">
<TextView android:id="@+id/result_area" android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="1"/>
<View android:layout_width="match_parent" android:layout_height="5dp" android:background="#FF5C6265" />
<TextView android:id="@+id/formula_area" android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="1"/>
</LinearLayout>
android:textColor
属性设置成白色#FFFFFFFF
;android:textSize
属性设置成45sp
;android:gravity
属性让文字位于左边居中显示;android:padding
属性设置成5dp
;<LinearLayout android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="1" android:orientation="vertical">
<TextView android:id="@+id/result_area" android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="1" android:textColor="#FFFFFFFF" android:textSize="45sp" android:gravity="center_vertical|right" android:padding="5dp"/>
<View android:layout_width="match_parent" android:layout_height="5dp" android:background="#FF5C6265" />
<TextView android:id="@+id/formula_area" android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="1" android:textColor="#FFFFFFFF" android:textSize="45sp" android:gravity="center_vertical|right" android:padding="5dp"/>
</LinearLayout>
接下来开始美化键盘。
修改Button
的字体大小和字体颜色,与修改TextView
的字体大小和字体颜色完全一样,
android:textColor
设置文字颜色为黑色#FF000000
;android:textSize
设置文字大小为35sp
;<TableRow android:layout_weight="1">
<Button android:id="@+id/btn_c" android:text="C" android:onClick="onClick" android:textColor="#FF000000" android:textSize="35sp"/>
......
</TableRow>
下面开始修改Button
的按键背景效果,我们的键盘有3种效果:
0-9
.
使用的效果;C
DEL
/
使用的效果;*
-
+
=
使用的效果;修改按钮的背景需要使用selector drawble。首先用数字按钮举例。
打开res\values\colors.xml
文件,定义没有按下按钮
时背景的颜色为#D0DCE3
,按下按钮
时背景的颜色为#BED1DB
;
<resources>
......
<color name="colorDigitalBtnNormal">#D0DCE3</color>
<color name="colorDigitalBtnPressed">#BED1DB</color>
</resources>
在res\drawable\
目录下,点击右键,启动创建drawable resource的向导;
创建selector drawable的xml文件,文件名为digital_btn_selector.xml
;
根据Button
是否被按下的状态android:state_pressed
,分别为它们设置不同的颜色,android:state_pressed=true
,说明当前按钮被按下,android:state_pressed=false
,说明当前按钮没有被按下;设置颜色使用@color
关键字,并加上之前在colors.xml中定义的颜色的名字;
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="false" android:drawable="@color/colorDigitalBtnNormal"/>
<item android:state_pressed="true" android:drawable="@color/colorDigitalBtnPressed"/>
</selector>
给数字按键7
的Button
设置android:background
属性,使用drawable selector,
<TableRow android:layout_weight="1">
<Button android:id="@+id/btn_7" android:text="7" android:onClick="onClick" android:textColor="#FF000000" android:textSize="35sp" android:background="@drawable/digital_btn_selector"/>
......
</TableRow>
这样就能看到数字按键的效果了。
定义没有按下按钮
时背景的颜色为#BED1DB
,按下按钮
时背景的颜色为#66A1B4
;
<resources>
......
<color name="colorSymbolLightBtnNormal">#BED1DB</color>
<color name="colorSymbolLightBtnPressed">#66A1B4</color>
</resources>
创建selector drawable的xml文件,文件名为symbol_light_btn_selector.xml
;
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="false" android:drawable="@color/colorSymbolLightBtnNormal"/>
<item android:state_pressed="true" android:drawable="@color/colorSymbolLightBtnPressed"/>
</selector>
给按键C
的Button
设置android:background
属性,使用drawable selector,
<TableRow android:layout_weight="1">
<Button android:id="@+id/btn_c" android:text="C" android:onClick="onClick" android:textColor="#FF000000" android:textSize="35sp" android:background="@drawable/symbol_light_btn_selector"/>
......
</TableRow>
定义没有按下按钮
时背景的颜色为#66A1B4
,按下按钮
时背景的颜色为#78CCE6
;
<resources>
......
<color name="colorSymbolDarkBtnNormal">#66A1B4</color>
<color name="colorSymbolDarkBtnPressed">#78CCE6</color>
</resources>
创建selector drawable的xml文件,文件名为symbol_dark_btn_selector.xml
;
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="false" android:drawable="@color/colorSymbolDarkBtnNormal"/>
<item android:state_pressed="true" android:drawable="@color/colorSymbolDarkBtnPressed"/>
</selector>
给按键*
的Button
设置android:background
属性,使用drawable selector,
<TableRow android:layout_weight="1">
<Button android:id="@+id/btn_mul" android:text="*" android:onClick="onClick" android:textColor="#FF000000" android:textSize="35sp" android:background="@drawable/symbol_dark_btn_selector"/>
......
</TableRow>
要修改所有的按钮效果,可以给每个Button
使用android:background
属性增加对应的背景,但是这样就需要修改很多地方。
为了减少修改每个Button
的工作量,可以将上面Button
的3种显示效果各定义成一种style
,然后再为Button
设置对应的style
就可以了。
先以数字按键为例,来定义style。
res\values\styles.xml
文件;将Button
的共同特性定义成一个style
---DigitalBtnStyle
;此外,为了键盘美观,通过定义android:layout_margin
属性,增加了每个按钮的间距。
<resources>
......
<style name="DigitalBtnStyle"> <item name="android:layout_margin">0.5dp</item> <item name="android:textSize">35sp</item> <item name="android:textColor">#FF000000</item> <item name="android:background">@drawable/digital_button_selector</item> </style>
</resources>
为所有数字按钮设置style
属性,添加DigitalBtnStyle
风格;
<TableRow android:layout_weight="1">
<Button android:id="@+id/btn_7" android:text="7" android:onClick="onClick" android:layout_weight="1" android:layout_width="0dp" android:layout_height="match_parent" style="@style/DigitalBtnStyle" />
......
</TableRow>
在res\values\styles.xml
文件中,定义SymbolLightBtnStyle
。
<resources>
......
<style name="SymbolLightBtnStyle"> <item name="android:layout_margin">0.5dp</item> <item name="android:textSize">35sp</item> <item name="android:textColor">#FF000000</item> <item name="android:background">@drawable/symbol_light_button_selector</item> </style>
</resources>
为C
DEL
/
按钮设置style
属性,添加SymbolLightBtnStyle
风格;
<TableRow android:layout_weight="1">
<Button android:id="@+id/btn_c" android:text="C" android:onClick="onClick" android:layout_weight="1" android:layout_width="0dp" android:layout_height="match_parent" style="@style/SymbolLightBtnStyle" />
......
</TableRow>
在res\values\styles.xml
文件中,定义SymbolDarkBtnStyle
。
<resources>
......
<style name="SymbolDarkBtnStyle"> <item name="android:layout_margin">0.5dp</item> <item name="android:textSize">35sp</item> <item name="android:textColor">#FF000000</item> <item name="android:background">@drawable/symbol_dark_button_selector</item> </style>
</resources>
为*
-
+
=
按钮设置style
属性,添加SymbolDarkBtnStyle
风格;
<LinearLayout android:layout_width="0dp" android:layout_height="match_parent" android:layout_weight="1" android:orientation="vertical">
<Button android:id="@+id/btn_mul" android:text="*" android:layout_weight="1" android:onClick="onClick" android:layout_width="match_parent" android:layout_height="0dp" style="@style/SymbolDarkBtnStyle"/>
......
</LinearLayout>
显示区域也可以使用style
,
在res\values\styles.xml
文件中,定义一个TextAreaStyle
。
<style name="TextAreaStyle"> <item name="android:textColor">#FFFFFFFF</item> <item name="android:textSize">45sp</item> <item name="android:gravity">center_vertical|right</item> </style>
使用TextAreaStyle
<LinearLayout android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="1" android:orientation="vertical">
<TextView android:id="@+id/result_area" android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="1" style="@style/TextAreaStyle" />
<View android:layout_width="match_parent" android:layout_height="5dp" android:background="#FF5C6265" />
<TextView android:id="@+id/formula_area" android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="1" style="@style/TextAreaStyle" />
</LinearLayout>
至此,计算器界面美化完成。