对我的所有活动使用固定视图
我想要一个类似于屏幕底部菜单栏的视图。 我想把它保留在我所有的活动中。
有什么方法可以在所有活动中保留此视图而无需复制和复制吗?将其粘贴到所有活动中?
如果您知道,请尽快告诉我。
谢富尔
I want a view much like menubar at the bottom of the screen.
I want to keep it in all the activity i have.
Is there any way to keep this view in all the activity without copy & pasting it to all the activity?
If you know about it let me know ASAP.
Shaiful
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
一种方法是在单独的布局文件中定义公共视图,并使用 include 标记将其包含在每个布局的末尾。
有关更多信息,请访问 http ://www.curious-creature.org/2009/02/25/android-layout-trick-2-include-to-reuse/
One way is to define the common view in a separate layout file, and include it at the end of each layout using the include tag.
More about it here, http://www.curious-creature.org/2009/02/25/android-layout-trick-2-include-to-reuse/
为按钮栏创建布局并使用 重用/包含它。
这应该有帮助。
Create a layout for the button bar and reuse/include it using .
This should help.