是否可以同时运行Activity和Fragment?

时间:2018-09-05 08:01:54

标签: android android-layout android-fragments

我正在寻找一种同时运行活动和片段的方法,其中活动将显示两个按钮以从一个活动过渡到另一个活动,而片段将在后台显示实时摄像机视图。

有可能吗?

1 个答案:

答案 0 :(得分:0)

片段是活动的一部分。因此很明显,活动和片段同时运行。片段没有它自己的上下文。读完您的问题后,我想您可以更改片段,但是buttom buttom放置在所有片段中。您可以这样做:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/container"
        android:layout_above="@+id/button"/>

    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content" 
        android:layout_alignParentBottom="true"
        android:id="@+id/button"/>

</RelativeLayout>

在framelayout上添加并替换片段,以便每个片段的底部都有一个按钮,这是活动的一部分。