如何使片段/视图无法访问?

时间:2015-07-12 19:52:16

标签: android android-fragments transparent android-fragmentactivity

我想在网络视图上显示透明锁定屏幕,并希望在顶部有锁定屏幕时无法访问基础网络视图。但是,使用我当前的实现,即使存在透明锁定屏幕,用户仍然可以访问和滚动Web视图。我使用片段来实现Web视图和锁定屏幕。以下是截图 -

Transparent Lock screen over the web-view.

如屏幕截图所示,Web视图片段上有一个透明的锁屏片段。理想情况下,Web视图片段应该是不可访问的,虽然仍然可以查看但不能滚动。如何让用户无法访问它?

1 个答案:

答案 0 :(得分:2)

你必须这样做,以便叠加拦截点击事件:

<View
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#7000"
    android:clickable="true"/>