최근 보조 라이브러리를 com.android.support:appcompat-v7:25.1.0
으로 업데이트했습니다. 힌트가 xml 파일을 통해 EditText
에 텍스트를 추가하면 떠오르지 않습니다.TextInputLayout Google 지원 라이브러리를 업데이트 한 후 힌트가 뜨지 않습니다.
나는 또한 this question을 보았지만 나에게 도움이되지 못했다.
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.1.0'
compile 'com.android.support.constraint:constraint-layout:1.0.0-beta4'
compile 'uk.co.chrisjenx:calligraphy:2.2.0'
compile 'com.android.support:design:25.1.0'
compile 'com.android.support:support-v4:25.1.0'
compile 'com.android.support:recyclerview-v7:25.1.0'
compile 'com.android.support:cardview-v7:25.1.0'
compile 'com.android.volley:volley:1.0.0'
compile 'com.github.bhargavms:DotLoader:1.0.1'
compile 'com.github.bumptech.glide:glide:3.7.0'
compile 'de.hdodenhof:circleimageview:2.1.0'
compile 'com.labo.kaji:fragmentanimations:0.1.1'
compile 'com.github.esafirm.android-image-picker:imagepicker:1.2.5'
testCompile 'junit:junit:4.12'
}
이 당신은 힌트가 있음을 분명히 알 수있는 문제
은 다음과 같습니다
<android.support.design.widget.TextInputLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
android:layout_marginBottom="16dp"
android:layout_marginEnd="16dp"
app:layout_constraintRight_toRightOf="parent"
android:layout_marginRight="16dp"
app:layout_constraintVertical_bias="0.0"
android:id="@+id/til1"
android:layout_marginStart="16dp"
app:layout_constraintLeft_toLeftOf="parent"
android:layout_marginLeft="16dp"
app:layout_constraintHorizontal_bias="0.33">
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="From"
android:inputType="time"
android:text="09:00 AM"
android:id="@+id/from_mon"
android:textSize="14sp" />
</android.support.design.widget.TextInputLayout>
내 Gradle을 종속성입니다 : 여기
내 XML 코드 떠있다.
안내하십시오. 당신이 종속성을 build.gradle에
심각한 버그 인 것 같습니다. 나는 최신 소스 atm에 액세스 할 수 없지만 필요한'EditText' 클래스를 변경했을 수도 있습니다. TextInputEditText를 사용해보십시오. –
@MikeM. TextInputEditText와 같은 문제. –
그래, 알려진 문제는 분명히 다음과 같습니다. http://code.google.com/p/android/issues/detail?id=230171&q=TextInputLayout&sort=-opened&colspec=ID%20Status%20Priority%20Owner%20Summary%20Stars%20Reporter% 20 개. 해당 라이브러리 버전을 사용하려면 코드의 텍스트를 설정하는 것이 좋습니다. 이상적은 아니지만 약 10 시간 전에보고 된 이래로 조사되기 조금 전의 것일 수 있습니다. –