web-dev-qa-db-ja.com

アクティビティの代わりにビューでAndroidタブを使用する例?

Android Developers TabWidgetチュートリアルは次のように言っています:

「タブのコンテンツは、2つの方法のいずれかで実装できます。タブを使用して同じアクティビティ内のビューを交換するか、タブを使用して完全に別個のアクティビティ間で変更します。」

チュートリアルでは、個別のアクティビティでタブを使用する方法を示します。同じアクティビティ内で異なるビューを持つタブを使用する例を見つけることができませんでした。私はこの特定の車輪を再発明したくないので、ここで誰かがこれがどのように行われているのかを知っていて、私を手がかりにできることを望んでいます。ありがとう!

46
David

私はあなたが使用したいビューに渡す各タブの.setContentメソッドで考える:

TabHost.TabSpec spec1 = tabs.newTabSpec("tag1");
spec1.setContent(R.id.AnalogClock01);
spec1.setIndicator("Analog Clock");

ここに私がしばらく前に見つけた例があります:

    <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:Android="http://schemas.Android.com/apk/res/Android"
Android:orientation="vertical"
Android:layout_width="fill_parent"
Android:layout_height="fill_parent"
>

  <TabHost Android:id="@+id/TabHost01" Android:layout_width="wrap_content" Android:layout_height="wrap_content">
    <TabWidget Android:id="@Android:id/tabs" Android:layout_width="wrap_content" Android:layout_height="wrap_content" />
    <FrameLayout Android:id="@Android:id/tabcontent" Android:layout_width="wrap_content" Android:layout_height="wrap_content" Android:paddingTop="65px">
      <AnalogClock Android:id="@+id/AnalogClock01" Android:layout_width="wrap_content" Android:layout_height="wrap_content"></AnalogClock>
      <DigitalClock Android:text="DigitalClock01" Android:id="@+id/DigitalClock01" Android:layout_width="wrap_content" Android:layout_height="wrap_content"></DigitalClock>
    </FrameLayout>
  </TabHost>
</LinearLayout>

また、この例のJavaコードは次のとおりです。

import Android.app.Activity;
import Android.os.Bundle;
import Android.widget.TabHost;

public class tabexample extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        TabHost tabs = (TabHost)findViewById(R.id.TabHost01);

        tabs.setup();

        TabHost.TabSpec spec1 = tabs.newTabSpec("tag1");

        spec1.setContent(R.id.AnalogClock01);
        spec1.setIndicator("Analog Clock");

        tabs.addTab(spec1);

        TabHost.TabSpec spec2 = tabs.newTabSpec("tag2");
        spec2.setContent(R.id.DigitalClock01);
        spec2.setIndicator("Digital Clock");

        tabs.addTab(spec2);
    }
}
40
ninjasense

私はこれを使用しましたが、私にとっては問題ありませんでした http://www.codeproject.com/Articles/107693/Tabbed-Applications-in-Android

4
Islam A. Hassan