我是Android开发新手,我正在使用三个标签处理TabHost
布局,所以我制作了我的xml文件:
<TabHost
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/ntm">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TabWidget
android:id="@android:id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0"/>
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/Present"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TableLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:text="Simple"
android:gravity="center"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/textView24"
android:layout_weight="1"/>
<TextView
android:text="Continuous"
android:gravity="center"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/textView23"
android:layout_weight="1"/>
<TextView
android:text="Perfect Simple"
android:gravity="center"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/textView15"
android:layout_weight="1"/>
<TextView
android:text="Perfect Continuous"
android:gravity="center"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/textView8"
android:layout_weight="1"/>
</TableRow>
<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent" />
</TableLayout>
</LinearLayout>
<LinearLayout
android:id="@+id/Past"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:text="NTM1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/textView25" />
</LinearLayout>
<LinearLayout
android:id="@+id/Future"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:text="NTM2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/textView26" />
</LinearLayout>
</FrameLayout>
</LinearLayout>
</TabHost>
</LinearLayout>
这是我在相关活动中的代码,用于初始化标签:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.time);
}
TabHost tab =(TabHost) findViewById(R.id.ntm);
tab.setup();
TabHost.TabSpec spec1 = tab.newTabSpec("PRESENT");
spec1.setIndicator("PRESENT");
spec1.setContent(R.id.Present);
tab.addTab(spec1);
TabHost.TabSpec spec2 = tab.newTabSpec("PAST");
spec2.setIndicator("PAST");
spec2.setContent(R.id.Past);
tab.addTab(spec2);
TabHost.TabSpec spec3 = tab.newTabSpec("FUTURE");
spec3.setIndicator("FUTURE");
spec3.setContent(R.id.Future);
tab.addTab(spec3);
我收到此错误:
无法解析符号
关于tab.setup()
等所有方法或适用于TabHost
和TabSpec
个对象的所有方法。
我尝试在main activity
中复制/粘贴我的代码,但我没有错误,但应用程序立即崩溃
答案 0 :(得分:0)
我发现了我的错误,我没有将初始化代码放入方法onCreate
我没有更多错误