0

我有一个有黑色透明覆盖的活动。

我需要做的是删除活动中特定按钮的覆盖。但所有其他部分提取按钮将包含一个覆盖。

4

1 回答 1

0

您可以添加带有黑色叠加层的视图。使用 RelativeLayout 是一个很好的解决方案。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
 xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:background="@mipmap/ic_launcher">
   <Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Press Me"/>
   <View
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#8000"/>
</RelativeLayout>

希望这可以帮助。

谢谢。

于 2018-01-01T11:24:33.460 回答