码迷,mamicode.com
首页 > 其他好文 > 详细

Tab标签页接口---使用Intent对象

时间:2014-12-11 13:58:17      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:android   style   blog   ar   color   os   使用   sp   on   

 TabHost tabHost = getTabHost();

        Intent it = new Intent();
        it.setClass(Main.this, DateTimePicker.class);
        TabSpec spec=tabHost.newTabSpec("tab1");
        spec.setContent(it);
        spec.setIndicator("ら戳㎝丁",
                getResources().getDrawable(android.R.drawable.ic_lock_idle_alarm));
        tabHost.addTab(spec);

        it = new Intent();
        it.setClass(Main.this, ProgBarDemo.class);
        spec=tabHost.newTabSpec("tab2");
        spec.setIndicator("ProgressBar",
                getResources().getDrawable(android.R.drawable.ic_dialog_alert));
        spec.setContent(it);
        tabHost.addTab(spec);

        tabHost.setCurrentTab(0);

        // 砞﹚tab夹乓砰
        TabWidget tabWidget = (TabWidget)tabHost.findViewById(android.R.id.tabs);
        View tabView = tabWidget.getChildTabViewAt(0);
        TextView tab = (TextView)tabView.findViewById(android.R.id.title);
        tab.setTextSize(20);
        tabView = tabWidget.getChildTabViewAt(1);
        tab = (TextView)tabView.findViewById(android.R.id.title);
        tab.setTextSize(20);

 

Tab标签页接口---使用Intent对象

标签:android   style   blog   ar   color   os   使用   sp   on   

原文地址:http://www.cnblogs.com/zhoujn/p/4157309.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!