实现切换Tabs标签;

Activity代码:

  1. public class ActionBarTabs extends Activity {
  2. @Override
  3. protected void onCreate(Bundle savedInstanceState) {
  4. super.onCreate(savedInstanceState);
  5. setContentView(R.layout.action_bar_tabs);
  6. }
  7. public void onAddTab(View v) {
  8. final ActionBar bar = getActionBar();
  9. final int tabCount = bar.getTabCount();
  10. final String text = "Tab " + tabCount;
  11. bar.addTab(bar.newTab().setText(text)
  12. .setTabListener(new TabListener(new TabContentFragment(text))));
  13. }
  14. public void onRemoveTab(View v) {
  15. final ActionBar bar = getActionBar();
  16. bar.removeTabAt(bar.getTabCount() - 1);
  17. }
  18. public void onToggleTabs(View v) {
  19. final ActionBar bar = getActionBar();
  20. if (bar.getNavigationMode() == ActionBar.NAVIGATION_MODE_TABS) {
  21. bar.setNavigationMode(ActionBar.NAVIGATION_MODE_STANDARD);
  22. bar.setDisplayOptions(ActionBar.DISPLAY_SHOW_TITLE, ActionBar.DISPLAY_SHOW_TITLE);
  23. } else {
  24. bar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);
  25. bar.setDisplayOptions(0, ActionBar.DISPLAY_SHOW_TITLE);
  26. }
  27. }
  28. public void onRemoveAllTabs(View v) {
  29. getActionBar().removeAllTabs();
  30. }
  31. private class TabListener implements ActionBar.TabListener {
  32. private TabContentFragment mFragment;
  33. public TabListener(TabContentFragment fragment) {
  34. mFragment = fragment;
  35. }
  36. public void onTabSelected(Tab tab, FragmentTransaction ft) {
  37. ft.add(R.id.fragment_content, mFragment, mFragment.getText());
  38. }
  39. public void onTabUnselected(Tab tab, FragmentTransaction ft) {
  40. ft.remove(mFragment);
  41. }
  42. public void onTabReselected(Tab tab, FragmentTransaction ft) {
  43. Toast.makeText(ActionBarTabs.this, "Reselected!", Toast.LENGTH_SHORT).show();
  44. }
  45. }
  46. private class TabContentFragment extends Fragment {
  47. private String mText;
  48. public TabContentFragment(String text) {
  49. mText = text;
  50. }
  51. public String getText() {
  52. return mText;
  53. }
  54.   
  55. @Override
  56. public View onCreateView(LayoutInflater inflater, ViewGroup container,
  57. Bundle savedInstanceState) {
  58. View fragView = inflater.inflate(R.layout.action_bar_tab_content, container, false);
  59. TextView text = (TextView) fragView.findViewById(R.id.text);
  60. text.setText(mText);
  61. return fragView;
  62. }
  63. }
  64. }

涉及的布局文件action_bar_tabs.xml代码为:

  1. < ?xml version="1.0" encoding="utf-8"?>
  2. < LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:orientation="vertical">
  6. < FrameLayout android:id="@+id/fragment_content"
  7. android:layout_width="match_parent"
  8. android:layout_height="0dip"
  9. android:layout_weight="1" />
  10. < LinearLayout android:layout_width="match_parent"
  11. android:layout_height="0dip"
  12. android:layout_weight="1"
  13. android:orientation="vertical">
  14. < Button android:id="@+id/btn_add_tab"
  15. android:layout_width="wrap_content"
  16. android:layout_height="wrap_content"
  17. android:text="@string/btn_add_tab"
  18. android:onClick="onAddTab" />
  19. < Button android:id="@+id/btn_remove_tab"
  20. android:layout_width="wrap_content"
  21. android:layout_height="wrap_content"
  22. android:text="@string/btn_remove_tab"
  23. android:onClick="onRemoveTab" />
  24. < Button android:id="@+id/btn_toggle_tabs"
  25. android:layout_width="wrap_content"
  26. android:layout_height="wrap_content"
  27. android:text="@string/btn_toggle_tabs"
  28. android:onClick="onToggleTabs" />
  29. < Button android:id="@+id/btn_remove_all_tabs"
  30. android:layout_width="wrap_content"
  31. android:layout_height="wrap_content"
  32. android:text="@string/btn_remove_all_tabs"
  33. android:onClick="onRemoveAllTabs" />
  34. < /LinearLayout>
  35. < /LinearLayout>

布局文件action_bar_tab_content.xml;

    1. < ?xml version="1.0" encoding="utf-8"?>
    2. < TextView xmlns:android="http://schemas.android.com/apk/res/android"
    3. android:id="@+id/text"
    4. android:layout_width="wrap_content"
    5. android:layout_height="wrap_content" />
