Chinaunix首页 | 论坛 | 博客
  • 博客访问: 6640360
  • 博文数量: 915
  • 博客积分: 17977
  • 博客等级: 上将
  • 技术积分: 8846
  • 用 户 组: 普通用户
  • 注册时间: 2005-08-26 09:59
个人简介

一个好老好老的老程序员了。

文章分类

全部博文(915)

文章存档

2022年(9)

2021年(13)

2020年(10)

2019年(40)

2018年(88)

2017年(130)

2015年(5)

2014年(12)

2013年(41)

2012年(36)

2011年(272)

2010年(1)

2009年(53)

2008年(65)

2007年(47)

2006年(81)

2005年(12)

分类: Java

2013-10-18 09:40:54

 

 初始化每个RadioButton并为其添加setOnCheckedChangeListener事件,当点击相应的RadioButton时就可以通过setCurrentTabByTag()方法显示到当前页面。

  Java代码 收藏代码

  private void initRadios() {

  ((RadioButton) findViewById(R.id.main_index_button))

  .setOnCheckedChangeListener(this);

  ((RadioButton) findViewById(R.id.main_running_button))

  .setOnCheckedChangeListener(this);

  ((RadioButton) findViewById(R.id.main_uninstall_button))

  .setOnCheckedChangeListener(this);

  }

  @Override

  public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {

  if(isChecked){

  switch (buttonView.getId()) {

  case R.id.main_index_button:

  tabHost.setCurrentTabByTag("Main");

  break;

  case R.id.main_running_button:

  tabHost.setCurrentTabByTag("RunManager");

  break;

  case R.id.main_uninstall_button:

  tabHost.setCurrentTabByTag("UninstallManager");

  break;

  }

  }

  }

  小结:

  1、在一个tabActivity里面嵌套一个tabAcitivity, 如果在子tabActivity里面显示AlertDialog、ProgressDialog的话,就会引发此错误:android.view.WindowManager$BadTokenException: Unable to add window

  解决方法:

  可以把创建dialog时传递的参数xxx.this改成this.getParent(),其中的xxx为Activity

阅读(5174) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~