Android控件使用——TabHost初始化标签页

之前使用过TabHost控件,标签页都是按顺序加载的,但是如果想不按顺序初始化标签页该怎么办呢?

TabHost控件提供了现成的方法——setCurrentTabByTag

具体使用如下:

                tabHost = getTabHost();
		// 设置使用TabHost布局
		LayoutInflater.from(this).inflate(R.layout.login,
				tabHost.getTabContentView(), true);
		// 添加第一个标签页
		tabHost.addTab(tabHost.newTabSpec("tab1").setIndicator("忘记密码")
				.setContent(R.id.tab01));
		// 添加第二个标签页
				tabHost.addTab(tabHost.newTabSpec("tab2").setIndicator("密码解锁")
						.setContent(R.id.tab02));
		// 添加第三个标签页
		tabHost.addTab(tabHost.newTabSpec("tab3").setIndicator("手势解锁")
				.setContent(R.id.tab03));
		tabHost.setCurrentTabByTag("tab2");
显示效果:

Android控件使用——TabHost初始化标签页_第1张图片


你可能感兴趣的:(Android控件使用——TabHost初始化标签页)