为什么我不能将TextInputLayout(来自支持设计库)与我们的Theme.Appcompat一起使用



我使用TextInputLayout,如下所示

<android.support.design.widget.TextInputLayout
android:id="@+id/text_input_layout_name"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<EditText
android:id="@+id/edit_text_name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/hint_full_name"
android:inputType="text" />
</android.support.design.widget.TextInputLayout>

如果我的应用程序使用Theme.AppCompat,则代码工作正常

Theme.AppCompat 对于下面的棒棒糖是强制性的,因此我在 values\theme.xml 中使用它。

但我的问题是为什么我不能将材料主题用于棒棒糖,即当我在 values-v21\theme 中使用 Theme.Material 时.xml应用程序崩溃.... 关于这个问题有什么线索吗?

<style name="MyTheme" parent="@android:style/Theme.Material.Light.DarkActionBar">

下面应用程序崩溃并显示运行时异常 在膨胀时,我得到他的二进制膨胀错误 XML

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)

设计库中的 Widget 依赖于从最新的 Android API 级别向后移植的功能。这包括支持真实的可绘制对象、颜色和属性分辨率,以及使用 AppCompat 版本的平台属性(如colorAccentcolorControlNormalcolorError等)。

如果您的应用已将 AppCompat 用于低于 API 21 的平台,则可以安全地使用上述 AppCompat,也包括 API 21。不仅如此,我鼓励你这样做。它包含从更新的 API 级别向后移植的错误修复和功能。

省去麻烦,不要尝试同时使用 AppCompat 和 Material 主题,除非您确切地知道自己在做什么。

如果你的应用是使用 minSdkVersion 21 设计的,并且你决定绝对不想使用 AppCompat,那么设计库有一个分支,它只使用框架功能。

https://github.com/commonsguy/cwac-crossport

它仍然使用support-v4库的一部分(这完全没问题):

这个项目依赖于前support-v4support-annotations和三个部分:support-compatsupport-core-uisupport-core-utils。所有这些都将通过传递依赖项拉入,并且您可能已经在使用部分或全部依赖项。

将以下样式用于 TextInputLayout:

<style name="MyTheme" parent="Widget.Design.TextInputLayout">

相关内容

  • 没有找到相关文章

最新更新