使用实现'com.aldoapps:autoformatedittext:0.9.3'进行自动文本格式化

时间:2019-03-29 14:34:02

标签: java android

因此,我想在用户在EditText中键入数字时设置数字格式,以便以类似于货币的模式显示。

我正在使用实现'com.aldoapps:autoformatedittext:0.9.3',从前端开始一切正常。 但是,当我按“确定”按钮进行计算时,该应用程序将关闭。

在主类中,我将该变量声明为Private AutoFormatEditText数字;但它仍在停止,我也将其声明为Private EditText,但它仍在停止。有什么我应该做的我还没有做的事情吗?请帮忙 谢谢

XML

<com.aldoapps.autoformatedittext.AutoFormatEditText
    android:id="@+id/Number"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginTop="32dp"
    android:layout_marginEnd="8dp"
    android:layout_marginRight="8dp"
    android:ems="10"
    android:inputType="Number"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintTop_toTopOf="parent" />

gradle

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso- 
core:3.0.2'
implementation'com.aldoapps:autoformatedittext:0.9.3'
}

主要班级

public class MainActivity extends AppCompatActivity {

public AutoFormatEditText Number, Number1; 
private Button buttonSend;


@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    Number = findViewById(R.id.Number);
    Number1 = findViewById(R.id.Number1);

0 个答案:

没有答案