所以我创建了简单的Recycler View,但是在我的项目中,Text View我添加了EditText。参见下面的代码
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<android.support.design.widget.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/animal">
<android.support.v7.widget.AppCompatEditText
android:text="@string/tv_animal"
android:id="@+id/tv_animal_type"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="20dp"
android:textSize="20sp" />
</android.support.design.widget.TextInputLayout>
</LinearLayout>
请参见其他代码here。
仅此而已。当我尝试滚动时,我的应用程序冻结了。 在日志中,我看到
我/编舞:跳过218帧!该应用程序可能也在做 它的主线程上有很多工作。
但是它只是滚动了简单的回收站视图,而没有任何工作。
这仅发生在我的xiaomy设计上,但在其他Android设备(如Samsung或Nexus或具有更高MIUI版本的Xiaomy)上都可以。
是否有解决此MIUI问题的解决方法?