gpt4 book ai didi

java - 将海拔应用到 TextInputLayout

转载 作者:行者123 更新时间:2023-11-29 18:31:46 30 4
gpt4 key购买 nike

我正在尝试创建一个与 Google 相册应用中的工具栏具有相似样式的搜索栏 - 即,带有阴影的圆角。

我们使用 Material 库中的 TextInputLayout 作为 fragment 的唯一子 fragment (在父 fragment 的顶部膨胀)。

下面是我目前所拥有的(我有一个 drawable 可以用作背景,一旦我可以得到高度来购物,为了清楚起见我省略了它)

<?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"
tools:context=".Fragments.SearchFragment">

<com.google.android.material.textfield.TextInputLayout
android:id="@+id/searchTextInputLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="8dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">

<com.google.android.material.textfield.TextInputEditText
android:id="@+id/searchTextInputEditText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginEnd="8dp"
android:paddingStart="24dp"
android:paddingEnd="24dp"
android:background="#ffffff"
android:elevation="20dp"
android:drawableStart="@drawable/ic_menu_black_24dp"
android:hint="Search" />
</com.google.android.material.textfield.TextInputLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
<!--android:background="@drawable/searchbar_rounded"-->

我是否遗漏了一些明显的东西,或者这是 TextInputLayout 的限制?

最佳答案

将 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">

关于java - 将海拔应用到 TextInputLayout,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55852973/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com