我正在开发一个

Android应用程序,人们将输入他们的账单.

我有一个EditText,人们输入金额.

我想要做的是例如如果一个人输入“2”,它应该自动转换为“0.02”.然后,如果他/她想要输入22 $,他应该按下2个,2个,0个和0个按钮.它就像“22.00”.如何使用EditText设法完成此操作.你能给我一些想法吗?

以下是相关代码:

android:id="@+id/amount"

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:layout_marginBottom="20dip"

android:layout_marginTop="5dip"

android:inputType="number"

android:hint="@string/enter_amount"

android:singleLine="true" />

EditText payment = (EditText) findViewById(R.id.amount);

if (payment.getText().toString().length() > 0){

total_amount =Integer.parseInt(payment.getText().toString()) ;

}

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