经过一些尝试后,当我点击我的浮动按钮时,我能够生成半透明背景。现在的问题是"新的背景"只改变颜色。在这个,我有一个循环视图,我仍然可以向上或向下轻松并与之交互。我现在需要的是在我看到的布局下使用recyclerview阻止每个动作。我唯一能做的就是:
这是实际使用的代码:
OnClickListener listener = new OnClickListener()
{
@Override
public void onClick(View v)
{
if (DrawerActivity.instance.rootFab.isExpanded())
{
whiteLayout.setVisibility(View.GONE);
}
else
{
whiteLayout.setVisibility(View.VISIBLE);
}
mainFab.toggle();
}
};
当然:
rootFab.setAddButtonClickListener(listener);
给它听众。所以,简单地说,点击主晶圆厂(我使用一个带有多个工厂的库),它可以看到如下布局:
----
----
<android.support.v7.widget.RecyclerView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/status"
android:clipToPadding="false"
android:scrollbars="vertical" />
<LinearLayout
android:id="@+id/semi_white_bg"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white_semi_transparent"
android:orientation="vertical"
android:visibility="gone" >
</LinearLayout>
---
---
如果我再次按下fab,布局就会消失......所以我的问题是,我怎么能做同样的事情,但点击这个背景却没有&#34;触摸&#34;对它的回收过程?
答案 0 :(得分:2)
您可以告诉Android您的视图是“可点击的”。这样您的视图就会消耗触摸事件,并且不会进一步传递给您的RecyclerView
。
要将视图标记为“可点击”,只需将以下标记添加到xml布局中:android:clickable="true"
:
----
----
<android.support.v7.widget.RecyclerView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/status"
android:clipToPadding="false"
android:scrollbars="vertical" />
<LinearLayout
android:id="@+id/semi_white_bg"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white_semi_transparent"
android:orientation="vertical"
android:clickable="true"
android:visibility="gone" >
</LinearLayout>
---
---
此外,如果您将视图仅用作背景 - 我看不出您需要重量级LinearLayout
的任何理由。你可以在这里使用View
:
----
----
<android.support.v7.widget.RecyclerView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/status"
android:clipToPadding="false"
android:scrollbars="vertical" />
<View
android:id="@+id/semi_white_bg"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white_semi_transparent"
android:clickable="true"
android:visibility="gone" />
---
---