我在使用带有视图的选项卡时遇到了一点问题。首先,我只是复制了 Tabs 与活动一起使用的示例代码:
我的 LayoutFile 看起来像这样:
<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5dp">
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5dp" />
</LinearLayout>
</TabHost>
这是我的 Java 代码:
public class MyActivity extends TabActivity{
public void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState)
setContentView(R.layout.main);
TabHost tH = getTabHost();
Indent intent = new Intent().setClass(this, AnotherActivity.class);
// Initialize a TabSpec for each tab and add it to the TabHost
//TextView Test = new TextView(this);
//Test.setText("test");
tH.addTab(tH.newTabSpec("t1").setIndicator("Tab1").setContent(intent));
tH.setCurrentTab(0);
}
}
这按预期工作。但是,当我取消注释 TextView 行并调用 setContent(Test.getId()) 而不是 setContent(intent) 时,应用程序崩溃。我还尝试在布局文件中创建一个文本视图,并调用 setContent(R.id.test),这也会使其崩溃。
所以这是一个问题。
第二点是。我不想使用活动,因为我希望能够在这些类上调用方法,这些方法应代表 Tab 内容。所以我最初的想法是,从视图中派生一些类。1 为每个选项卡,并传递他们的 id。但因此上面的代码示例需要首先工作。
问候宇扎库