本文介绍了按钮始终显示在 FrameLayout 的顶部的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有这样的 FrameLayout:
I have FrameLayout like this:
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="changeColor"
android:text="new button"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="some text"/>
</FrameLayout>
问题是按钮显示在顶部,而 FrameLayout 类概览告诉我们:子视图绘制在堆栈中,最近添加的子视图位于顶部".
The problem is that the button is displayed on top while FrameLayout class overview tells us this: "Child views are drawn in a stack, with the most recently added child on top".
推荐答案
棒棒糖及更高版本中的按钮具有默认高度导致他们总是在上面画画.您可以通过覆盖来更改此设置默认的 StateListAnimator.
尝试将其放入按钮 XML 中:
Try putting this into your button XML:
android:stateListAnimator=@null"
FrameLayout 现在应该覆盖按钮.
The FrameLayout should now cover thebutton.
这篇关于按钮始终显示在 FrameLayout 的顶部的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!