如何打开Android';从选项卡小部件中选择联系人簿或拨号器?

如何打开Android';从选项卡小部件中选择联系人簿或拨号器?,android,android-tabs,Android,Android Tabs,可以从选项卡小部件打开Android的默认联系人簿或拨号程序吗 相关代码(当前不工作): intent = new Intent(Intent.ACTION_DIAL); // Initialize a TabSpec for each tab and add it to the TabHost spec = tabHost.newTabSpec("artists").setIndicator("Dialler", null) .

可以从选项卡小部件打开Android的默认联系人簿或拨号程序吗

相关代码(当前不工作):

intent = new Intent(Intent.ACTION_DIAL);

// Initialize a TabSpec for each tab and add it to the TabHost
spec = tabHost.newTabSpec("artists").setIndicator("Dialler",
                  null)
              .setContent(intent);
tabHost.addTab(spec);