如何向材质设计TextInputLayout添加值(setText)?

问题描述 投票:-3回答:1

我如何在Android Studio中将Text设置为材质设计TextInputLayout(材质设计)?

 //setValue
   BarCode.setText(MainPage.ResultCode.getText());
    TextInputLayout BarCode;

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

        BarCode = findViewById(R.id.barcodeAdd);
        BarCode.setText(MainPage.ResultCode.getText()

上面的代码对我不起作用。

我的xml代码:

<com.google.android.material.textfield.TextInputLayout
     android:id="@+id/barcodeAdd"
     android:layout_width="match_parent"
     android:layout_height="wrap_content"   

     style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox">

      <com.google.android.material.textfield.TextInputEditText
           android:layout_width="match_parent"
           android:layout_height="wrap_content"
           android:hint="Bar Code"/>

</com.google.android.material.textfield.TextInputLayout>
java android settext
1个回答
1
投票

这是语法。在您的代码中适当使用它:

mTextInputLayout.getEditText().setText("ur text");

mTextInputLayout.getEditText().getText()
© www.soinside.com 2019 - 2024. All rights reserved.