我正在学习如何制作 Android 应用程序,但我遇到了这个错误,我想不通。
这是我的 xml 文件中的内容:
<LinearLayout
android:id="@+id/tab1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
我的代码中我遇到问题的部分是:
Resources res = getResources();
tabs = (TabHost)findViewById(android.R.id.tabhost);
tabs.setup();
TabHost.TabSpec spec = tabs.newTabSpec("mitab1");
spec.setContent(R.id.tab1);
spec.setIndicator("",res.getDrawable(android.R.drawable.ic_menu_my_calendar));
tabs.addTab(spec);
它在 spec.setContent(R.id.tab1) 行中给我以下错误:找不到符号:变量 id。
我究竟做错了什么?任何帮助,将不胜感激。