14

我有非常简单的布局,我使用来自设计支持库android.support.design.widget.TextInputLayout的新视图

<android.support.design.widget.TextInputLayout
    android:id="@+id/til"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content">
    <EditText
        android:id="@+id/textDialog"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:hint="First Name"/>
</android.support.design.widget.TextInputLayout>

在充气时我得到异常:

Caused by: java.lang.RuntimeException: Failed to resolve attribute at index 18
            at android.content.res.TypedArray.getColor(TypedArray.java:401)
            at android.support.design.widget.CollapsingTextHelper.setCollapsedTextAppearance(CollapsingTextHelper.java:166)
            at android.support.design.widget.TextInputLayout.<init>(TextInputLayout.java:106)
            at java.lang.reflect.Constructor.newInstance(Native Method)
            at java.lang.reflect.Constructor.newInstance(Constructor.java:288)
            at android.view.LayoutInflater.createView(LayoutInflater.java:607)
            at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:743)
            at android.view.LayoutInflater.rInflate(LayoutInflater.java:806)
            at android.view.LayoutInflater.inflate(LayoutInflater.java:504)
            at android.view.LayoutInflater.inflate(LayoutInflater.java:414)
            at android.view.LayoutInflater.inflate(LayoutInflater.java:365)
            at com.android.internal.policy.impl.PhoneWindow.setContentView(PhoneWindow.java:381)
            at android.app.Activity.setContentView(Activity.java:2144)
            at com.example.trybindinglib.MainActivity.onCreate(MainActivity.java:24)
            at android.app.Activity.performCreate(Activity.java:5933)
            at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1105)
            at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2298)
            at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2407)
            at android.app.ActivityThread.access$800(ActivityThread.java:149)
            at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1324)
            at android.os.Handler.dispatchMessage(Handler.java:102)
            at android.os.Looper.loop(Looper.java:211)
            at android.app.ActivityThread.main(ActivityThread.java:5321)
            at java.lang.reflect.Method.invoke(Native Method)
            at java.lang.reflect.Method.invoke(Method.java:372)
            at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1016)
            at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:811)
4

6 回答 6

15

您是否添加了设计支持库?添加依赖:

compile 'com.android.support:design:22.2.0'

到你的 build.gradle

于 2015-06-04T09:06:59.203 回答
9

如果您将Theme.AppCompat其用作基本应用程序主题,请textColorError在其中定义。TextInputLayout 需要它在错误状态下使用。否则将显示崩溃日志,如上所述。

例子:

<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
        <!-- Customize your theme here. -->
        <item name="textColorError"> @color/design_textinput_error_color_light </item>
</style>

这是@color/design_textinput_error_color_light为了AppCompat.Light@color/design_textinput_error_color_dark为了AppCompat.Dark

于 2017-03-14T06:49:06.793 回答
6

确保应用主题扩展了 AppCompat 主题。

    <!-- Base application theme. -->
    <style name="AppTheme" parent="@style/Theme.AppCompat">
        <!-- Customize your theme here. -->
    </style>
于 2015-05-30T20:46:19.363 回答
4

我在使用 Android Studio 生成的原始应用程序上遇到了同样的问题。

我通过首先将以下依赖项添加到我的 build.gradle compile 'com.android.support:appcompat-v7:22.2.0'来解决它

然后我不得不按照 Aleksey 的建议将主题库修改为@style/Theme.AppCompat。请注意,您可能必须重命名您的基本主题,因为 appcompat 库中有一个具有相同名称(AppTheme)的主题,并且 AS 似乎在两者之间混淆了......

希望这可以帮助!

于 2015-06-08T09:31:30.967 回答
1

确保您的 XML 看起来像:

<android.support.design.widget.TextInputLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <EditText
        android:id="@+id/search"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="search" />
</android.support.design.widget.TextInputLayout>

完整示例:

http://hmkcode.com/android-textinputlayout/

无需更改主题样式

于 2015-10-07T17:24:08.660 回答
1

getColor 崩溃,你可以尝试两件事:

1.不要使用EditText,而是使用android.support.v7.widget.AppCompatEditText。例如:

<android.support.design.widget.TextInputLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                app:errorEnabled="true">
                <android.support.v7.widget.AppCompatEditText
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:hint="First Name"
                    android:inputType="textPersonName"
                    android:singleLine="true" />

</android.support.design.widget.TextInputLayout>

2.If that doesn't help, this might, but it will remove the color of your hint when the input field is selected. 添加:

            app:hintTextAppearance="@android:style/TextAppearance.Small"

到您的 TextInputLayout。

于 2015-09-22T09:28:53.933 回答