我正在尝试创建一个搜索栏,其样式与Google相册应用中的工具栏类似-即以阴影四舍五入。
我们正在使用Material库中的TextInputLayout作为片段的唯一子元素(该片段在父片段的顶部被夸大)。
以下是我目前所拥有的(一旦可以购买高程,我就有一个可绘制的背景可用作背景,为清楚起见,我将其省略了)
ggplot(graphing_dataframe,
aes(x = id, y=rating)) +
geom_density_ridges()
我是否在这里遗漏了一些明显的内容,或者这是TextInputLayout的限制吗?
答案 0 :(得分:2)
将textView放在cardView内,它肯定会产生阴影 cardView的示例
<android.support.v7.widget.CardView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="6dp"
card_view:cardUseCompatPadding="true"
card_view:cardElevation="4dp"
card_view:cardCornerRadius="3dp">