看起来TextInputLayout
只是在里面不起作用ViewPager
。
错误是:
膨胀类 android.support.design.widget.TextInputLayout 时出错
Appcompat
并Design library
添加。Theme
是正确的。
我PageAdapter
用来膨胀和填充ViewPager
.
TextInputLayout
视图在应用程序的所有其他部分膨胀得很好。
我layout
为ViewPager
.
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<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/edit_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="My Edit Text" />
</android.support.design.widget.TextInputLayout>
</LinearLayout>