从版本23.4.0切换到Android设计支持库的24.2.1版后, BottomSheetBehavior 停止了为我工作。 BottomSheet显示为打开,在调用setState(BottomSheetBehavior.STATE_COLLAPSED)
时不会关闭。这不会发生在BottomSheetBehaviour按预期为我工作的设计库的23.4.0上。
版本24中是否有任何更改需要以不同方式使用BottomSheetBehavior?
这是我的布局文件:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/button"
android:text="Open Bottom Sheet"
/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/close_button"
android:text="Close Bottom Sheet"
/>
</LinearLayout>
<LinearLayout
android:id="@+id/bottom_sheet"
android:layout_width="match_parent"
android:layout_height="100dp"
android:orientation="horizontal"
android:background="@android:color/holo_green_light"
app:layout_behavior="android.support.design.widget.BottomSheetBehavior"/>
这是我正在使用的活动代码:
public class ScrollingActivity extends AppCompatActivity implements View.OnClickListener {
private View m_bottomSheet;
private BottomSheetBehavior m_behaviour;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_scrolling);
m_bottomSheet = findViewById(R.id.bottom_sheet);
m_behaviour = BottomSheetBehavior.from(m_bottomSheet);
((Button)findViewById(R.id.button)).setOnClickListener(this);
((Button)findViewById(R.id.close_button)).setOnClickListener(this);
}
@Override
public void onClick(View v) {
switch(v.getId()){
case R.id.button:
m_behaviour.setState(BottomSheetBehavior.STATE_EXPANDED);
break;
case R.id.close_button:
m_behaviour.setState(BottomSheetBehavior.STATE_COLLAPSED);
break;
}
}
}
任何建议都将不胜感激。
答案 0 :(得分:12)
m_behaviour.setPeekHeight(0);
默认为&#34; peek&#34;状态,所以如果你不想看它,你需要将偷看高度设置为0。
答案 1 :(得分:2)
app:behavior_peekHeight="0dp"
app:layout_behavior="@string/bottom_sheet_behavior"
您可以在布局中将峰值高度设置为0dp,而无需以编程方式设置