Android - 如何创建固定标签

时间:2015-03-29 11:57:55

标签: android tabs

我正在尝试在android中创建固定标签,但我尝试过的所有代码示例都弃用了函数。

是否有人有更新的链接说明如何制作固定标签?

修改

我尝试使用tabhost和actionbar ...

谢谢

2 个答案:

答案 0 :(得分:0)

你在这个标签上提到了吗? http://developer.android.com/design/building-blocks/tabs.html

如果标签默认情况下未固定在顶部,则可以执行此操作。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
   xmlns:android="http://schemas.android.com/apk/res/android"
   android:layout_width="fill_parent"
   android:layout_height="fill_parent"
   android:orientation="horizontal" >
   <!-- Put your tabs here-->
 <ScrollView >

    <LinearLayout>

      <!-- Put your Views here-->

    </LinearLayout>

 </ScrollView>
</LinearLayout>

您可以在此处查看标签的一些示例

exampleTabs1 exampleTabs2

developer.android的示例

Creating Swipe Views with Tabs

答案 1 :(得分:0)