开发者

Common buttons or tabs at bottom for every activity

开发者 https://www.devze.com 2023-01-29 21:38 出处:网络
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.

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.

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?


Hallo,

You can use the xml tag:

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

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

Hope that helps!

0

精彩评论

暂无评论...
验证码 换一张
取 消