我正在尝试将Tabs添加到现有应用中以添加更多功能,我已经能够实现制表符并将所有内容移至片段。但是,我现在设置它的方式不会保留每个选项卡的堆栈。所以基本上我有一个主要的FrameActivity来处理选项卡并将片段附加到每个选项卡。
在我的研究过程中,我找到了这个帖子:https://stackoverflow.com/a/7480080/792407
他给出的例子很有意义,但我似乎无法显示片段。所以让我解释一下我正在做些什么来确保我理解它:
我有一个主标签活动,它扩展了FragmentActivity并处理标签。布局如下:
<?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="@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"
>
<TabWidget
android:id="@android:id/tabs"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="0"
/>
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_weight="0"/>
<FrameLayout
android:id="@+android:id/realtabcontent"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1"/>
</LinearLayout>
</TabHost>
</LinearLayout>
在此活动中,我初始化我的标签:
mTabHost = getTabHost();
Resources res = getResources();
Intent intent;
TabHost.TabSpec spec;
//search tab
intent = new Intent().setClass(this, searchFragmentStack.class);
spec = mTabHost.newTabSpec("search").setIndicator("Search",res.getDrawable(R.drawable.ic_tab_search)).setContent(intent);
mTabHost.addTab(spec);
//home tab
intent = new Intent().setClass(this, homeFragmentStack.class);
spec = mTabHost.newTabSpec("home").setIndicator("Home",res.getDrawable(R.drawable.ic_tab_home)).setContent(intent);
mTabHost.addTab(spec);
我正在使用的堆栈类如下:
public class searchFragmentStack extends ActivityInTab {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
navigateTo(new search());
}
}
ActivityInTab抽象类与他在线程中使用的代码相同:
abstract class ActivityInTab extends FragmentActivity { // FragmentActivity is just Activity for the support library.
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.tabs_layout);
}
/**
* Navigates to a new fragment, which is added in the fragment container
* view.
*
* @param newFragment
*/
protected void navigateTo(Fragment newFragment) {
FragmentManager manager = getSupportFragmentManager();
FragmentTransaction ft = manager.beginTransaction();
ft.add(R.id.content, newFragment);
ft.addToBackStack(null);
ft.commit();
}
@Override
public void onBackPressed() {
FragmentManager manager = getSupportFragmentManager();
if (manager.getBackStackEntryCount() > 0) {
// If there are back-stack entries, leave the FragmentActivity
// implementation take care of them.
super.onBackPressed();
} else {
// Otherwise, ask user if he wants to leave :)
//showExitDialog();
}
}
}
并且堆栈的布局再次基于他的例子:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/content"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:isScrollContainer="true">
</RelativeLayout>
这就是它。我得到的只是标签中的黑色屏幕,这让我觉得这是一个布局问题,或者我只是做错了。这有意义吗?有没有更好的办法?我错过了什么吗?任何帮助将不胜感激。
答案 0 :(得分:2)
我在开始一个虚拟项目并从头开始做所有事情后想出来了:
我用来处理标签的活动需要是TabActivity,并且好像我使用Activities创建普通标签,除了我将使用单独的FragmentActivity“堆栈”来管理每个标签中的内容。另外,我用于Tab活动的布局对于我正在做的事情是错误的,我现在正在使用:
<?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>
这是两个主要的变化,我上传了测试项目的源代码,以防有人想为自己的项目引用它:
Seperate Fragment Stacks in Tabs
修改强> 的
忘记提到TabActivity已弃用,因此未来的Android版本不应该依赖此方法。我还没想出如何使用FragmentActivity实现它。也就是说,它适用于我目前的需求,让我有时间以新的方式弄清楚如何做到这一点。
答案 1 :(得分:0)
我尝试了片段活动中的标签。所以,可能值得一看