我想这样做,当在另一个View上调用.bringToFront()函数时,FAB将出现在它后面。但看起来FAB总是处于前台。
我创建了一个快速项目来说明我的观点。
activity_main.xml中
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.samyzarour.floatingbuttontest.MainActivity">
<android.support.design.widget.FloatingActionButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"/>
<TextView
android:id="@+id/testText"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="Hello World!"
android:background="@android:color/holo_blue_bright"/>
</RelativeLayout>
MainActivity.java
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
findViewById(R.id.testText).bringToFront();
}
}
渲染
没有足够的图片声誉,所以如果需要,请点击这里:http://i.imgur.com/qZPu4Vd.png
R.id.testText放置在RelativeLayout中的浮动操作按钮之后,这意味着FAB应该出现在TextView后面。然后我在R.id.testText上调用.brintToFront()将它带到前台,但FAB保持在前台。
我在这里做错了吗?请让我知道如何强迫FAB留在View。