我有两个框架定义喜欢这个:
<?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,并按照以下方式启动它:
Intent newIntent = new Intent( view.getContext(), PictureActivity.class );
startActivityForResult( newIntent, ACTION_REQUEST_PIC );
然而,发生的事情是PictureActivity被启动并接管整个屏幕并覆盖显示器的com.test.act片段部分。我希望PictureActivity仅在显示的com.act.nact部分显示。我怎样才能做到这一点?