21

我有一个ListFragment显示用户创建的项目列表。我有一个ListView它的 id 设置为“@android:id/list”和一个TextViewid 为“@android:id/empty”。

我有一个操作栏按钮来显示一个片段,以允许用户为列表创建更多条目。这是onOptionsItemSelected()方法:

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    Fragment frag = null;

    // Right now I only have code for the addCourse() fragment, will add more soon
    switch (item.getItemId()) {
    case R.id.addCourse:
        frag = new AddCourseFragment();
        break;
    default:
        return super.onOptionsItemSelected(item);
    }

    // The support library is being dumb and replace isn't actually 
    getFragmentManager().beginTransaction()
        .remove(this).add(getId(), frag).addToBackStack(null).commit();
    return true;

}

AddCourseFragment 代码如下:

public class AddCourseFragment extends Fragment {

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
        Bundle savedInstanceState) {
        View view = inflater.inflate(R.layout.fragment_addcourse, container, false);
//      if (view.findViewById(R.id.timesFrame)!=null) {
        Fragment timesFrag = new TimesFragment();
        getChildFragmentManager().beginTransaction()
            .add(R.id.timesFrame, timesFrag).commit();
//      }
    return view;
    }
}

正如预期的那样,当列表未填充时,android 会在TextView. 然后我点击添加课程按钮,这会发生:在此处输入图像描述
它显示空文本以及新片段。

4

5 回答 5

24

我有一个类似的问题。

根据这一点,当您需要以Fragments编程方式添加时,您应该将它们添加到现有的ViewGroup.

因此,我Fragment从 xml 中删除了该方法并在该方法中使用FrameLayout了组件。replace()

你也可以看看这里

希望这可以帮助。

于 2012-11-26T19:57:21.307 回答
3

在我的案例中解决问题的另一个问题是不同的 API 导入。

确保您使用“support.v4”或 API 11 中的“原始”实现,并且不要混合使用它们。(这可能发生,在我的情况下:TransactionManager 是 v4 并且 Activity 是旧版本,或者相反)

于 2015-04-15T18:50:15.770 回答
2

为 childFragment 的主布局赋予背景颜色。

像 android:background="#FFFFFF"

这对我有用!!!!

于 2016-04-25T16:02:40.500 回答
0

另一种解决方案是使用 LinearLayout 而不是片段

 <Fragment
        android:name="path/to.package.MyClass"
        android:id="@+id/fragmentContainer"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginBottom="100dp"
         />

像这样使用它

 <LinearLayout
        android:name="path/to.package.MyClass"
        android:id="@+id/fragmentContainer"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginBottom="100dp"
         />
于 2016-02-16T20:58:59.570 回答
0

我解决了将 RelativeLayout 更改为 LinearLayout 的问题...希望对您有所帮助!

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/windowBackground">


    <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/fragment_container"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />


</LinearLayout>
于 2016-07-18T20:26:43.733 回答