天天看点

android计算器按钮颜色,安卓学习之计算器样式

界面效果:

android计算器按钮颜色,安卓学习之计算器样式

布局管理器:LinearLayout

部分布局文件如下:

屏幕:

android:layout_marginBottom="@dimen/calculator_button_margin"

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:layout_weight="3">

android:id="@+id/screen"

android:text="test"

android:layout_marginBottom="@dimen/calculator_screen_bottom"

android:layout_width="match_parent"

android:layout_height="match_parent"

android:background="@drawable/shape_textview"/>

按钮:

android:layout_marginBottom="@dimen/calculator_button_margin"

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:layout_weight="1">

android:id="@+id/id_clear"

android:layout_width="wrap_content"

android:layout_height="match_parent"

android:background="@drawable/button_selector" //设置背景为一个选择器,选择器下面介绍

android:textColor="@drawable/color_button_text" //按钮文字颜色设置

android:layout_marginRight="@dimen/calculator_button_margin"

android:layout_weight="1" //按钮权重,相对其他按钮

android:text="@string/clear"/>

按钮文字颜色控制:drawable/color_button_text

按钮选择器:drawable/button_selector.xml

//按下按钮效果

//未按按钮效果

按钮按下时布局:drawable/shape_button_pressed

android:bottom="10dp"

android:left="10dp"

android:right="10dp"

android:top="10dp" />

按钮未按时布局:

android:bottom="10dp"

android:left="10dp"

android:right="10dp"

android:top="10dp" />

震动需在manifest添加: