每个活动底部的通用按钮或选项卡

每个活动底部的通用按钮或选项卡

本文介绍了每个活动底部的通用按钮或选项卡的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在每个屏幕/活动的底部放置一些快捷方式或按钮.我知道我们可以通过使用框架布局/相对布局、标签小部件等来做到这一点.

I want to put some shortcuts or buttons at bottom of every screen/activity. I understand we can do that by using framelayout/ relativelayout, tab widget etc.

既然每个活动都需要它,我是否需要再次为每个活动和按钮操作编写 XML 布局 &再次?是否可以参考按钮单击等的布局和操作,以便相同的代码冗余?

Since, I need it for every activity, do I need to write XML layout for every activity and the button actions again & again? Is it possible to refer a layout and actions on button click etc so that same code redundancy?

推荐答案

你好,

可以使用xml标签:

<include layout="@layout/commonfooter" />

将您在 commonfooter.xml 布局文件中的任何内容包含在另一个布局 xml 中.

to include whatever you have in your commonfooter.xml layout file in another layout xml.

希望有帮助!

这篇关于每个活动底部的通用按钮或选项卡的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-01 05:56