替换片段不显示整个片段

时间:2018-08-11 21:38:03

标签: android android-fragments

你好,我正在尝试用片段替换FrameLayout中的视图。我想使它像Android指南中那样,当我创建片段并且它没有足够的空间时,它会创建新的Activity。 example from android side

我对此有疑问。我的片段容器是FrameLayout

    <FrameLayout
    android:id="@+id/fragment"
    android:layout_width="344dp"
    android:layout_height="0dp"
    android:layout_marginBottom="8dp"
    android:layout_marginEnd="8dp"
    android:layout_marginStart="8dp"
    android:layout_marginTop="8dp"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"/>

片段事务套件将我的片段调整为FrameLayout大小。这使得我的片段不是全部可见(它的布局大于FrameLayout的大小),我不知道为什么会有这个问题。这是我的片段交易代码(当我单击“文本视图”时显示):

        FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();

    transaction.add(R.id.fragment, new FragmentPlan());
    transaction.commit();

我的片段

    public class FragmentPlan extends Fragment {
    @Nullable
    @Override
    public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, Bundle savedInstanceState) {
        View view = inflater.inflate(R.layout.fragment_plan, container, false);
        ButterKnife.bind(this, view);
        return view;
    }
}

1 个答案:

答案 0 :(得分:0)

我相信您的代码运行正常。

在使用片段添加/替换viewGroup时,片段会继承viewGroup的大小,因此,它很小。

如我所见,您可以增加frameLayout的大小。还是就像上面在评论中提到的那样,请使用Intent来启动新的Activity。