gpt4 book ai didi

android - Google 的 BottomSheet 出现在屏幕顶部

转载 作者:行者123 更新时间:2023-12-04 23:50:15 26 4
gpt4 key购买 nike

我在设计库中使用 android 的新 BottomSheet。
问题是我在 Fragment 中使用它,它导致它出现在屏幕顶部而不是出现在底部。

这是我的 Activity xml:

<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"
xmlns:app="http://schemas.android.com/apk/res-auto"
tools:context="ir.aidinsoft.quicktaxi.MainActivity">

<android.support.v7.widget.Toolbar
android:id="@+id/tlbr_acMain"
android:elevation="5dp"
android:background="@color/colorPrimary"
android:layout_width="match_parent"
android:layout_height="wrap_content" />

<android.support.design.widget.CoordinatorLayout
android:id="@+id/crdl_acMain"
android:layout_below="@+id/tlbr_acMain"
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.v4.widget.NestedScrollView
android:id="@+id/nscv_acMain"
android:layout_width="match_parent"
android:layout_height="match_parent">

<!-- This Layout Is Replacement Layout For Fragment -->
<RelativeLayout
android:id="@+id/frml_acMain"
android:layout_width="match_parent"
android:layout_height="match_parent" />

</android.support.v4.widget.NestedScrollView>

</android.support.design.widget.CoordinatorLayout>

</RelativeLayout>

这是我的 fragment xml:

<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="ir.aidinsoft.quicktaxi.MyFragment">

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">

<io.codetail.widget.RevealFrameLayout
android:id="@+id/rvfl_frTaxi"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="invisible">

<fragment
android:id="@+id/frag_frTaxi_map"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent" />

</io.codetail.widget.RevealFrameLayout>

</RelativeLayout>

<android.support.design.widget.FloatingActionButton
android:id="@+id/facb_frTaxi_request"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />

<!-- My Bottom Sheet Layout -->
<FrameLayout
android:id="@+id/frml_frTaxi_bottomSheet"
android:layout_width="match_parent"
android:layout_height="360dp"
android:background="@color/colorPrimaryLight"
app:behavior_hideable="true"
app:layout_behavior="android.support.design.widget.BottomSheetBehavior" />

</android.support.design.widget.CoordinatorLayout>

所以在用这段代码替换布局中的 fragment 之后:

getSupportFragmentManager().beginTransaction().replace(R.id.frml_acMain,  taxiFragment).commit();

我添加此代码以在 FAB 单击状态下显示 BottomSheet。
fragment 的Java代码:

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.fragment, container, false);
fab = (FloatingActionButton) view.findViewById(R.id.facb_frTaxi_request);
bottomSheet = view.findViewById(R.id.frml_frTaxi_bottomSheet);
BottomSheetBehavior bottomSheetBehavior = BottomSheetBehavior.from(bottomSheet);
return view;
}

@Override
public void onResume() {
super.onResume();
fab.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
bottomSheetBehavior.setState(BottomSheetBehavior.STATE_EXPANDED);
}
});
}

问题是什么?我做错了什么?
TnQ

最佳答案

如果您使用 animateLayoutChanges在您的布局中,删除它可以解决您的问题。

关于android - Google 的 BottomSheet 出现在屏幕顶部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37191352/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com