Android应用开发笔记——打造自己的标签栏
使用Android自带的TabHost容器。
传统的TabHost的使用效果大概是这样的(左图):
这是大众点评网早期的Android客户端,标签栏使用了系统自带的控件。然而这个效果和我们看到的很多底部标签栏相差甚远(右图,twitter客户端Twidroyd截图)。
他们到底是怎么实现的呢?为此,我在网上查了不少资料,大致有以下种方案:
- Button Bar实现;
- 修改TabWidget。
1. Button Bar
在Android 3.0以前的版本里,这种方案多用于制作动作栏。3.0后出现了ActionBar控件,为开发者省了不少事。希望手机版的Android也早点加入。
优点:实现了你想要的效果,外观很容易定制。
缺点:标签栏实际不是一个,有多个,他们分别属于不同的界面(从属关系)。这导致了在界面切换的时候,标签栏会随着他的界面(或者说Activity)“动”,而非常驻在底部。
改进:有一种改进方式是,用一个Activity来控制整个主界面,标签栏include在这个主界面的布局里,点击标签时显示相应的View(实际上是在一个Activity上多个View的切换)。这样就保证了标签栏只有一个,而且不会随着标签切换而动来动去。当然,缺点也是显而易见的,当标签过多的时候,这个Activity会变得相当复杂。呵呵~万一有个变动,你懂的。
2. 修改TabWidget
优点:达到了目的,继承了TabWidget的基本功能,可复用,使用简单;
缺点:需要研究不少Android资料,查references 查到眼花,费九牛二虎之力去掉分割线,底部白线之类的东西,完成外观定制。
这个方法貌似有不少人用,这里有几篇中文资料(其实都差不多啦,中文圈你抄我我抄你的。。。唉):
3. 奇技淫巧
我想到了Android控件的一个属性: android:visibility=”gone”。 这简直就是救命稻草!它可以让你的控件不显示,而且还不占地方。这有什么用呢?这意味着,我们可以照样用TabHost,可以照样放TabWidget, 只是,只是我们不把TabWidget显示出来。它现在是隐形的标签栏,the real tabs。我们所要做的是:安置一个“傀儡”标签栏,让它来和用户接触。这是不是有点像Design Pattern里的“Proxy”呢?
这个方案算是投机取巧之作,很可惜,我不是第一个想到的,你可以看这里。历史总是惊人的相似啊!
标签容器布局,大致代码如下:
main.xml:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
<? xml
version = "1.0"
encoding = "utf-8" ?> <!-- TabHost --> < TabHost android:layout_width = "fill_parent" android:layout_height = "fill_parent" android:id = "@android:id/tabhost" > < LinearLayout android:orientation = "vertical" android:layout_width = "fill_parent" android:layout_height = "fill_parent" > <!-- 隐藏的TabWidget,visibility="gone" --> < TabWidget android:id = "@android:id/tabs" android:layout_width = "fill_parent" android:layout_height = "wrap_content" android:visibility = "gone"
/> <!-- 标签内容 --> < FrameLayout android:id = "@android:id/tabcontent" android:layout_width = "fill_parent" android:layout_height = "0.0dip" android:layout_weight = "1.0" /> <!-- 用户可见的“tabs”实际上是一组按钮--> <!-- 注意:checkedButton=“@+id/tab1“,这使得默认选中第一个按钮 --> < RadioGroup android:id = "@+id/tab_group" android:layout_width = "fill_parent" android:layout_height = "50dp" android:gravity = "center_vertical" android:layout_gravity = "bottom" android:orientation = "horizontal" android:background = "@drawable/tab_bar_bg" android:checkedButton = "@+id/tab1" > <!-- 第一个标签,注意button属性设置成null,以此去掉自带的radio button--> <!-- 注意:id="@id/tab1",为什么不是+id呢?这个和加载先后有关系,Google一下吧 --> < RadioButton android:id = "@id/tab1" android:tag = "tab1" android:layout_width = "fill_parent" android:layout_height = "fill_parent" android:layout_weight = "1.0" android:layout_marginTop = "1.0dip" android:text = "Tab 1" android:button = "@null" android:gravity = "center" android:background = "@drawable/tab_bg_selector" /> < RadioButton android:id = "@+id/tab2" android:layout_width = "fill_parent" android:layout_height = "fill_parent" android:layout_weight = "1.0" android:layout_marginTop = "1.0dip" android:text = "Tab 2" android:button = "@null" android:gravity = "center" android:background = "@drawable/tab_bg_selector" /> < RadioButton android:id = "@+id/tab3" android:layout_width = "fill_parent" android:layout_height = "fill_parent" android:layout_weight = "1.0" android:layout_marginTop = "1.0dip" android:text = "Tab 3" android:button = "@null" android:gravity = "center" android:background = "@drawable/tab_bg_selector" /> </ RadioGroup > </ LinearLayout > </ TabHost > |
RadioGroup就是底部的标签栏,背景进行了自定义。我在这边demo里用了9.png格式的图,嗯,你会经常用它的。
此外,标签被选中和未被选中的关键在于android:background=”@drawable/tab_bg_selector”这句。
selector:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<? xml
version = "1.0"
encoding = "utf-8" ?> < selector < item android:state_focused = "true" android:drawable = "@drawable/tab_bg_focused"
/> < item android:state_pressed = "true" android:drawable = "@drawable/tab_bg_selected"
/> < item android:state_checked = "true" android:drawable = "@drawable/tab_bg_selected"
/> </ selector > |
下面列出加载它的Activity代码:
TabDemoActivity:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
public
class TabDemoActivity
extends
TabActivity { private
TabHost tabhost; private
RadioGroup tabGroup; @Override public
void onCreate(Bundle savedInstanceState) { super .onCreate(savedInstanceState); setContentView(R.layout.main); tabhost = getTabHost(); tabGroup = (RadioGroup) findViewById(R.id.tab_group); // 这里新建3个的Intent用于Activity的切换 Intent tab1 =
new Intent( this , TabOneActivity. class ); Intent tab2 =
new Intent( this , TabTwoActivity. class ); Intent tab3 =
new Intent( this , TabThreeActivity. class ); // 向tabhost里添加tab tabhost.addTab(tabhost.newTabSpec( "TAB1" ).setIndicator( "Tab
1" ) .setContent(tab1)); tabhost.addTab(tabhost.newTabSpec( "TAB2" ).setIndicator( "Tab
2" ) .setContent(tab2)); tabhost.addTab(tabhost.newTabSpec( "TAB3" ).setIndicator( "Tab
3" ) .setContent(tab3)); // 给各个按钮设置监听 tabGroup.setOnCheckedChangeListener( new
OnTabChangeListener()); } private
class OnTabChangeListener
implements
OnCheckedChangeListener { @Override public
void onCheckedChanged(RadioGroup group,
int id) { // TODO Auto-generated method stub //尤其需要注意这里,setCurrentTabByTag方法是纽带 switch
(id) { case
R.id.tab1: tabhost.setCurrentTabByTag( "TAB1" ); break ; case
R.id.tab2: tabhost.setCurrentTabByTag( "TAB2" ); break ; case
R.id.tab3: tabhost.setCurrentTabByTag( "TAB3" ); break ; } } } } |
最后,为演示起见我们写3个装入容器的Activity。TabOneActivity,TabTwoActivity,TabThreeActivity.
比如TabOneActivity:
1
2
3
4
5
6
7
8
9
10
11
12
|
public
class TabOneActivity
extends
Activity { @Override protected
void onCreate(Bundle savedInstanceState) { // TODO Auto-generated method stub super .onCreate(savedInstanceState); setContentView(R.layout.content); TextView text=(TextView)findViewById(R.id.text); text.setText( "This is tab 1." ); } } |
他们的layout很简单,在LinearLayout里就放了个TextView。。。这里就不贴了。
最终效果图:
当然这只是一个Demo,要做得更漂亮你需要在细节处好好作文章,譬如,美化文字,添加图标等等。
转:http://note.sdo.com/u/jesse_luo/n/sCPcz~jQ_jqwLX0tc002lF