我正在尝试在android中创建固定标签,但我尝试过的所有代码示例都弃用了函数。
是否有人有更新的链接说明如何制作固定标签?
修改:
我尝试使用tabhost和actionbar ...
谢谢
答案 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>
您可以在此处查看标签的一些示例
developer.android的示例
答案 1 :(得分:0)