我有两个框架定义如下:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<fragment class="com.test.act"
android:id="@+id/list"
android:layout_weight="1"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<fragment android:name="com.test.nact"
android:id="@+id/viewer"
android:layout_weight="1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
在基于用户输入(单击按钮)的第二帧中,我想启动一个以前由其他人编码的新活动。因此,在 onCreateView 函数中,我创建了一个新意图并像这样启动它:
Intent newIntent = new Intent( view.getContext(), PictureActivity.class );
startActivityForResult( newIntent, ACTION_REQUEST_PIC );
然而,会发生的是 PictureActivity 被启动并接管了整个屏幕,也覆盖了显示的 com.test.act 片段部分。我希望 PictureActivity 仅在显示的 com.act.nact 部分中显示。我怎样才能做到这一点?