【JAVA】鉴于plaincopy

Android ActionBar详解(三):ActionBar实现切换Tabs标签的更多相关文章

  1. Android ActionBar详解(三)--->ActionBar的Home导航功能

    FirstActivity如下: package cc.testsimpleactionbar2; import android.os.Bundle; import android.app.Activ ...

  2. (转)android Fragments详解三:实现Fragment的界面

    为fragment添加用户界面 fragment一般作为activity的用户界面的一部分,把它自己的layout嵌入到activity的layout中.    一个 要为fragment提供layo ...

  3. 【转】Android编译系统详解(三)——编译流程详解

    原文网址:http://www.cloudchou.com/android/post-276.html 本文原创作者:Cloud Chou. 欢迎转载,请注明出处和本文链接 1.概述 编译Androi ...

  4. Android Fragment详解(三): 实现Fragment的界面

    为fragment添加用户界面: Fragment一般作为activity的用户界面的一部分,把它自己的layout嵌入到activity的layout中. 一个 要为fragment提供layout ...

  5. Android 布局详解 -三表格布局(TableLayout)以及重要属性

              TableLayout跟TableRow 是一组搭配应用的布局,TableLayout置底,TableRow在TableLayout的上方,而Button.TextView等控件就 ...

  6. Android Loader详解三:重启与回调

    重启装载器 当你使用initLoader()时,如果指定ID的装载器已经存在,则它使用这个装载器.如果不存在呢,它将创建一个新的.但是有时你却是想丢弃旧的然后开始新的数据. 要想丢弃旧数据,你应使用r ...

  7. Android ActionBar详解

    Android ActionBar详解 分类: Android2014-04-30 15:23 1094人阅读 评论(0) 收藏 举报 androidActionBar   目录(?)[+]   第4 ...

  8. Android 之窗口小部件详解(三)  部分转载

    原文地址:http://blog.csdn.net/iefreer/article/details/4626274. (一) 应用程序窗口小部件App Widgets 应用程序窗口小部件(Widget ...

  9. Android Notification 详解(一)——基本操作

    Android Notification 详解(一)--基本操作 版权声明:本文为博主原创文章,未经博主允许不得转载. 微博:厉圣杰 源码:AndroidDemo/Notification 文中如有纰 ...

随机推荐

  1. mysql 建立加密连接

    加密连接可提高数据的安全性,但会降低性能.要进行加密连接,必须满足以下要求: user权限表里要有相关的SSL数据列.如果安装的MySQL服务器是4.0.0版的,user权限表已包含相关的SSL数据列 ...

  2. Linux字符设备中的两个重要结构体(file、inode)

    对于Linux系统中,一般字符设备和驱动之间的函数调用关系如下图所示 上图描述了用户空间应用程序通过系统调用来调用程序的过程.一般而言在驱动程序的设计中,会关系 struct file 和 struc ...

  3. AsyncHttpClient httpURLCon httpClient AsyncTask 访问服务器

    Activity /**  * 测试使用三种方式(AsyncHttpClient.httpURLCon.httpClient)分别以get和post方式访问服务器  * @author 白乾涛  */ ...

  4. Windows Bridge for iOS: Let’s open this up

    (原文翻译过来的,原文链接http://blogs.windows.com/buildingapps/2015/08/06/windows-bridge-for-ios-lets-open-this- ...

  5. js字符串转json

    1,eval方式解析,这是最早的解析方式了.如下: 代码如下: function strToJson(str){ var json = eval('(' + str + ')'); return js ...

  6. URL与URI的区别

    URI—Universal Resource Identifier通用资源标志符Web上可用的每种资源如HTML文档.图像.视频片段.程序等都是一个来URI来定位的URI一般由三部组成①访问资源的命名 ...

  7. C库专题(Day1)

    <assert.h> C库宏-assert()   定义:#define assert(ignore) ((void)0) void assert(int experession); ex ...

  8. C# 读取EXCEL数据

       /// <summary> /// 读取EXCEL数据 /// </summary> /// <param name="Path">< ...

  9. C 语言 联合union初见

    1.什么是联合? “联合”是一种构造类型的数据结构.在一个“联合”内可以定义多种不同的数据类型, 一个被说明为该“联合”类型的变量中,允许装入该“联合”所定义的任何一种数据,这些数据共享同一段内存,已 ...

  10. 注解 @Resource与@Autowired与@Component的使用

    在java代码中使用@Autowired或@Resource注解方式进行装配,这两个注解的区别是:@Autowired 默认按类型装配,@Resource默认按名称装配,当找不到与名称匹配的bean才 ...