为了账号安全,请及时绑定邮箱和手机立即绑定

如何判断用户点击了 TabHos t中的 tab?

如何判断用户点击了 TabHos t中的 tab?

ABOUTYOU 2019-03-05 14:11:25
程序中的 TabHost 中有两个 tabs。我想知道用户什么时候点击另一个 tab。如何判断呢?Resources res = getResources(); // Resource object to get Drawables         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, Main.class);         // Initialize a TabSpec for each tab and add it to the TabHost         spec = tabHost.newTabSpec("watchlist").setIndicator("Watchlist",res.getDrawable(R.drawable.icon)).setContent(intent);         tabHost.addTab(spec);         // Do the same for the other tabs         intent = new Intent().setClass(this, ARActivity.class);         spec = tabHost.newTabSpec("trending").setIndicator("Trending",res.getDrawable(R.drawable.icon)).setContent(intent);         tabHost.addTab(spec);         tabHost.setCurrentTab(0);
查看完整描述

1 回答

  • 1 回答
  • 0 关注
  • 431 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信