我必须将TabBar添加到我的应用程序中的每个活动。我该怎么做?
答案 0 :(得分:0)
您可以使用include tag或viewstub甚至fragments
以下是如何使用include
来实现您想要的目标
include
标记指向您的toolbar.xml 示例:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="fill_parent" android:layout_width="fill_parent">
<include android:id="@+id/titleBar" layout="@layout/title_bar"
android:layout_width="fill_parent" android:layout_height="48dip" />
<!-- All the rest of your activity layout below -->
</RelativeLayout>