<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:Android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent">
<fragment android:name="com.example.news.ArticleListFragment"
android:id="@+id/list"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="match_parent" />
<fragment android:name="com.example.news.ArticleReaderFragment"
android:id="@+id/viewer"
android:layout_weight="2"
android:layout_width="0dp"
android:layout_height="match_parent" />
</LinearLayout>
在<fragment>元素中的android:name属性指定了在布局中要实例化的Fragment。
当系统创建这个Activity布局时,它实例化在布局中指定的每一个Fragment,并且分别调用onCreateView(),来获取每个Fragment的布局。然后系统会在Activity布局中插入通过<fragment>元素中声明直接返回的视图。
注:每个Fragment需要一个唯一的标识,这样能够在Activity被重启时系统使用这个ID来恢复Fragment(并且你能够使用这个ID获取执行事务的Fragment,如删除)。有三种给Fragment提供ID的方法:
A. 使用android:id属性来设置唯一ID;
B. 使用android:tag属性来设置唯一的字符串;
C. 如果没有设置前面两个属性,系统会使用容器视图的ID。
请参阅Android: 不能替换另一个的一个片段
如何显示一个选项卡内的一个新片段?
这里是解决方案。
在 home_activity.xml,你应该离开空你 tabcontent。
<FrameLayout
android:id="@+id/tabcontent"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" />
您的 Home_Activity
private FragmentTabHost mHost
public void changeFragment() {
FragmentTransaction ft = getSupportFragmentManager().beginTransaction()
EntertainmentFragment enFragment = new EntertainmentFragment()
ft.replace(R.id.tabcontent, enFragment)
ft.commit()
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
mHost = (FragmentTabHost) findViewById(android.R.id.tabhost)
mHost.setup(this, getSupportFragmentManager(), R.id.tabcontent)
mHost.addTab(mHost.newTabSpec("School")
.setIndicator("School"), SchoolFragment.class, null)
mHost.addTab(mHost.newTabSpec("Sport")
.setIndicator("Sport"), SportsFragment.class, null)
}
在您的 onIemClick (Sports_Fragment),添加这
MainActivity mainAct = (MainActivity)getActivity()
mainAct.changeFragment()
我充分的项目,基于您的代码,是在这里。
我还没有机会真的检查 TabHost 为什么不工作时我测试您的代码。但FragmentTabHost的作品对我很好。
编辑: 若要修复重叠问题,您可以设置 OnTabChangeListener:
mHost.setOnTabChangedListener(new TabHost.OnTabChangeListener() {
@Override
public void onTabChanged(String tabId) {
// TODO Auto-generated method stub
if (tabId.equalsIgnoreCase("School")) {
Log.v(TAG, "school")
FragmentTransaction ft = getSupportFragmentManager()
.beginTransaction()
schoolFrag = new SchoolFragment()
ft.replace(R.id.tabcontent, schoolFrag)
ft.commit()
}
if (tabId.equalsIgnoreCase("Sport")) {
Log.v(TAG, "Sport")
FragmentTransaction ft = getSupportFragmentManager()
.beginTransaction()
SportsFragment sportFrag = new SportsFragment()
ft.replace(R.id.tabcontent, sportFrag)
ft.commit()
}
}
})
关于 backpress,您可以尝试
ft.addToBackStack(null)
首先定义一个fragment
在onCreateView中返回fragment的视图
public class MyFragment extends Fragment{@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.frag_test, null)
return view
}
}
方法一,静态的使用Fragment,直接在布局文件中加入fragment
android:name指定fragment的类
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:orientation="horizontal" >
<fragment
android:layout_width="match_parent"
android:layout_height="match_parent"
android:name=".MyFragment"/>
</LinearLayout>
方法二,动态添加fragment,
activity布局,用一个framelayout作为fragment容器
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.demo.MainActivity" >
<FrameLayout
android:id="@+id/fragment_container"
android:layout_width="match_parent"
android:layout_height="match_parent"></FrameLayout>
</RelativeLayout>
activity代码
package com.example.demoimport android.app.Activity
import android.app.FragmentManager
public class MainActivity extends Activity {
FragmentManager fm
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
fm = getFragmentManager()
fm.beginTransaction().add(R.id.fragment_container,new MyFragment()).commit()
}
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)