我的片段不会在我的活动中显示

时间:2018-01-11 15:59:51

标签: java android xml android-layout android-fragments

我是android develpment的新手,也是片段的新手。

所以,我创建了6个xml文件,我试图将其作为片段导入活动,我已经从Google的说明中逐步完成了所有操作,但片段赢了&#39 ; t显示在我的活动菜单中。

ActivityMenu.xml文件

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <fragment android:name="com.grig.alexios.pdaapplication.BeerMenuFragment"
        android:id="@+id/headlines_fragment"
        android:layout_weight="1"
        android:layout_width="0dp"
        android:layout_height="match_parent" />

    <fragment android:name="com.grig.alexios.pdaapplication.GinMenuFragment"
        android:id="@+id/article_fragment"
        android:layout_weight="2"
        android:layout_width="0dp"
        android:layout_height="match_parent" />


</LinearLayout>

MenuActivity.class

    package com.grig.alexios.pdaapplication;

import android.support.v4.app.FragmentActivity;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;

public class MenuActivity extends FragmentActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_menu);
    }
}

修改

片段示例

GinMenuFragment

    package com.grig.alexios.pdaapplication;

import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;

public class GinMenuFragment extends Fragment {
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) {
        // Inflate the layout for this fragment
        return inflater.inflate(R.layout.gin, container, false);
    }
}

2 个答案:

答案 0 :(得分:0)

您需要FragmentManager才能显示片段。您可以使用FragmentManager的事务更改片段。

在此处阅读有关FragmentManager的更多信息:https://developer.android.com/reference/android/app/FragmentManager.html

答案 1 :(得分:0)

我已经测试了您的代码并且它正常运行

嗯,这样可行。

<强> ActivityMenu.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">

<FrameLayout
    android:id="@+id/headlines_fragment"
    android:layout_width="0dp"
    android:layout_height="match_parent"
    android:layout_weight="1" />

<FrameLayout
    android:id="@+id/article_fragment"
    android:layout_width="0dp"
    android:layout_height="match_parent"
    android:layout_weight="2" />

并在 MenuActivity.java

import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v7.app.AppCompatActivity;

public class MainActivity extends AppCompatActivity {

    @Override
    public void onCreate(@Nullable Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_test);
        getSupportFragmentManager().beginTransaction().replace(R.id.article_fragment,new FragA(),"article").commit();
        getSupportFragmentManager().beginTransaction().replace(R.id.headlines_fragment,new FragB(),"headlines").commit();

    }
}

最后,支持库版本可能存在问题。 尝试另一个版本并清理您的项目。