ListPopupWindow 动画从文本字段开始,而不是在文本字段下方
ListPopupWindow animation starts in textfield instead of below it
我添加了一个 ListPopupWindow
锚定到一个 TextInputLayout
。我遇到的问题是弹出窗口的动画在 TextInputLayout
:
内开始
请注意,问题出在动画开始的地方。动画结束后,弹出窗口正确显示在 TextInputLayout
.
下方
我需要做什么才能让动画在 TextInputLayout
下方开始播放?注意不是我自己的动画,是默认的。
布局片段:
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/textInputLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="16dp"
android:layout_marginTop="16dp"
android:layout_marginEnd="16dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/editText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="hint" />
</com.google.android.material.textfield.TextInputLayout>
代码为 ListPopupWindow
:
val arrAdapter = ArrayAdapter<String>(
this,
R.layout.dropdown_menu_popup_item,
listOf("hello", "world")
)
val listPopupWindow = ListPopupWindow(this).apply {
anchorView = findViewById(R.id.textInputLayout)
setAdapter(arrAdapter)
}
findViewById<Button>(R.id.button).setOnClickListener {
listPopupWindow.show()
}
代码也可在 Github 上获得:https://github.com/wondering639/stack-listpopupwindow-animation-start
提示:这只是一个简化的测试用例。我知道 AutoCompleteTextView
,但我确实需要手动显示一个 ListPopupWindow
。
您可以使用 setEpicenterBounds(Rect) 并在锚点的底部传递一个 Rect 宽度为全宽但高度为平面的高度。
很显然调用setEpicenterBounds(Rect)
时anchor view需要已经布局好,因为需要它的大小,调用的最佳位置可能就在show()
之前,如果实在不行的话在那里做并且锚视图没有使用固定大小,你可以使用 ViewTreeObserver.OnGlobalLayoutListener
.
val anchorView = findViewById<View>(R.id.textInputLayout)
val listPopupWindow = ListPopupWindow(this).apply {
this.anchorView = anchorView
setAdapter(arrAdapter)
}
findViewById<Button>(R.id.button).setOnClickListener {
listPopupWindow.epicenterBounds = Rect(0, anchorView.height, anchorView.width, anchorView.height)
listPopupWindow.show()
}
我添加了一个 ListPopupWindow
锚定到一个 TextInputLayout
。我遇到的问题是弹出窗口的动画在 TextInputLayout
:
请注意,问题出在动画开始的地方。动画结束后,弹出窗口正确显示在 TextInputLayout
.
我需要做什么才能让动画在 TextInputLayout
下方开始播放?注意不是我自己的动画,是默认的。
布局片段:
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/textInputLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="16dp"
android:layout_marginTop="16dp"
android:layout_marginEnd="16dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/editText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="hint" />
</com.google.android.material.textfield.TextInputLayout>
代码为 ListPopupWindow
:
val arrAdapter = ArrayAdapter<String>(
this,
R.layout.dropdown_menu_popup_item,
listOf("hello", "world")
)
val listPopupWindow = ListPopupWindow(this).apply {
anchorView = findViewById(R.id.textInputLayout)
setAdapter(arrAdapter)
}
findViewById<Button>(R.id.button).setOnClickListener {
listPopupWindow.show()
}
代码也可在 Github 上获得:https://github.com/wondering639/stack-listpopupwindow-animation-start
提示:这只是一个简化的测试用例。我知道 AutoCompleteTextView
,但我确实需要手动显示一个 ListPopupWindow
。
您可以使用 setEpicenterBounds(Rect) 并在锚点的底部传递一个 Rect 宽度为全宽但高度为平面的高度。
很显然调用setEpicenterBounds(Rect)
时anchor view需要已经布局好,因为需要它的大小,调用的最佳位置可能就在show()
之前,如果实在不行的话在那里做并且锚视图没有使用固定大小,你可以使用 ViewTreeObserver.OnGlobalLayoutListener
.
val anchorView = findViewById<View>(R.id.textInputLayout)
val listPopupWindow = ListPopupWindow(this).apply {
this.anchorView = anchorView
setAdapter(arrAdapter)
}
findViewById<Button>(R.id.button).setOnClickListener {
listPopupWindow.epicenterBounds = Rect(0, anchorView.height, anchorView.width, anchorView.height)
listPopupWindow.show()
}