android:elevation 使用小问题记录,底部没有阴影问题,上左右都有阴影
item_chat_text_right.xml<androidx.constraintlayout.widget.ConstraintLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"><ImageViewandroid:id="@+id/ivIcon"android:lay
·
item_chat_text_right.xml
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/ivIcon"
android:layout_width="46dp"
android:layout_height="46dp"
android:layout_marginTop="12dp"
android:layout_marginRight="@dimen/chat_margin_h"
app:imageTransform="@{ImageTransform.ROUNDED_CORNERS}"
app:imageUrl="@{userMine.userIcon}"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
tools:src="@android:drawable/sym_def_app_icon" />
<TextView
android:id="@+id/tvMsg"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/item_chat_dialog_margin_h"
android:background="@drawable/bg_chat_right_box"
android:elevation="3dp"
android:paddingLeft="14dp"
android:paddingTop="14dp"
android:paddingRight="20dp"
android:paddingBottom="16dp"
android:text="@{item.msg}"
android:textColor="#000000"
android:textSize="16sp"
app:layout_constrainedWidth="true"
app:layout_constraintHorizontal_bias="1"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toLeftOf="@id/ivIcon"
app:layout_constraintTop_toTopOf="@id/ivIcon"
tools:text="我是谁,我来自哪里,我要去往何方?我是谁,我来自哪里,我要去往何方?" />
</androidx.constraintlayout.widget.ConstraintLayout>
android:elevation=“3dp”
如果父布局使用 android:layout_height=“wrap_content”,那么使用android:elevation底部应该还有其他view,底部可添加占位view
<View
android:layout_height="2dp"
android:layout_width="match_parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintTop_toBottomOf="@id/tvMsg" />
或者 android:layout_height=“match_parent”,这种方式有其他问题,不建议使用。解决一个问题,引出其他问题。
更多推荐
已为社区贡献4条内容
所有评论(0)