我使用com.android.support:design.My中的TextInputLayout。問題是,當editText獲取焦點時,提示不會顯示在editText上方,並且當editText在輸入後失去焦點在它中,提示出現在editText上方。我想讓提示出現在editText上方,當它失去焦點時,除了外觀外,它還會獲得焦點。 我的XML文件:TextInputLayout在輸入時不顯示提示
<android.support.design.widget.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.v7.widget.AppCompatEditText
android:id="@+id/et_id"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="number"
android:hint="@string/id_hint"/>
</android.support.design.widget.TextInputLayout>
,並在我的gradle這個我使用:
compile 'com.android.support:design:26.0.2'
非常感謝您
使用的支持:設計庫版本25.3.1。編譯'com.android.support:design:25.3.1' – Rose