2016-02-27 55 views
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的錯誤?

回答

0

這是android支持庫中的一個bug。我通知谷歌。

+0

通常情況下,如果答案包含對代碼意圖做什麼的解釋,以及爲什麼解決問題而不介紹其他問題 –

相關問題