我的应用程序的文本编辑器允许用户打开和编辑文件,我想在 TabHost 中将文件作为新选项卡打开,以便可以打开多个文件。如何将 EditText 添加到新创建的选项卡?这就是我在 onCreate() 中尝试过的
TabHost tabHost=(TabHost)findViewById(R.id.tabHost);
tabHost.setup();
EditText editor = new EditText(this);
TabSpec spec1=tabHost.newTabSpec("Tab 1");
spec1.setContent(editor.getId());
spec1.setIndicator("Tab 1");
我认为问题是`spec1.setContent(editor.getId());