0

アクティビティをタブに表示しようとしていますが、動作させることができません。アクティビティが単独で表示されることを確認しましたが、タブに配置しようとするとすぐに空のタブが表示されます。

これは、タブ画面とその XML レイアウト ファイルです。

public class TestTabs extends TabActivity{

private TabHost tabHost;          // The tabhost for all the tabs
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    this.setContentView(R.layout.tabbed_screen);

    tabHost = getTabHost();

    initTabs();

}



protected void addTab(String tabName, Intent tabIntent){
    TabSpec tabSpec = tabHost.newTabSpec(tabName);
    tabSpec.setIndicator(tabName);
    tabSpec.setContent(tabIntent);
    tabHost.addTab(tabSpec);

}

protected void initTabs() {
    addTab("1",new Intent(this,TestActivity.class));
}

}

レイアウト:

   <?xml version="1.0" encoding="utf-8"?>
<TabHost android:layout_width="fill_parent"
    android:layout_height="fill_parent" xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@android:id/tabhost">
    <LinearLayout android:id="@+id/LinearLayout01"
        android:orientation="vertical" android:layout_height="fill_parent"
        android:layout_width="fill_parent">
        <TabWidget android:id="@android:id/tabs" android:layout_height="fill_parent" android:layout_width="fill_parent"></TabWidget>    
        <FrameLayout android:id="@android:id/tabcontent"
            android:layout_height="fill_parent" android:layout_width="fill_parent">
        </FrameLayout>
    </LinearLayout>
</TabHost>

これは「子」アクティビティです。

public class TestActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
    // The super.onCreate() call will set the general frame also for this Screen:
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
}

}

レイアウト:

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:layout_alignParentTop="true"
    android:ellipsize="end"
    android:maxLines="1"
    android:singleLine="true"
    android:text="Hello World"
    android:textSize="12sp"
    android:textStyle="bold" />

私が言ったように、子のアクティビティは一人のときは問題ありませんが、タブに入れると内容のないタブが表示されます。

明らかな何かが欠けている可能性がありますが、Android でタブを使って何かをしたのはこれが初めてです。

4

1 に答える 1

0

メソッド「addTab」の名前を変更する必要があります。TabActivity のデフォルト メソッドがこの問題を引き起こしている可能性があるためです。次に、コードは次のようになります。

public class TestTabs extends TabActivity{

    private TabHost tabHost;          // The tabhost for all the tabs
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        this.setContentView(R.layout.tabbed_screen);

        tabHost = getTabHost();
        TabSpec tabSpec;

        Intent intent = new Intent().setClass(this, tab1_activity.class);
        tabSpec = tabHost.newTabSpec("Tab-1").setIndicator("Tab-1",drawable1_obj).setContent(intent);
        tabHost.addTab(spec);

        intent = new Intent().setClass(this, tab2_activity.class);
        tabSpec = tabHost.newTabSpec("Tab-2").setIndicator("Tab-2",drawable2_obj).setContent(intent);
        tabHost.addTab(spec);   

        tabHost.setCurrentTab(1);

    }    
}
于 2012-07-16T13:24:17.810 に答える