创建TabHost的两种方式的简单分析

最近做了一个TabHost的界面,在做的过程中发现了一些问题,故和大家分享一下。

首先我的界面如下:

创建TabHost的两种方式的简单分析

目前就我所知,创建TabHost有两种方式,第一种是继承TabActivity类,然后用getTabHost方法来得到一个TabHost的实例,然后就可以给这个TabHost添加Tab了。示例代码如下:

  1. public class PlotHost extends TabActivity  {
  2. @Override
  3. protected void onCreate(Bundle savedInstanceState) {
  4. // TODO Auto-generated method stub
  5. super.onCreate(savedInstanceState);
  6. //      setContentView(R.layout.activity_main);
  7. setContentView(R.layout.tabhost);
  8. Resources res=getResources();
  9. TabHost tabhost=getTabHost();
  10. TabSpec dynamicplotSpec;
  11. TabSpec staticplotSpec;
  12. Intent dynamicplotIntent;
  13. Intent staticplotIntent;
  14. View dynamicplotView;
  15. View staticplotView;
  16. dynamicplotIntent=new Intent(this,Tab1.class);
  17. dynamicplotView=new TabView(this, R.drawable.dynamicploto, R.drawable.dynamicplots, "动态曲线");
  18. dynamicplotSpec=tabhost.newTabSpec("DynamicplotTab");
  19. dynamicplotSpec.setIndicator(dynamicplotView).setContent(dynamicplotIntent);
  20. tabhost.addTab(dynamicplotSpec);
  21. staticplotSpec=tabhost.newTabSpec("StaticplotTab");
  22. staticplotView=new TabView(this, R.drawable.staticploto, R.drawable.staticplots, "历史曲线");
  23. staticplotIntent=new Intent(this,Tab2.class);
  24. staticplotSpec.setIndicator(staticplotView).setContent(staticplotIntent);
  25. tabhost.addTab(staticplotSpec);
  26. tabhost.setCurrentTab(0);
  27. }
  28. //自定义一个tab选项卡显示样式
  29. private  class TabView extends LinearLayout {
  30. ImageView imageView ;
  31. public TabView(Context c, int drawableSelected, int drawableUnselected,String label) {
  32. super(c);
  33. this.setOrientation(VERTICAL);
  34. imageView = new ImageView(c);
  35. StateListDrawable listDrawable = new StateListDrawable();
  36. listDrawable.addState(SELECTED_STATE_SET, this.getResources()
  37. .getDrawable(drawableSelected));
  38. listDrawable.addState(ENABLED_STATE_SET, this.getResources()
  39. .getDrawable(drawableUnselected));
  40. imageView.setImageDrawable(listDrawable);
  41. imageView.setBackgroundColor(Color.TRANSPARENT);
  42. setGravity(Gravity.CENTER);
  43. addView(imageView);
  44. TextView tv_label=new TextView(c);
  45. tv_label.setText(label);
  46. tv_label.setGravity(Gravity.CENTER);
  47. addView(tv_label);
  48. }
  49. }
  50. }

具体代码我就不用多分析,只需要提一点的就是,用这种方式根本就不用你自定义一个TabHost的组建,getTabHost方法会自动调用系统默认的布局来帮助你进行显示,所以代码里面使用setContentView是多余的。

