android TabHost解决下面白线

移动开发 Android
我之前做分页都是用GridView和ActivityGroup实现的.因为觉得TabHost不好用,还有就是自己水平差的原因吧.如果帮的话,重写view任何问题都可以解决

我之前做分页都是用GridView和ActivityGroup实现的.因为觉得TabHost不好用,还有就是自己水平差的原因吧.如果帮的话,重写view任何问题都可以解决,呵呵,下面请看实现过程,其实很简单.      针对TabHost的运用,我就不多讲解了,网上例子好多,或者你也可以下载我的Demo查看,不过先声明,写的不好. 
      代码片段:

 

01
02
03
04
05
06
07
08
09
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
public class MyActivity extends TabActivity {
        private TabWidget tabWidget;
 
        /** Called when the activity is first created. */
        public void onCreate(Bundle savedInstanceState) {
                super.onCreate(savedInstanceState);
                setContentView(R.layout.main);
 
                Resources res = getResources(); // Resource object to get Drawables
                final TabHost tabHost = getTabHost(); // The activity TabHost
                TabHost.TabSpec spec; // Resusable TabSpec for each tab
                Intent intent; // Reusable Intent for each tab
 
                // Create an Intent to launch an Activity for the tab (to be reused)
                intent = new Intent().setClass(this, ArtistsActivity.class);
 
                // Initialize a TabSpec for each tab and add it to the TabHost
                spec = tabHost
                                .newTabSpec("artists")
                                .setIndicator("Artists",
                                                res.getDrawable(R.drawable.ic_tab_artists))
                                .setContent(intent);
                tabHost.addTab(spec);
 
                // Do the same for the other tabs
                intent = new Intent().setClass(this, AlbumsActivity.class);
                spec = tabHost
                                .newTabSpec("albums")
                                .setIndicator("Albums",
                                                res.getDrawable(R.drawable.ic_tab_artists))
                                .setContent(intent);
                tabHost.addTab(spec);
 
                intent = new Intent().setClass(this, SongsActivity.class);
                spec = tabHost
                                .newTabSpec("songs")
                                .setIndicator("Songs",
                                                res.getDrawable(R.drawable.ic_tab_artists))
                                .setContent(intent);
                tabHost.addTab(spec);
                tabHost.setCurrentTab(2);
                View v;
                tabWidget = tabHost.getTabWidget();
 
                for (int i = 0; i < tabWidget.getChildCount(); i++) {
                        // 获取tabview项
                        v = tabWidget.getChildAt(i);
                        // 设置tab背景颜色
                        v.setBackgroundResource(android.R.color.white);
                        // 获取textview控件,(默认为白色)
                        TextView textView = (TextView) v.findViewById(android.R.id.title);
                        textView.setTextColor(Color.BLACK);
                        // 默认选项要处理
                        if (tabHost.getCurrentTab() == i)
                                v.setBackgroundResource(R.drawable.renren_sdk_pay_repair_btn);
                }
                // tabchanged的监听
                tabHost.setOnTabChangedListener(new OnTabChangeListener() {
                        // tabId显示的是:newTabSpec里面的值
                        @Override
                        public void onTabChanged(String tabId) {
                                // 首先把所有的view背景初始化了.
                                for (int i = 0; i < tabHost.getTabWidget().getChildCount(); i++) {
                                        View v = tabHost.getTabWidget().getChildAt(i);
                                        // 设置tab背景颜色
                                        v.setBackgroundResource(android.R.color.white);
                                        // 选中的进行处理
                                        if (tabHost.getCurrentTab() == i) {
                                                v.setBackgroundResource(R.drawable.renren_sdk_pay_repair_btn);
                                        }
 
                                }
                        }
                });
 
        }
}



其实就是那几行加注释部分,相信你看一下就明白. 

解决Tab下面白线方法:

首先我们要获取Tab的分页view和textview控件,因为textview默认字体是白色.我们要进行处理.获取后进行相应处理(也就是该加背景的加背景,该改变字体颜色的改变字体颜色).***我们要对TabHost进行监听(OnTabChangedListener);也不是什么监听,。就是用他的点击执行事件.

责任编辑:冰凝儿 来源: android TabHost解决下面白线
相关推荐

2010-03-26 14:43:09

CentOS系统

2017-03-30 20:45:26

2011-03-11 12:27:16

康普思科

2012-04-17 14:30:28

2012-04-13 19:15:56

HTC

2013-01-29 10:07:08

综合布线数据机柜

2013-04-03 12:57:01

Android开发读写assets目录下

2023-04-28 14:58:10

Python地图循环点

2011-04-21 11:21:47

Linux路径

2015-05-12 15:43:32

2019-02-18 11:50:49

技术黑客网络安全

2014-11-26 09:59:36

PMC

2011-06-08 16:22:24

白盒测试

2022-09-19 00:34:32

渗透测试安全漏洞

2015-02-02 16:32:16

别踩白块游戏OGEngine

2011-10-31 13:37:11

华为云计算

2009-12-22 15:58:08

2010-01-27 16:30:47

Android选项卡

2023-12-21 15:18:29

2019-01-28 11:21:08

点赞
收藏

51CTO技术栈公众号