Persistent BottomSheet:滑动以展开问题
Posted
技术标签:
【中文标题】Persistent BottomSheet:滑动以展开问题【英文标题】:Persistent BottomSheet: Swipe to Expand Issue 【发布时间】:2019-06-03 15:32:43 【问题描述】:我有一个CoordinatorLayout
,包括一个LinearLayout
作为我的BottomSheet。还有一个FrameLayout
(也是 CoordinatorLayout 的直接子代)。
<?xml version="1.0" encoding="utf-8"?>
<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_
android:layout_
tools:context=".MainActivity">
<FrameLayout
android:id="@+id/sketchViewGroup"
android:layout_
android:layout_ />
<LinearLayout
android:id="@+id/bottomSheet"
android:layout_
android:layout_
android:background="@drawable/rounded_top"
android:backgroundTint="@color/colorBottomSheetBackground"
android:orientation="vertical"
app:behavior_hideable="false"
app:behavior_peekHeight="@dimen/bottomSheetPeekHeight"
app:layout_behavior="android.support.design.widget.BottomSheetBehavior">
<LinearLayout
android:layout_
android:layout_
android:gravity="center_vertical"
android:orientation="horizontal">
<SeekBar
android:id="@+id/fixedPointsSeekBar"
style="@style/Widget.AppCompat.SeekBar.Discrete"
android:layout_
android:layout_
android:layout_marginStart="16dp"
android:layout_marginEnd="16dp"
android:max="10"
android:progress="10" />
</LinearLayout>
</LinearLayout>
我使用 Processing.jar 库在 FrameLayout
上绘制内容。
为了做到这一点,我创建了一个片段(在处理中称为 PFragement)并通过 SupportFragmentManager 将其添加到 FrameLayout。 PFragment 将 PApplet 作为构造函数。在 PApplet 中,画布绘制发生并且 width 和 height 被定义。此外,我调整了 PApplet 的大小以填充我的 FrameLayout。
class MainActivity : AppCompatActivity()
override fun onCreate(savedInstanceState: Bundle?)
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
val sketch = Sketch();
sketchViewGroup.post
sketch.sketchWidth = sketchViewGroup.width
sketch.sketchHeight = sketchViewGroup.height
// this works:
// sketch.sketchWidth = sketchViewGroup.width -1
// sketch.sketchHeight = sketchViewGroup.height -1
supportFragmentManager.beginTransaction().add(sketchViewGroup.id, PFragment(sketch)).commit();
和
public class Sketch extends PApplet
int sketchWidth = 100;
int sketchHeight = 100;
public void settings()
size(sketchWidth, sketchHeight);
public void setup()
background(0);
现在,连线的事情正在发生:当我将 Sketch 的大小调整到与 FrameLayout 的大小完全相同时,我的 BottomSheet 不再正确展开。但是,如果我减去我的草图大小之一,一切都会按预期工作。有人可以解释一下并告诉如何解决这个问题吗?
sketch.sketchWidth = sketchViewGroup.width
sketch.sketchHeight = sketchViewGroup.height
sketch.sketchWidth = sketchViewGroup.width -1
sketch.sketchHeight = sketchViewGroup.height -1
【问题讨论】:
【参考方案1】:看起来您的视图组的高度是MATCH_PARENT
,即-1
。当您从中减去 1 时,您将得到 -2
,它等于 WRAP_CONTENT
。所以我认为您只是将草图对象的高度设置为WRAP_CONTENT
?
【讨论】:
以上是关于Persistent BottomSheet:滑动以展开问题的主要内容,如果未能解决你的问题,请参考以下文章
具有 RecyclerView 的页面中 Persistent 或 Standard BottomSheet 的奇怪滚动行为和可见性