如何在许多布局中包含的页脚布局中设置单击侦听器



晚上好。

我面临的问题可以通过以下方式描述:

  • 我有很多视图实现了相同的页脚(主页脚、list_items页脚、book_item...
  • 例如,页脚有一些按钮(书籍项、列表项(。
  • 我需要以某种方式定义页脚按钮上的单击侦听器我可以在包含此页脚的每个布局中重复使用它。

到目前为止,只有在与包含页脚的布局相关的每个活动中设置单击侦听器时,我才能使页脚按钮工作。

你建议如何解决这个问题?非常感谢您的帮助和详细信息,因为我是安卓开发的新手。

我的代码类似于以下内容:

布局1.xml

<content>...</content>
<include layout="@layout/footer_layout"></include>

布局2.xml

<content>...</content>
<include layout="@layout/footer_layout"></include>

页脚.xml

<Button>List Items</Button>
<Button>Book Item</Button>
您可以

为footer_layout创建一个片段,然后添加它并在每个活动中重复使用它。

使用片段将允许您完全模块化您的活动,您可以在单个活动中组合多个片段以构建多窗格 UI,就像在平板电脑上一样,您可以在多个活动中重用单个片段,这就是您想要做的。

查看文档:https://developer.android.com/guide/components/fragments

1-创建页脚片段:

public class FooterFragment extends Fragment {
  //Mandatory constructor for instantiating the fragment
  public FooterFragment() {
  }
  /**
     * Inflates the fragment layout file footer_layout
     */
  @Override
    public View onCreateView(@NonNull LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) {
        View rootView = inflater.inflate(R.layout.footer_layout, container, false);
        // write your buttons and the OnClickListener logic
        ...
        // Return the rootView
        return rootView;
    }
}

2-创建您的fragment_layout.xml

<?xml version="1.0" encoding="utf-8"?>
<fragment
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/footer_fragment"
    android:name="com.example.android.FooterFragment"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />

3-现在,您可以将fragment_layout包含在所有所需的活动xml布局文件中。

最新更新