删除ImageView的投影
在Android Studio中,我将ImageView与不想要的投影集成在一起,我似乎无法摆脱。 你如何将图片融入背景? 我试着将按钮的背景设置为透明,并且android:shadowRadius="0"
不起作用。
我的.xml文件
<android.support.constraint.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:background="@color/colorWhiteText"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.constraint.Guideline
android:id="@+id/guideline16"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
app:layout_constraintGuide_percent="0.23" />
<ImageView
android:id="@+id/imageView"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_marginBottom="8dp"
android:layout_marginEnd="8dp"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:shadowRadius="0"
app:layout_constraintBottom_toTopOf="@+id/guideline16"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/logo_174" />
</android.support.constraint.ConstraintLayout>
将android:background="@color/colorWhiteText"
更改为android:background="#ffffffff"
因为背景很重要。
<android.support.constraint.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:background="#ffffffff"
android:layout_width="match_parent"
android:layout_height="match_parent">
也许更好的形式来设置res values colors.xml中:
<color name="windowBackground">#FFFFFFFF</color>
并使用:
android:background="@color/windowBackground"
测试OK,我(没有阴影)与依赖关系:
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
我刚刚找到了这个问题的愚蠢解决方案。 确保图片本身没有阴影,但不知怎的,情况并非如此。 我确定我有这张照片,因为我希望它能够拥有它,但是在这个过程中,创建了一个阴影。
1:你可以检查它的值
android:background="@color/colorWhiteText"
2:如果您的图片是PNG,请尝试使用以下内容
android:src="@drawable/logo_174"
3:如果图像是矢量。 SrcCompact用于支持低于API级别21的设备的矢量图像
android {
defaultConfig {
vectorDrawables.useSupportLibrary = true
}
}
注意:当我尝试时,您分享的代码没有给出任何投影。
链接地址: http://www.djcxy.com/p/815.html上一篇: Remove drop shadow of an ImageView
下一篇: server side rendering is not working in angular universal in iis