Android:TabHost

77 篇文章 0 订阅

<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:id="@+id/tabhost"
    >
    <LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical"
    >
        <TabWidget
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:id="@android:id/tabs"
        />
        <FrameLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:id="@android:id/tabcontent"
        >
            <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:id="@+id/page1"
            >
               <TextView
               android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:text="这是第一个标签页"
               />
            </LinearLayout>
        

           <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:id="@+id/page2"
            >
               <TextView
               android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:text="这是第二个标签页"
               />
            </LinearLayout>

            
            <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:id="@+id/page3"
            >
               <TextView
               android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:text="这是第三个标签页"
               />
            </LinearLayout>

        </FrameLayout>
    </LinearLayout>
</TabHost>


tabwidget中的一个条目

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:orientation="vertical"
  android:background="#FFFFFF"
  >
  <TextView
  android:background="@drawable/tab_bg"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:gravity="center"
  android:textSize="18sp"
  android:textColor="#FFFFFF"
  android:layout_marginRight="1dp"
  android:id="@+id/name"
  />
</LinearLayout>


条目背景

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_pressed="true" android:drawable="@drawable/bg_selected" /> <!-- pressed -->
    <item android:state_selected="true" android:drawable="@drawable/bg_selected" />

    <item android:drawable="@drawable/bg_normal" /> <!-- default -->
</selector>



public class MainActivity extends Activity {
    TabHost tabHost;
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
       
        Debug.startMethodTracing("itcast");

        tabHost = (TabHost) this.findViewById(R.id.tabhost);
        tabHost.setup();

        
        TabSpec tabSpec = tabHost.newTabSpec("page1");
        //tabSpec.setIndicator("首页", getResources().getDrawable(R.drawable.i1));
        tabSpec.setIndicator(createTabView("首页"));
        tabSpec.setContent(R.id.page1);
        tabHost.addTab(tabSpec);
        
        tabSpec = tabHost.newTabSpec("page2");
       // tabSpec.setIndicator("第二页", getResources().getDrawable(R.drawable.i2));
        tabSpec.setIndicator(createTabView("第二页"));
        tabSpec.setContent(R.id.page2);
        tabHost.addTab(tabSpec);
        
        tabSpec = tabHost.newTabSpec("page3");
        //tabSpec.setIndicator("第三页", getResources().getDrawable(R.drawable.i7));
        tabSpec.setIndicator(createTabView("第三页"));
        tabSpec.setContent(R.id.page3);
        tabHost.addTab(tabSpec);
        
        tabHost.setCurrentTab(0);
    }
    
    @Override
    protected void onDestroy() {
        Debug.stopMethodTracing();
        super.onDestroy();
    }

    private View createTabView(String name) {
        //View tabView = getLayoutInflater().inflate(R.layout.tab, null);
        LinearLayout linearLayout = new LinearLayout(this);
        linearLayout.setOrientation(LinearLayout.VERTICAL);
        linearLayout.setBackgroundColor(0xFFFFFF);
        
        TextView textView = new TextView(this);
        textView.setText(name);
        textView.setBackgroundResource(R.drawable.tab_bg);
        textView.setTextColor(0xFFFFFF);
        textView.setTextSize(18.0f);
        textView.setGravity(Gravity.CENTER);
        ViewGroup.LayoutParams params = new ViewGroup.LayoutParams(
                ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT);
        linearLayout.addView(textView, params);
        
        return linearLayout;
    }
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值