我有A(Main) app
和服务B app
服务B应用程序正在另一部手机上显示相机预览
我想在B app
中显示A app
屏幕。
有可能吗?
也许使用包名?
这是activity_main.xml
我只希望在framelayout部分显示另一个应用程序屏幕
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="fghjfghj"
android:id="@+id/button"
android:layout_above="@+id/tv_process_info"
android:layout_alignParentStart="true"
android:layout_marginBottom="30dp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/tv_process_info"
android:textAppearance="?android:attr/textAppearanceLarge"
android:hint="rtyurtyu"
android:layout_alignParentBottom="true"
android:layout_alignParentStart="true"
android:layout_marginBottom="90dp" />
<FrameLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/another_app_view"></FrameLayout>