我想将背景色设置为透明,我已经尝试过使用此SameProblem,但是它不起作用。
这是我的界面。我需要第一个透明布局是透明的,我使用了“ android:background =“#00000000”“,但没有结果(背景为白色)。
这是我的xml文件:
<?xml version="1.0" encoding="utf-8"?>
<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:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#00000000"
tools:context=".AddEditNote">
<android.support.constraint.ConstraintLayout
android:id="@+id/constraintLayout2"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginStart="6dp"
android:layout_marginTop="26dp"
android:layout_marginEnd="6dp"
android:layout_marginBottom="26dp"
android:background="@drawable/a"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<EditText
android:id="@+id/note"
android:layout_width="343dp"
android:layout_height="487dp"
android:layout_marginBottom="44dp"
android:background="@color/cardview_shadow_start_color"
android:hint="Note"
android:inputType="textMultiLine"
android:textColorHint="@color/aidialog_background"
android:textStyle="bold"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.509"
app:layout_constraintStart_toStartOf="parent" />
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="393dp"
android:layout_height="49dp"
android:layout_marginTop="4dp"
android:background="@drawable/circle2"
android:elevation="4dp"
android:minHeight="?attr/actionBarSize"
android:theme="?attr/actionBarTheme"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.6"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout>
</android.support.constraint.ConstraintLayout>
谢谢。
答案 0 :(得分:0)
您可以尝试删除android:background="#00000000"
属性,或将其更改为background="@android:color/transparent"
。
答案 1 :(得分:0)
我们可以将LinearLayout用作ConstraintLayout的父代
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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"
android:background="#fff">
<android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#000"
tools:context=".MainActivity">
...
</android.support.constraint.ConstraintLayout>
</LinearLayout>
答案 2 :(得分:0)
将属性添加到XML: android:background =“ @ android:color / transparent” 或 android:background =“ null”
这将删除背景色并使之透明。
如果您想阅读有关ConstraintLayout的内容-https://developer.android.com/training/constraint-layout