我试图在ConstraintLayout中使用支持设计库中的TextInputLayout,但是出现了错误:
android.widget.LinearLayout$LayoutParams
cannot be cast to android.support.constraint.ConstraintLayout$LayoutParams
如何使用ConstraintLayout实现与support.design.widget.TextInputLayout相同的功能?
完整布局在这里:http://pastebin.com/TjC0FAdS
问题是:
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/constraintLayout">
<android.support.design.widget.TextInputLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<AutoCompleteTextView
android:layout_width="0dp"
android:layout_height="0dp"
android:singleLine="true"
android:id="@+id/email"
android:hint="@string/prompt_email"
app:layout_constraintLeft_toRightOf="@+id/imageView3"
android:layout_marginStart="8dp"
app:layout_constraintTop_toBottomOf="@+id/logo"
android:layout_marginTop="16dp"
app:layout_constraintRight_toRightOf="@+id/constraintLayout"
android:layout_marginEnd="16dp" />
</android.support.design.widget.TextInputLayout>
</android.support.constraint.ConstraintLayout>
答案 0 :(得分:3)
app:layout_constraintLeft_toRightOf
等属性要求ConstraintLayout
为父视图。将这些属性移动到TextInputLayout
,它应该可以正常工作。
答案 1 :(得分:0)
根据我的经验,阅读Android文档是一个很好的第一步。仿真器运行良好,但您确实希望熟悉OS级别的设计模式和交互。
如果您或您的公司有测试设备,我建议您使用Android手机几周。我使用Android除了通话/短信之外的一切。您将开始了解iOS和Android之间的细微差别。例如:使用UIAlerts与Toasts vs Dialogs
-
有关资源的信息,请访问:google.com/design/spec&amp; http://blog.mengto.com/how-to-design-for-android-devices/和中篇文章。
Android的文档是可以的,但最好的学习方法是与之前为Android设计的设计师配对。即使只是为了了解iOS和Android之间的差异,你也会学到很多东西。