Android でカスタム コンポーネントを使用して独自のライブラリを作成します。コンポーネントは非常に単純です:
<android.support.design.widget.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:baselineAligned="true"/>
<EditText
android:id="@+id/edtExample"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/simpleText"/>
</android.support.design.widget.TextInputLayout>
Android プロジェクトに入れると動作しますが、カスタム コンポーネント ライブラリでこれを試すと動作しません。デバッグでは、EditText をクリックすると、TextInputLayout が android.R.attr.state_focused を取得していないことがわかります。TextInputLayout のバグですか?