如何删除片段布局中的任何位置单击该单击的主活动按钮

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何删除片段布局中的任何位置单击该单击的主活动按钮相关的知识,希望对你有一定的参考价值。

当我点击片段布局中的任何地方进入主要活动按钮时单击单击,如何删除片段中的此透明度。

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,Bundle savedInstanceState) {
    View view = inflater.inflate(R.layout.fragment_blank, container, false);
    return view;
}
答案

我之前遇到这个问题,尝试将这些行添加到父布局fragment_blank

例如

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" 
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#fff"
    android:clickable="true"
    android:focusable="true">

    <!--other views-->

</LinearLayout>

以上是关于如何删除片段布局中的任何位置单击该单击的主活动按钮的主要内容,如果未能解决你的问题,请参考以下文章

如何在主片段中单击按钮时打开导航抽屉?

如何通过单击片段内的线性布局从片段类开始新活动?下面是我的代码,但这不起作用

如何在按钮单击时添加/删除片段?

如何在Android中的主/细分片段之间进行适当的导航?

如何设置主活动中显示的默认片段?

单击按钮时刷新片段视图