有没有办法将 alpha 属性设置为子视图和父视图?
Is there a way to set alpha attribute to child views as well as to parent view?
我正在开发应用程序,我已将自定义可绘制对象设置为具有 alpha 属性的主布局。但它将 alpha 设置为整个视图。我想将 alpha 设置为唯一的主要布局。以便正常显示的文本没有 alpha 效果。 Present Output
Alpha 效果是全视图的。
<android.support.constraint.ConstraintLayout
android:id="@+id/containerLinear"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/gradient_with_bottom_curve"
android:orientation="horizontal"
android:alpha="0.4"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent">
<ScrollView
android:id="@+id/mainScroll"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/scrollLinear"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<RelativeLayout
android:id="@+id/mainRelative"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/txtHeading"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Business Name"
android:gravity="center"
android:layout_marginTop="10dp"
android:padding="5dp"
android:textStyle="bold"
android:textSize="20sp"
android:textColor="@color/logo_orange"/>
<RelativeLayout
android:id="@+id/paraOneRelative"
android:layout_below="@+id/txtHeading"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/txtParaOneBold"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Some write up"
android:gravity="start"
android:layout_marginTop="10dp"
android:padding="5dp"
android:textStyle="normal"
android:textSize="12sp"
android:textColor="@color/black"/>
</RelativeLayout>
</RelativeLayout>
</LinearLayout>
</ScrollView>
</android.support.constraint.ConstraintLayout>
您需要将drawable设置在与ScrollView同级的view上
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/containerLinear"
android:layout_width="match_parent"
android:layout_height="match_parent">
<View
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/gradient_with_bottom_curve"
android:alpha="0.4"/>
<ScrollView
android:id="@+id/mainScroll"
android:layout_width="match_parent"
android:layout_height="match_parent">
您会看到 TextViews
中的文本不再有字母。
与 alpha 问题无关,但 ConstraintLayout
在这里没用。您对其设置的约束也相同。约束应该在 ConstraintLayout
内的元素上进行。基本上你应该有这样的东西:
FrameLayout
ScrollView
ConstraintLayout
Views
您可以尝试为滚动视图设置背景并在那里尝试 alpha
<RelativeLayout
android:id="@+id/mainRelative"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:alpha="0.4"
android:background="@drawable/gradient_with_bottom_curve">
创建一个 ImageView
作为 ConstraintLayout
的子项
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/gradient_with_bottom_curve"
android:alpha="0.4"/>
您可以使用 FrameLayout
作为基础而不是 ConstraintLayout
,并将 ScrollView
层叠在 View
(具有半透明背景)之上。以下几行应该可以工作,
<FrameLayout
android:id="@+id/containerLinear"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent">
<View
android:layout_width="match_parent"
android:layout_height="match_parent"
android:alpha="0.4"
android:background="@drawable/gradient_with_bottom_curve" />
<ScrollView
android:id="@+id/mainScroll"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/scrollLinear"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<RelativeLayout
android:id="@+id/mainRelative"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/txtHeading"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Business Name"
android:gravity="center"
android:layout_marginTop="10dp"
android:padding="5dp"
android:textStyle="bold"
android:textSize="20sp"
android:textColor="@color/logo_orange"/>
<RelativeLayout
android:id="@+id/paraOneRelative"
android:layout_below="@+id/txtHeading"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/txtParaOneBold"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Some write up"
android:gravity="start"
android:layout_marginTop="10dp"
android:padding="5dp"
android:textStyle="normal"
android:textSize="12sp"
android:textColor="@color/black"/>
</RelativeLayout>
</RelativeLayout>
</LinearLayout>
</ScrollView>
</FrameLayout>
我正在开发应用程序,我已将自定义可绘制对象设置为具有 alpha 属性的主布局。但它将 alpha 设置为整个视图。我想将 alpha 设置为唯一的主要布局。以便正常显示的文本没有 alpha 效果。 Present Output
Alpha 效果是全视图的。
<android.support.constraint.ConstraintLayout
android:id="@+id/containerLinear"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/gradient_with_bottom_curve"
android:orientation="horizontal"
android:alpha="0.4"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent">
<ScrollView
android:id="@+id/mainScroll"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/scrollLinear"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<RelativeLayout
android:id="@+id/mainRelative"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/txtHeading"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Business Name"
android:gravity="center"
android:layout_marginTop="10dp"
android:padding="5dp"
android:textStyle="bold"
android:textSize="20sp"
android:textColor="@color/logo_orange"/>
<RelativeLayout
android:id="@+id/paraOneRelative"
android:layout_below="@+id/txtHeading"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/txtParaOneBold"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Some write up"
android:gravity="start"
android:layout_marginTop="10dp"
android:padding="5dp"
android:textStyle="normal"
android:textSize="12sp"
android:textColor="@color/black"/>
</RelativeLayout>
</RelativeLayout>
</LinearLayout>
</ScrollView>
</android.support.constraint.ConstraintLayout>
您需要将drawable设置在与ScrollView同级的view上
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/containerLinear"
android:layout_width="match_parent"
android:layout_height="match_parent">
<View
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/gradient_with_bottom_curve"
android:alpha="0.4"/>
<ScrollView
android:id="@+id/mainScroll"
android:layout_width="match_parent"
android:layout_height="match_parent">
您会看到 TextViews
中的文本不再有字母。
与 alpha 问题无关,但 ConstraintLayout
在这里没用。您对其设置的约束也相同。约束应该在 ConstraintLayout
内的元素上进行。基本上你应该有这样的东西:
FrameLayout
ScrollView
ConstraintLayout
Views
您可以尝试为滚动视图设置背景并在那里尝试 alpha
<RelativeLayout
android:id="@+id/mainRelative"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:alpha="0.4"
android:background="@drawable/gradient_with_bottom_curve">
创建一个 ImageView
作为 ConstraintLayout
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/gradient_with_bottom_curve"
android:alpha="0.4"/>
您可以使用 FrameLayout
作为基础而不是 ConstraintLayout
,并将 ScrollView
层叠在 View
(具有半透明背景)之上。以下几行应该可以工作,
<FrameLayout
android:id="@+id/containerLinear"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent">
<View
android:layout_width="match_parent"
android:layout_height="match_parent"
android:alpha="0.4"
android:background="@drawable/gradient_with_bottom_curve" />
<ScrollView
android:id="@+id/mainScroll"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/scrollLinear"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<RelativeLayout
android:id="@+id/mainRelative"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/txtHeading"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Business Name"
android:gravity="center"
android:layout_marginTop="10dp"
android:padding="5dp"
android:textStyle="bold"
android:textSize="20sp"
android:textColor="@color/logo_orange"/>
<RelativeLayout
android:id="@+id/paraOneRelative"
android:layout_below="@+id/txtHeading"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/txtParaOneBold"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Some write up"
android:gravity="start"
android:layout_marginTop="10dp"
android:padding="5dp"
android:textStyle="normal"
android:textSize="12sp"
android:textColor="@color/black"/>
</RelativeLayout>
</RelativeLayout>
</LinearLayout>
</ScrollView>
</FrameLayout>