72

EditText があり、その親は TextInputLayout です。この場合、テキスト入力ヒントのアニメーションは機能せず、単純な EditText のように機能します。誰かがそれを処理する方法を提案できますか。

以下は私のレイアウトです。

<android.support.design.widget.TextInputLayout
    android:id="@+id/text_input_layout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <EditText
        android:id="@+id/post_EditTextPostAnAd"
        style="@style/abc_EditView" />

</android.support.design.widget.TextInputLayout>
4

1 に答える 1

198

ヒントをTextInputLayoutに設定する必要 があります。コードは次のとおりです。

TextInputLayout textInputLayout = (TextInputLayout)findViewById(R.id.text_input_layout);
textInputLayout.setHint("Hello");

更新しました

コトリンの場合:

val textInputLayout = findViewById(R.id.text_input_layout)
textInputLayout.hint = "Hello"
于 2015-12-10T09:57:50.623 に答える