界面效果:
布局管理器: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添加: