android -constraintLayout如何将高程添加到粘性工具栏?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android -constraintLayout如何将高程添加到粘性工具栏?相关的知识,希望对你有一定的参考价值。
我创建了constraintLayout,但是我使用的工具栏没有阴影高程。我看不到任何阴影。这是我到目前为止的图像:
我希望将绿色部分抬高并加一点阴影。您知道物料抬头的方式。因此,当我滚动recyclerview时,它看起来就像是在标题下查找。如今非常标准。
到目前为止是我的代码:
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 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">
<androidx.constraintlayout.widget.Guideline
android:id="@+id/gl_start"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
app:layout_constraintGuide_begin="76dp" />
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="0dp"
android:layout_height="wrap_content"
app:contentInsetEnd="0dp"
app:contentInsetLeft="0dp"
app:contentInsetRight="0dp"
app:contentInsetStart="0dp"
app:elevation="8dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintBottom_toTopOf="@id/gl_start"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/colorPrimary">
<ImageView
android:id="@+id/iv"
android:layout_width="80dp"
android:layout_height="80dp"
android:src="@android:drawable/btn_star"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.appcompat.widget.Toolbar>
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/rv"
android:layout_width="0dp"
android:layout_height="0dp"
android:background="@android:color/white"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@id/gl_start"
tools:itemCount="10"
tools:listitem="@layout/list_item" />
请注意,工具栏本来应该是粘性的,因此它不应移动,但仅需将其抬高,我尝试在工具栏上的xml中设置海拔高度,但您可以看到它不是那么漂亮。如何放置阴影和高程?
答案
Either将Toolbar
包裹在AppBarLayout
中
<com.google.android.material.appbar.AppBarLayout
android:id="@+id/app_bar_layout"
...>
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
.../>
</com.google.android.material.appbar.AppBarLayout>
或将android:elevation
与Toolbar
一起使用,这要求最低API级别21
android:elevation="5dp"
以上是关于android -constraintLayout如何将高程添加到粘性工具栏?的主要内容,如果未能解决你的问题,请参考以下文章
Android 逆向Android 权限 ( Android 逆向中使用的 android.permission 权限 | Android 系统中的 Linux 用户权限 )