在卡片视图中使用时,Android 中带有圆角的 Persistent Bottom Sheet 会崩溃
Posted
技术标签:
【中文标题】在卡片视图中使用时,Android 中带有圆角的 Persistent Bottom Sheet 会崩溃【英文标题】:Persistent Bottom Sheet with rounded corners in Android crashes when used in a card view 【发布时间】:2019-11-03 01:25:06 【问题描述】:我在 android 中创建了一个持久性底部工作表,目的是显示一个包含有关位置的附加信息的 ListView。我希望床单有圆角。我得到了大量模态对话框的结果,但没有得到持久的结果。有可能还是应该使用模态版本?
正如此处的答案所建议的,我尝试将其包装在卡片视图中,但当我尝试打开片段时应用程序崩溃。
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_
android:layout_
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
tools:context=".fragments.MapFragment">
<RelativeLayout
android:layout_
android:layout_>
<androidx.cardview.widget.CardView
android:layout_
android:layout_
android:layout_margin="5dp"
app:cardCornerRadius="20dp">
<fragment
android:id="@+id/autocomplete_fragment"
android:name="com.google.android.libraries.places.widget.AutocompleteSupportFragment"
android:layout_
android:layout_
tools:layout="@layout/places_autocomplete_item_powered_by_google" />
</androidx.cardview.widget.CardView>
<com.google.android.gms.maps.MapView
android:id="@+id/mapView"
android:layout_
android:layout_ />
</RelativeLayout>
<androidx.cardview.widget.CardView
android:layout_
android:layout_
app:cardCornerRadius="24dp"
app:cardElevation="8dp"
app:layout_behavior="@string/bottom_sheet_behavior"
app:behavior_hideable="true"
app:behavior_peekHeight="55dp">
<androidx.core.widget.NestedScrollView
android:id="@+id/bottom_sheet"
android:layout_
android:layout_>
<TextView
android:id="@+id/tvBottomSheet"
android:layout_
android:layout_
android:text="@string/placeholder_text"
android:textColor="@color/colorCommon_BLACK"
android:textSize="37sp" />
</androidx.core.widget.NestedScrollView>
</androidx.cardview.widget.CardView>
</androidx.coordinatorlayout.widget.CoordinatorLayout>
【问题讨论】:
检查这个问题:***.com/questions/43852562/… @RasoolGhana 我做到了。它用于模态对话框。不适合我。 @nachiketa 我试过你的代码,也许你的fragment
有问题,删除片段并且你的布局工作正常。我复制你的布局,只删除fragment
和android:textColor
,android:text="@string/placeholder_text"
在TextView
【参考方案1】:
使用新的Material Component 库,您可以使用shapeAppearanceOverlay
属性customize the shape 组件。
你可以使用类似的东西:
<!-- BottomSheet -->
<style name="CustomBottomSheet" parent="Widget.MaterialComponents.BottomSheet">
<item name="shapeAppearanceOverlay">@style/CustomShapeAppearanceOverlay.MaterialComponents.BottomSheet</item>
....
</style>
<style name="CustomShapeAppearanceOverlay.MaterialComponents.BottomSheet" parent="">
<item name="cornerSizeTopRight">16dp</item>
<item name="cornerSizeTopLeft">16dp</item>
<item name="cornerSizeBottomRight">0dp</item>
<item name="cornerSizeBottomLeft">0dp</item>
</style>
然后您可以将此样式应用于您的单个组件或主题应用程序。
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.MaterialComponents.Light">
...
<item name="bottomSheetStyle">@style/CustomBottomSheet</item>
</style>
如果您使用的是非模态底页,只需应用样式即可。例如:
<LinearLayout
android:id="@+id/standardBottomSheet"
app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior"
style="?attr/bottomSheetStyle"
...>
【讨论】:
应用程序崩溃了 @Akki 只是一种没有代码的样式,很难崩溃。发布包含所有详细信息和堆栈跟踪的问题。【参考方案2】:你可以为你的底页背景背景添加形状
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="@color/you_color"/>
<corners
android:bottomRightRadius="2dp"
android:bottomLeftRadius="2dp"
android:topLeftRadius="2dp"
android:topRightRadius="2dp"/>
</shape>
【讨论】:
【参考方案3】:您可以使用卡片视图包裹您的工作表布局,使其具有圆角。
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.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_>
<androidx.cardview.widget.CardView
android:layout_
android:layout_
app:layout_behavior="@string/bottom_sheet_behavior"
app:cardCornerRadius="24dp"
app:cardElevation="8dp"
app:behavior_hideable="true"
app:behavior_peekHeight="55dp">
<androidx.core.widget.NestedScrollView
android:id="@+id/bottom_sheet"
android:layout_
android:layout_>
<TextView
android:id="@+id/tvBottomSheet"
android:layout_
android:layout_
android:text="ABC"
android:textSize="37sp" />
</androidx.core.widget.NestedScrollView>
</androidx.cardview.widget.CardView>
</androidx.coordinatorlayout.widget.CoordinatorLayout>
【讨论】:
@nachiketa 抱歉,请使用androidx.cardview.widget.CardView
作为我编辑后的答案再试一次。
应用程序仍然崩溃,logcat 上没有任何内容。
有什么问题吗?我仍然运行没有任何问题。检查我上次编辑的内容,如果它仍然不起作用,只需将 NestedScrollView
包装为 androidx.cardview.widget.CardView
并设置以下属性:app:layout_behavior
、app:behavior_hideable
、app:behavior_peekHeight
、app:cardCornerRadius
、app:cardElevation
@nachiketa 显示所有布局文件以检查更多细节以上是关于在卡片视图中使用时,Android 中带有圆角的 Persistent Bottom Sheet 会崩溃的主要内容,如果未能解决你的问题,请参考以下文章
Android CardView 圆角在 27 之前在 Android API 上被破坏
android中带有Endless Listview Scroll的AsynTask