close

1. 字體大小  -> 利用 TextView放文字 , 在加入android:textSize="30sp"

 

2.

<EditText
android:id="@+id/input_number"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/title"
android:layout_below="@+id/title"
android:layout_marginTop="14dp"
android:ems="13"               設定欄位的左右寬度
android:inputType="numberDecimal"
android:text="222" />

 

3.

要讓文字靠右

android:gravity="center_vertical|righ

 

2013/02/01

4.

內容大小不同的button , 用

android:ems="4" 

可以使大小統一              

 

==============

 

2013/02/17 

Bug 修正

case R.id.btn_signed:
if(!display_str.equals("") && !display_str.equals("0") )//&& !(display_str.indexOf(".") != -1 && display_str.length()<=1) )
{
//total = 0 - Double.parseDouble(display_str);
if(display_str.indexOf("-") == -1) // minus not exist
{
input_number.setText("-" + display_str);
stack[stack_index] = Double.parseDouble("-" + display_str);        //2013.02.17 要做修改的為現在要做 operate的值 , 看現在的stack在哪邊就加在哪 , 不可以放stack[0]
}
else
{
input_number.setText(display_str.substring(1));
stack[stack_index] = Double.parseDouble(display_str.substring(1));   //2013.02.17 要做修改的為現在要做 operate的值 , 看現在的stack在哪邊就加在哪 , 不可以放stack[0]

}
}
else
{
input_number.setText("0");
}

break;

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 Justin258 的頭像
    Justin258

    Justin258的部落格

    Justin258 發表在 痞客邦 留言(0) 人氣()