我有一个自LinearLayout
扩展的自定义视图。
在init{}
中,我调用inflate
函数来增加布局。
inflate(context, R.layout.base_layout, this)
我记录了充气速度,如下所示:
// Log.
inflate(context, R.layout.base_layout, this)
// Log
需要1ms
来扩大布局。太棒了!
但是当我的布局具有TextInputLayout时,它会增加到120ms
我的布局:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:id="@+id/randomName2"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:orientation="horizontal"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toStartOf="@+id/randomName"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" >
<android.support.design.widget.TextInputLayout
android:id="@+id/randomName4"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:paddingTop="8dp">
<android.support.design.widget.TextInputEditText
android:id="@+id/randomName3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="text" />
</android.support.design.widget.TextInputLayout>
</LinearLayout>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/randomName"
android:layout_width="wrap_content"
android:layout_height="0dp"
android:layout_marginBottom="4dp"
android:gravity="bottom"
android:orientation="horizontal"
app:layout_constraintBottom_toBottomOf="@id/randomName2"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="@id/randomName2"/>
</android.support.constraint.ConstraintLayout>
如何解决此120ms
问题?创建片段时,这会导致FPS滞后。
谢谢您的任何建议。