第二种方式问题就比较多了,其中网上大部分都说直接集成Activity,然后使用findViewbyId找到自定义的TabHost的组件,最
后对这个TabHost调用setup方法即可。但是不知道是何原因,也许是我的API版本比较高的原因,使用这种方法始终没有成功,logcat里面报
java.lang.RuntimeException异常。最后google后发现,需要改一下方式,即继承ActivityGroup,然后最后
setup的时候需要使用setup(this.getLocalActivityManager)即可,代码如下:

  1. public class PlotHost extends ActivityGroup  {
  2. @Override
  3. protected void onCreate(Bundle savedInstanceState) {
  4. // TODO Auto-generated method stub
  5. super.onCreate(savedInstanceState);
  6. //      setContentView(R.layout.activity_main);
  7. setContentView(R.layout.tabhost);
  8. Resources res=getResources();
  9. TabHost tabhost=(TabHost)findViewById(R.id.tabhost);
  10. tabhost.setup(this.getLocalActivityManager());
  11. TabSpec dynamicplotSpec;
  12. TabSpec staticplotSpec;
  13. Intent dynamicplotIntent;
  14. Intent staticplotIntent;
  15. View dynamicplotView;
  16. View staticplotView;
  17. dynamicplotIntent=new Intent(this,Tab1.class);
  18. dynamicplotView=new TabView(this, R.drawable.dynamicploto, R.drawable.dynamicplots, "动态曲线");
  19. dynamicplotSpec=tabhost.newTabSpec("DynamicplotTab");
  20. dynamicplotSpec.setIndicator(dynamicplotView).setContent(dynamicplotIntent);
  21. tabhost.addTab(dynamicplotSpec);
  22. staticplotSpec=tabhost.newTabSpec("StaticplotTab");
  23. staticplotView=new TabView(this, R.drawable.staticploto, R.drawable.staticplots, "历史曲线");
  24. staticplotIntent=new Intent(this,Tab2.class);
  25. staticplotSpec.setIndicator(staticplotView).setContent(staticplotIntent);
  26. tabhost.addTab(staticplotSpec);
  27. tabhost.setCurrentTab(0);
  28. }
  29. //自定义一个tab选项卡显示样式
  30. private  class TabView extends LinearLayout {
  31. ImageView imageView ;
  32. public TabView(Context c, int drawableSelected, int drawableUnselected,String label) {
  33. super(c);
  34. this.setOrientation(VERTICAL);
  35. imageView = new ImageView(c);
  36. StateListDrawable listDrawable = new StateListDrawable();
  37. listDrawable.addState(SELECTED_STATE_SET, this.getResources()
  38. .getDrawable(drawableSelected));
  39. listDrawable.addState(ENABLED_STATE_SET, this.getResources()
  40. .getDrawable(drawableUnselected));
  41. imageView.setImageDrawable(listDrawable);
  42. imageView.setBackgroundColor(Color.TRANSPARENT);
  43. setGravity(Gravity.CENTER);
  44. addView(imageView);
  45. TextView tv_label=new TextView(c);
  46. tv_label.setText(label);
  47. tv_label.setGravity(Gravity.CENTER);
  48. addView(tv_label);
  49. }
  50. }
  51. }

其实内容大同小异,至于为什么要这么做,貌似是如果直接调用TabHost的setup方法,不能实例化它的TabWidget和TabContent对象,需要借助于LocalActivityManager自动对二者进行实例化。因为看了一个老兄的博客,setup主要完成的功能便是实例化它的TabWidget和TabContent。如下:

创建TabHost的两种方式的简单分析mTabWidget = (TabWidget) findViewById(com.android.internal.R.id.tabs);
创建TabHost的两种方式的简单分析        if (mTabWidget == null) {
创建TabHost的两种方式的简单分析            throw new RuntimeException(
创建TabHost的两种方式的简单分析                    "Your TabHost must have a TabWidget whose id attribute is 'android.R.id.tabs'");
创建TabHost的两种方式的简单分析        }
创建TabHost的两种方式的简单分析创建TabHost的两种方式的简单分析
创建TabHost的两种方式的简单分析mTabContent = (FrameLayout) findViewById(com.android.internal.R.id.tabcontent);
创建TabHost的两种方式的简单分析        if (mTabContent == null) {
创建TabHost的两种方式的简单分析            throw new RuntimeException(
创建TabHost的两种方式的简单分析                    "Your TabHost must have a FrameLayout whose id attribute is 'android.R.id.tabcontent'");
创建TabHost的两种方式的简单分析        }

同时,还要补充,使用第二种方法的时候注意修改TabHost在布局当中的ID格式为“@+id/xxx”,其中xxx自定义。其他的步骤在网上一搜一大堆我就不唠叨了。

上一篇:PDF 补丁丁 0.5.0.2691 发布(替换字库新增字符映射功能)


下一篇:Android 反编译apk