是否可以从标签小部件中打开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);