单击应用程序图标全屏显示画中画内容
On click of app icon full screen the picture in picture content
我正在使用 jitsi-android-sdk,当我点击主屏幕时,它会将我带到画中画模式,当我点击该应用程序时,它会将我带回第一个表单页面。如何在点击应用时全屏图片模式?
我应该在 onResume() 中添加什么,以便在点击应用程序时可以全屏显示画中画。
例如,当我们使用 Netflix 并在手机上看电影时,当我们按下主页按钮时,它会进入画中画模式,当我们点击应用程序图标时,它会全屏画中画模式 (return 到我们正在观看的全屏电影)
我想在我的 android 应用程序中实现相同的行为。
首先检查 activity 当应用程序在那个 activity onResume() 方法上画中画时,哪个 activity 将进入暂停状态添加此代码。
@Override
protected void onResume() {
super.onResume();
SharedPreferences sharedpreferences = getSharedPreferences("MyPrefs", Context.MODE_PRIVATE);
//get boolean value from shared preferences which we are store when joining meeting button is clicked
boolean check = sharedpreferences.getBoolean(met,false);
if (check){
//if meeting is going on redirect to meeting
//Replace JitsiMeetAcitvity.class with your picture in picture activity class
startActivity(new Intent(this, JitsiMeetActivity.class)
.addFlags(Intent.FLAG_ACTIVITY_REORDER_TO_FRONT));
}
}
我已经使用共享首选项来跟踪会议是否进行。
想看详细的就关注this
我正在使用 jitsi-android-sdk,当我点击主屏幕时,它会将我带到画中画模式,当我点击该应用程序时,它会将我带回第一个表单页面。如何在点击应用时全屏图片模式?
我应该在 onResume() 中添加什么,以便在点击应用程序时可以全屏显示画中画。
例如,当我们使用 Netflix 并在手机上看电影时,当我们按下主页按钮时,它会进入画中画模式,当我们点击应用程序图标时,它会全屏画中画模式 (return 到我们正在观看的全屏电影)
我想在我的 android 应用程序中实现相同的行为。
首先检查 activity 当应用程序在那个 activity onResume() 方法上画中画时,哪个 activity 将进入暂停状态添加此代码。
@Override
protected void onResume() {
super.onResume();
SharedPreferences sharedpreferences = getSharedPreferences("MyPrefs", Context.MODE_PRIVATE);
//get boolean value from shared preferences which we are store when joining meeting button is clicked
boolean check = sharedpreferences.getBoolean(met,false);
if (check){
//if meeting is going on redirect to meeting
//Replace JitsiMeetAcitvity.class with your picture in picture activity class
startActivity(new Intent(this, JitsiMeetActivity.class)
.addFlags(Intent.FLAG_ACTIVITY_REORDER_TO_FRONT));
}
}
我已经使用共享首选项来跟踪会议是否进行。
想看详细的就关注this