Похож, что 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>