Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
import org.eclipse.swt.graphics.Image;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
public class Background {
private Shell shell = null;
private static Image img = null;
public static void main(String[] args) {
Display display = Display.getDefault();
Background thisClass = new Background();
img = new Image(display, "./bowl.jpg");
thisClass.createSShell();
thisClass.shell.open();
while (!thisClass.shell.isDisposed()) {
if (!display.readAndDispatch())
display.sleep();
}
display.dispose();
}
private void createSShell() {
shell = new Shell();
shell.setText("Background");
shell.setSize(new org.eclipse.swt.graphics.Point(691,599));
shell.setBackgroundImage(img);
}
}