android:将Tab栏添加到应用程序中的所有活动

时间:2011-04-26 17:17:13

标签: android

我必须将TabBar添加到我的应用程序中的每个活动。我该怎么做?

1 个答案:

答案 0 :(得分:0)

您可以使用include tagviewstub甚至fragments

以下是如何使用include来实现您想要的目标

  1. 创建描述工具栏的布局文件,例如: toolbar.xml
  2. 在每个XML布局文件中,您希望工具栏显示添加include标记指向您的toolbar.xml
  3. 示例:

    <?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>