查询手机支持的多媒体类型和协议
敬业的IT人
互联网
佚名
2008-3-20 10:45:45
import javax.microedition.lcdui.*;
import javax.microedition.midlet.*;
import javax.microedition.media.*;
public class MediaInformationMIDlet extends MIDlet implements CommandListener {
private Form mInformationForm;
public void startApp() {
if (mInformationForm == null) {
mInformationForm =
new Form("Content types and protocols");
String[] contentTypes =
Manager.getSupportedContentTypes(null);
for (int i = 0; i < contentTypes.length; i++) {
String[] protocols =
Manager.getSupportedProtocols(contentTypes[i]);
for (int j = 0; j < protocols.length; j++) {
StringItem si = new StringItem(contentTypes[i] + ": ",
protocols[j]);
//si.setLayout(Item.LAYOUT_NEWLINE_AFTER);
mInformationForm.append(si);
}
}
Command exitCommand = new Command("Exit", Command.EXIT, 0);
mInformationForm.addCommand(exitCommand);
mInformationForm.setCommandListener(this);
}
Display.getDisplay(this).setCurrent(mInformationForm);
}
public void pauseApp() {}
public void destroyApp(boolean unconditional) {}
public void commandAction(Command c, Displayable s) {
notifyDestroyed();
}
}
import javax.microedition.midlet.*;
import javax.microedition.media.*;
public class MediaInformationMIDlet extends MIDlet implements CommandListener {
private Form mInformationForm;
public void startApp() {
if (mInformationForm == null) {
mInformationForm =
new Form("Content types and protocols");
String[] contentTypes =
Manager.getSupportedContentTypes(null);
for (int i = 0; i < contentTypes.length; i++) {
String[] protocols =
Manager.getSupportedProtocols(contentTypes[i]);
for (int j = 0; j < protocols.length; j++) {
StringItem si = new StringItem(contentTypes[i] + ": ",
protocols[j]);
//si.setLayout(Item.LAYOUT_NEWLINE_AFTER);
mInformationForm.append(si);
}
}
Command exitCommand = new Command("Exit", Command.EXIT, 0);
mInformationForm.addCommand(exitCommand);
mInformationForm.setCommandListener(this);
}
Display.getDisplay(this).setCurrent(mInformationForm);
}
public void pauseApp() {}
public void destroyApp(boolean unconditional) {}
public void commandAction(Command c, Displayable s) {
notifyDestroyed();
}
}
- 最新文章
- LDAP 目录协议函数库[03-20]
- BlueTooth探索系列(四)--服务发现协议的用户接口与..[03-20]
- OSPF的规则、存根、完全存根以及NSSA区域案例(配图)+..[03-20]
- 利用mpd搭建基于PPTP协议的企业级VPN[03-20]
- 骡子跑起来的秘密 电骡协议规范之概述[03-20]
- 电骡协议规范之客户端和服务器TCP通讯[03-20]
- 相关文章
- LDAP 目录协议函数库[03-20]
- BlueTooth探索系列(四)--服务发现协议的用户接口与..[03-20]
- 利用mpd搭建基于PPTP协议的企业级VPN[03-20]
- 骡子跑起来的秘密 电骡协议规范之概述[03-20]
- 电骡协议规范之客户端和服务器TCP通讯[03-20]
- 电骡协议规范之客户端和服务器的UDP通讯[03-20]
