<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<fragment
android:id="@+id/fragment"
android:name="com.project.testapplication.WritingArFragment"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:background="@android:color/darker_gray"
android:minHeight="?attr/actionBarSize"
android:theme="?attr/actionBarTheme">
<android.support.design.widget.FloatingActionButton
android:id="@+id/up"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="38dp"
android:clickable="true"
app:backgroundTint="@android:color/transparent"
app:srcCompat="@drawable/ic_arrow_upward_white_24dp" />
</android.support.v7.widget.Toolbar>
<android.support.v4.widget.NestedScrollView
android:id="@+id/nestedScroll"
android:layout_width="match_parent"
android:layout_height="300dp"
android:fillViewport="true"
app:behavior_hideable="true"
app:behavior_peekHeight="0dp"
app:layout_behavior="@string/bottom_sheet_behavior">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<include layout="@layout/bottom_sheet"></include>
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
</android.support.design.widget.CoordinatorLayout>
这部分是我的ui界面action_main.xml,我想在选择的场景中添加3D对象。为此,我决定使用模态底板。我单击按钮并打开嵌套的滚动视图,而不是选择对象,然后再次向下滚动。但是,当我单击FAB向上按钮时,嵌套的滚动视图会停留在片段后面(Java部分运行良好),因此它不会出现在屏幕上。我正在使用ArFragment(ar.sceneform:plugin1.6.0)。我没有发现我的错在哪里。谢谢:)
FloatingActionButton openBS = (FloatingActionButton) findViewById(R.id.up);
View nestedScroll = (View) findViewById(R.id.nestedScroll);
mBottomSheetBehaviour = BottomSheetBehavior.from(nestedScroll);
openBS.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
mBottomSheetBehaviour.setState(BottomSheetBehavior.STATE_EXPANDED);
}
});
这是MainActivity.java
答案 0 :(得分:0)
请按照本教程进行操作,以使其正常工作
https://www.androidhive.info/2017/12/android-working-with-bottom-sheet/
答案 1 :(得分:0)
使用导航视图时,我遇到相同的问题。确实,菜单出现在片段的后面。您可以尝试android:elevation