TextInputLayout not showing EditText hint before user focus on it

后端 未结 16 966
时光说笑
时光说笑 2020-11-27 13:50

I am using recently released Android Design Support Library to show floating label with EditTexts. But i am facing the problem that the Hint on the EditText is not showing w

16条回答
  •  爱一瞬间的悲伤
    2020-11-27 14:13

    This issue is resolved in v23.0.1 of support design library. I also updated my appcompat-v7 to 23.0.1, compileSdkVersion to 23 & buildToolsVersion to 23.0.1 in build.gradle.

    android {    
    compileSdkVersion 23
    buildToolsVersion "23.0.1"
    }
    
    dependencies {
    compile 'com.android.support:appcompat-v7:23.0.1'
    compile 'com.android.support:design:23.0.1'
    }
    

提交回复
热议问题