0
我在android中創建了我自己的帶有自定義組件的庫。組件是非常簡單的:android.support.design.widget.TextInputLayout不能在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項目它是工作,但是當我嘗試這個自定義組件庫,它不工作。在調試中,我看到TextInputLayout在單擊EditText時沒有獲得android.R.attr.state_focused。這是TextInputLayout的錯誤?
通常情況下,如果答案包含對代碼意圖做什麼的解釋,以及爲什麼解決問題而不介紹其他問題 –