Example usage for android.os Bundle putStringArray

List of usage examples for android.os Bundle putStringArray

Introduction

In this page you can find the example usage for android.os Bundle putStringArray.

Prototype

public void putStringArray(@Nullable String key, @Nullable String[] value) 

Source Link

Document

Inserts a String array value into the mapping of this Bundle, replacing any existing value for the given key.

Usage

From source file:org.zywx.wbpalmstar.engine.universalex.EUExWindow.java

public void hidePluginViewContainer(String[] parm) {
    Message msg = mHandler.obtainMessage();
    msg.what = MSG_PLUGINVIEW_CONTAINER_HIDE;
    msg.obj = this;
    Bundle bd = new Bundle();
    bd.putStringArray(TAG_BUNDLE_PARAM, parm);
    msg.setData(bd);/*from  www. j av  a2 s  .c om*/
    mHandler.sendMessage(msg);
}

From source file:org.zywx.wbpalmstar.engine.universalex.EUExWindow.java

public void closePluginViewContainer(String[] parm) {
    Message msg = mHandler.obtainMessage();
    msg.what = MSG_PLUGINVIEW_CONTAINER_CLOSE;
    msg.obj = this;
    Bundle bd = new Bundle();
    bd.putStringArray(TAG_BUNDLE_PARAM, parm);
    msg.setData(bd);/*from   w  ww. j  a  va  2  s.c om*/
    mHandler.sendMessage(msg);
}

From source file:org.zywx.wbpalmstar.engine.universalex.EUExWindow.java

public void setPageInContainer(String[] parm) {
    Message msg = mHandler.obtainMessage();
    msg.what = MSG_PLUGINVIEW_CONTAINER_SET;
    msg.obj = this;
    Bundle bd = new Bundle();
    bd.putStringArray(TAG_BUNDLE_PARAM, parm);
    msg.setData(bd);/*from w w  w.j a  v  a2  s .c  om*/
    mHandler.sendMessage(msg);
}

From source file:org.zywx.wbpalmstar.engine.universalex.EUExWindow.java

public void open(String[] parm) {
    if (parm.length < 7) {
        return;/*from  w ww .  j av  a2s  . c om*/
    }
    Message msg = new Message();
    msg.obj = this;
    msg.what = MSG_FUNCTION_OPEN;
    Bundle bd = new Bundle();
    bd.putStringArray(TAG_BUNDLE_PARAM, parm);
    msg.setData(bd);
    mHandler.sendMessage(msg);
}

From source file:org.zywx.wbpalmstar.engine.universalex.EUExWindow.java

public void setOrientation(String[] parm) {
    if (parm.length < 1) {
        return;/*  w  ww . j av a2 s .c  o m*/
    }
    Message msg = new Message();
    msg.obj = this;
    msg.what = MSG_FUNCTION_SETORIENTATION;
    Bundle bd = new Bundle();
    bd.putStringArray(TAG_BUNDLE_PARAM, parm);
    msg.setData(bd);
    mHandler.sendMessage(msg);
}

From source file:org.zywx.wbpalmstar.engine.universalex.EUExWindow.java

public void setAutorotateEnable(String[] parm) {
    if (parm.length < 1) {
        return;//from   www  . j a  va 2s .  c o m
    }
    Message msg = new Message();
    msg.obj = this;
    msg.what = MSG_FUNCTION_SETAUTOROTATEENABLE;
    Bundle bd = new Bundle();
    bd.putStringArray(TAG_BUNDLE_PARAM, parm);
    msg.setData(bd);
    mHandler.sendMessage(msg);
}

From source file:org.zywx.wbpalmstar.engine.universalex.EUExWindow.java

public void setWindowFrame(String[] parm) {
    if (parm.length < 3) {
        return;/*from  w  ww  .  ja va 2s  .  co  m*/
    }
    Message msg = new Message();
    msg.obj = this;
    msg.what = MSG_FUNCTION_SETWINDOWFRAME;
    Bundle bd = new Bundle();
    bd.putStringArray(TAG_BUNDLE_PARAM, parm);
    msg.setData(bd);
    mHandler.sendMessage(msg);
}

From source file:org.zywx.wbpalmstar.engine.universalex.EUExWindow.java

public void openSlibing(String[] parm) {
    if (parm.length < 6) {
        return;/*from w  w w . j a v  a 2  s .c o m*/
    }
    Message msg = new Message();
    msg.obj = this;
    msg.what = MSG_FUNCTION_OPENSLIBING;
    Bundle bd = new Bundle();
    bd.putStringArray(TAG_BUNDLE_PARAM, parm);
    msg.setData(bd);
    mHandler.sendMessage(msg);
}

From source file:org.zywx.wbpalmstar.engine.universalex.EUExWindow.java

public void toggleSlidingWindow(String[] param) {
    if (param.length <= 0) {
        return;/*  www  . j a  v a2 s  .com*/
    }
    Message msg = new Message();
    msg.obj = this;
    msg.what = MSG_FUNCTION_TOGGLE_SLIDINGWIN;
    Bundle bd = new Bundle();
    bd.putStringArray(TAG_BUNDLE_PARAM, param);
    msg.setData(bd);
    mHandler.sendMessage(msg);
}

From source file:org.zywx.wbpalmstar.engine.universalex.EUExWindow.java

public void setSlidingWindowEnabled(String[] param) {
    if (param.length <= 0) {
        return;//from w  w w.ja v  a  2 s. c  om
    }
    Message msg = new Message();
    msg.obj = this;
    msg.what = MSG_FUNCTION_SETSLIDINGWIN_ENABLE;
    Bundle bd = new Bundle();
    bd.putStringArray(TAG_BUNDLE_PARAM, param);
    msg.setData(bd);
    mHandler.sendMessage(msg);
}