使用TabHost的简单例子

布局文件的代码:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <Button
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:id="@+id/btn"
        android:text="this is tab1" />
    <EditText
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="this is tab2"
        android:id="@+id/et" />
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="vertical"
         android:layout_width="fill_parent"
     android:layout_height="fill_parent"
     android:id="@+id/mylayout"   >
        <Button
             android:layout_width="fill_parent"
          android:layout_height="wrap_content"    
         android:text="tab3"
            />
        <EditText
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="this  is tab3"      
        />          
    </LinearLayout>
</LinearLayout>

主类的代码:

public class MainActivity extends TabActivity implements OnTabChangeListener {

   private TabSpec ts1,ts2,ts3;//声明3个分页
   private TabHost tableHost;//分页菜单
   @Override
   protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    tableHost = this.getTabHost();//实例分页菜单
    //利用LayoutInflater将布局与分页菜单一起显示
    LayoutInflater.from(this).inflate(R.layout.activity_main, tableHost.getTabContentView());
      ts1 = tableHost.newTabSpec("tabOne");//实例化第一个分页
    ts1.setIndicator("Tab1");//设置此分页的显示标题
    ts1.setContent(R.id.btn);//设置此分页的资源ID
    ts2 = tableHost.newTabSpec("tabTwo");
    //设置此分页显示的标题和图标
    ts2.setIndicator("Tab2",getResources().getDrawable(R.drawable.ic_launcher));
    ts2.setContent(R.id.et);
    ts3 = tableHost.newTabSpec("tabThree");
    ts3.setIndicator("Tab3");
    ts3.setContent(R.id.mylayout);//添加分页的布局
    tableHost.addTab(ts1);
    tableHost.addTab(ts2);
    tableHost.addTab(ts3);
    tableHost.setOnTabChangedListener(this);
    //setContentView(R.layout.activity_main);
 }

   @Override
   public void onTabChanged(String arg0) {
    // TODO Auto-generated method stub
      if(arg0.equals("tabOne"))
      {
       Toast.makeText(this, "分页1", Toast.LENGTH_LONG).show();
      }
      if(arg0.equals("tabTwo"))
      {
       Toast.makeText(this, "分页2", Toast.LENGTH_LONG).show();
      }
      if(arg0.equals("tabThree"))
      {
       Toast.makeText(this, "分页3", Toast.LENGTH_LONG).show();
      }
   }
}

转载于:https://www.cnblogs.com/ming0427/archive/2013/04/01/2994370.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值