我在删除图像按钮背景时遇到错误

时间:2018-04-30 20:17:49

标签: android xml

错误是:

  

错误:''与属性android:background(attr)不兼容   参考|颜色

<ImageButton
    android:id="@+id/about"
    android:layout_width="100dp"
    android:layout_height="100dp"
    android:layout_alignLeft="@+id/report_btn"
    android:layout_alignStart="@+id/report_btn"
    android:layout_alignTop="@+id/service"
    android:layout_marginBottom="117dp"

    android:layout_marginEnd="25dp"
    android:layout_marginRight="25dp"
    android:background="@android:color/transparent"
    android:contentDescription="@string/about_us"
    android:scaleType="fitXY"
    android:src="@drawable/about"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toEndOf="@+id/complaint_btn"
    app:layout_constraintTop_toBottomOf="@+id/achievement" />

1 个答案:

答案 0 :(得分:0)

如果您要删除背景,为什么不删除此行?

android:background="@android:color/transparent"

你不应该做一个透明的&#34;用于删除<ImageButton>中背景的颜色。