在Tab主机android中打开子活动

时间:2014-01-08 06:30:59

标签: android android-tabhost android-tabs

我的Tab_Bar.class定义了标签 我如何开展儿童活动

我只使用一个Tab_bar.class作为Tab Host

public class Tab_Bar extends TabActivity  {

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.tab);
    setTabs() ;

}
 void setTabs()
{
    addTab("My Profile", R.drawable.home_normal, MyProfile.class);
    addTab("Search", R.drawable.search_normal, JobSearch.class);

    addTab("Saved Jobs", R.drawable.starred, Saved_jobs.class);
    addTab("Job Alert", R.drawable.job_match, JobAlert.class);
}

private void addTab(String labelId, int drawableId, Class<?> c)
{
    TabHost tabHost = getTabHost();
    Intent intent = new Intent(this, c);
    TabHost.TabSpec spec = tabHost.newTabSpec("tab" + labelId); 

    View tabIndicator = LayoutInflater.from(this).inflate(R.layout.tab_indicator, getTabWidget(), false);
    TextView title = (TextView) tabIndicator.findViewById(R.id.title);
    title.setText(labelId);
    ImageView icon = (ImageView) tabIndicator.findViewById(R.id.icon);
    icon.setImageResource(drawableId);

    spec.setIndicator(tabIndicator);
    spec.setContent(intent);
    tabHost.addTab(spec);
    tabHost.setCurrentTab(1);

}

}

我正在使用这些xml文件 TabIndicator.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="0dip"
android:layout_height="55dip"    
android:layout_weight="1"
android:orientation="vertical"

 android:background="@drawable/tab_indicator"
android:padding="5dp">

<ImageView android:id="@+id/icon"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:src="@drawable/icon"

/> 

 <TextView android:id="@+id/title"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true" 
    android:layout_centerHorizontal="true"
    style="?android:attr/tabWidgetStyle"
    android:textSize="13sp"

/>    

和Tab.xml

<?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">
    <FrameLayout android:id="@android:id/tabcontent"
        android:layout_width="fill_parent" android:layout_height="0dip"
        android:layout_weight="1" />

    <TabWidget android:id="@android:id/tabs"
        android:layout_width="fill_parent"    android:layout_height="wrap_content"
        android:layout_weight="0"  />
</LinearLayout>
</TabHost> 

我正在使用Tab_bar.class和这些用于Tab主机的xml文件,但我对打开没有任何想法 标签主持人子活动。 我是android新手。 请帮帮我,我如何开展儿童活动 任何帮助都得到了赞赏

我对我糟糕的英语感到非常抱歉

2 个答案:

答案 0 :(得分:1)

这不是你所需要的,但可能有所帮助。我使用此设置创建动态选项卡,然后使用它们执行不同的操作。

protected void onCreate(Bundle savedInstanceState) {
...

    final TabHost Tabs = (TabHost) findViewById(android.R.id.tabhost);
    Tabs.setup();
    int count;
        for (count =0;count < 2;count++){

            ...

            final int passedTabId = count; 
            NewTab.setContent(new TabHost.TabContentFactory()
            {
                public View createTabContent(String tag)
                {

                   ...

                 RelativeLayout layout = new RelativeLayout(getApplicationContext);
                android.widget.RelativeLayout.LayoutParams params = 
                    new RelativeLayout.LayoutParams(
                LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT);
                layout.setLayoutParams(params);
                layout.setId(some ID);
                layout.setBackgroundResource(R.drawable.room_background);

                   TextView dynText = new TextView(getApplicationContext);
                    ...
                   layout.addView(dynText);


                   return layout;

    // You can set onClickListeners, etc here and then assign them some functions you need
 // You can also create different layouts for every tab according to the passedTabId
                }

            });

            Tabs.addTab(NewTab);
        }
}

事实上,你不能简单地设置另一个活动来在每个标签中运行。您需要为在该选项卡中创建的对象设置一些所需的功能,但主要活动保持不变。祝你好运:)

答案 1 :(得分:0)

首先尝试使用Fragment创建标签。

您正在使用的功能现在已弃用。

我已在Dynamically changing the fragments inside a fragment tab host?

上发布完整帖子

请检查一下,如果您有任何疑虑,请告诉我。

只需逐个休息每个已定义的步骤。

<强> CONCEPT

我正在举一个简单的例子来澄清这个片段究竟是如何工作的。

采取简单的床方案。你的床上有几件东西,比如枕头,床单等。 现在考虑你的床单脏了的情况。所以你现在要做什么。你只需用新的表替换那张表,然后就会有一个紧张的睡眠:)

同样,当您需要更改UI ...然后将此片段替换为新片段。

就是这样。现在你很高兴接受我的职位。

谢谢!