Android VizzVox Player
Use the VizzVox player to explain your application to users. The VizzVox player uses pictures and voice to create a story which anyone can create on the VizzVox site. Each time the VizzVox player is loaded the latest Vizzie is downloaded.
To add the VizzVox story player to your application create an Intent like the code below and ensure that the VizzVox player is loaded on the Android machine.
Click here to download the VizzVox apk.
package com.android.hello;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
public class HelloAndroid extends Activity {
/** Called when the activity is first created. */
private Button vvButton;
@Override
public void onCreate(Bundle icicle) {
super.onCreate(icicle);
setContentView(R.layout.main);
vvButton = (Button) findViewById(R.id.launch_vvplayer);
vvButton.setOnClickListener(new Button.OnClickListener() {
public void onClick(View v) {
Intent intent = new Intent();
intent.setClassName("com.vizzvox.android.vvplayer",
"com.vizzvox.android.vvplayer.StoryPlayer");
intent.putExtra("storyId", "7HxErEAAdQR9600fms");
intent.putExtra("text1", "text1");
intent.putExtra("text2", "text2");
intent.putExtra("text3", "text3");
intent.putExtra("text4", "text4");
startActivity(intent);
}
});
}
}

