将多个片段添加到LinearLayout

时间:2016-02-04 08:26:51

标签: android android-fragments android-linearlayout

我想通过点击按钮为我的LinearLayout添加多个片段。

这是我的MainActivity:

public class MainActivity extends AppCompatActivity {

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

        Button addFragmentButton = (Button) findViewById(R.id.addFragmentButton);
        addFragmentButton.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                FragmentManager fragmentManager = getFragmentManager();
                FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();
                HeaderButtonFragment fragment = new HeaderButtonFragment();
                Integer x = (int) (Math.random() * 1000);
                String name = String.valueOf(x);
                fragmentTransaction.add(R.id.fragmentsHolder, fragment, name);
                fragmentTransaction.commit();
            }
        });
    }
}

我的主要布局:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    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"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    tools:context="majewski.ninja.mylibrary.MainActivity">


    <LinearLayout
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true"
        android:id="@+id/fragmentsHolder">
    </LinearLayout>

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Add new fragment"
        android:id="@+id/addFragmentButton"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true" />

</RelativeLayout>

我的片段:

public class HeaderButtonFragment extends Fragment {

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) {

        Integer x = (int) (Math.random() * 1000);
        String name = String.valueOf(x);
        View view =  inflater.inflate(R.layout.fragment_header_button, container, false);
        ((Button) view.findViewById(R.id.fragmentButton)).setText(name);
        return view;
    }
}

和片段布局:

<FrameLayout 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"
    tools:context="majewski.ninja.mylibrary.HeaderButtonFragment">

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="New Button"
        android:id="@+id/fragmentButton"
        android:layout_gravity="left|top" />
</FrameLayout>

这是我点击按钮时得到的结果:

enter image description here

当我点击它多次没有任何变化,但我希望它添加新的片段,所以它看起来像这样:

enter image description here

我有办法做到吗?

1 个答案:

答案 0 :(得分:1)

当您将多个片段添加到同一个占位符时,它们会堆叠在另一个上面。这就是您按下按钮时只看到一个片段的原因。

对于您的用例,我会考虑使用某种适配器视图 - 可能是网格视图 - 来实现视图的动态创建以及它们对视图层次结构的添加。它将更加简单易行。