设备有两个屏幕。在第一个屏幕中,普通用户界面(启动应用程序),在第二个屏幕中,启动Google Maps应用程序。
我们如何启动另一个应用程序辅助屏幕。
Service class:
@Override
protected View buildPresoView(Context ctxt, LayoutInflater inflater) {
View topView = new View(this);
topView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
Intent i = getPackageManager().getLaunchIntentForPackage("abc.abc.abc");
startActivity(i);
}
});
inflater = (LayoutInflater) this.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View contentView = inflater.inflate(R.layout.display, null,false);
return(topView);
//return(contentView);
}
PresentationHelper:
@Override
public void showPreso(Display display) {
Context presoContext=createPresoContext(display);
LayoutInflater inflater=LayoutInflater.from(presoContext);
wm=(WindowManager)presoContext.getSystemService(Context.WINDOW_SERVICE);
presoView=buildPresoView(presoContext, inflater);
wm.addView(presoView, buildLayoutParams());
}
答案 0 :(得分:1)
首次检查演示模式在设备级别(IN aosp)是否启用。
如果没有,请在设备.xml
文件中添加以下标签。
<feature name="android.software.activities_on_secondary_displays" />