片段未显示其相应的布局

时间:2014-11-20 09:43:40

标签: android android-fragments fragment android-fragmentactivity

知道为什么没有显示互动fragment的布局。问题是,我有两个fragments" sub"和"酒吧"并且每个人都有自己的布局。首先,我设计了fragment" sub"的布局。并且在扩展fragment的" sub"的课程中,我夸大了view" sub"活动thelayout of" sub"。在运行时,我发现actionTab" sub"没有view且我为其设计的view显示在fragment" pub"。

请告诉我这个错误来自哪里?

更新"已添加代码

protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.messagin_activity_layout);

    mViewPager = (ViewPager) findViewById(R.id.pager);
    mActionBar = getActionBar();
    mActionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);

    List<Fragment> mFragList = new ArrayList<Fragment>();
    mFragList.add(new Pub_Frag());
    mFragList.add(new Sub_Frag());

代码_&#34; sub_Frag&#34;

public class Sub_Frag extends Fragment {

@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    View v = inflater.inflate(R.layout.sub_frag_layout, container, false);
    EditText et_topic = (EditText) v.findViewById(R.id.et_topic); 
    return v;
}

}

1 个答案:

答案 0 :(得分:1)

我认为,将您的网址添加到ArrayList,&#34;如果您正在使用它&#34;的顺序很重要。 确保按照您为fragments分配的同一顺序添加arraylist actiontab