使底部工作表在顶部 android studio 处有阴影
我有一个底页
,我希望顶部有一个阴影
,因为背面片段是白色的,底页也是白色的,令人困惑
下面是代码底片的
<androidx.core.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/bottom_sheet"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:behavior_hideable="true"
app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior">
<RelativeLayout
android:id="@+id/bottomsheet"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Bottom Sheet Text"
android:textSize="30sp"/>
</RelativeLayout>
</androidx.core.widget.NestedScrollView>
I am having a bottom sheet
and i would like the top to have a shadow
because the back fragment is white and the bottom sheet is also white and is confusing
Below is the code of the bottom sheet
<androidx.core.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/bottom_sheet"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:behavior_hideable="true"
app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior">
<RelativeLayout
android:id="@+id/bottomsheet"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Bottom Sheet Text"
android:textSize="30sp"/>
</RelativeLayout>
</androidx.core.widget.NestedScrollView>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
添加
到您的
bottomsheet
视图组(RelativeLayout)add
to your
bottomsheet
viewgroup(RelativeLayout)