使用带有视图的选项卡

时间:2012-04-15 10:22:25

标签: android

使用Tabs with Views时遇到一些问题。 首先,我刚刚复制了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)时,应用程序崩溃了。 我还尝试在layoutfile中创建一个textview,并调用setContent(R.id.test), 这也使它崩溃。

所以这是一个问题。

第二点是。我不想使用活动,因为我希望能够在这些类上调用方法,这些方法应代表Tab-content。 所以我最初的想法是,从视图中派生出一些类。每个标签1,并传递他们的ID。但是,上面的代码示例需要先工作。

问候Uzaku

1 个答案:

答案 0 :(得分:0)

我知道你说你在布局文件中尝试了TextView,但这应该有用......

按如下方式更改FrameLayout部分...

<FrameLayout
    android:id="@android:id/tabcontent"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:padding="5dp" >
    <TextView 
        android:id="@+id/test"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" 
        android:text="TEST" />
</FrameLayout>

然后在您的代码中执行以下操作...

tH.addTab(tH.newTabSpec("t1").setIndicator("Tab1").setContent(R.id.test));