このボタンをクリックすると、別のアプリを起動したい。
sharebtn = new Custom_ButtonField(share, shareactive, shareactive) {
protected boolean navigationClick(int status, int time) {
//I want to start another apps (Strawberry)
return true;
}
};
add(sharebtn);
これがストロベリーアプリです
public class StrawBerry extends UiApplication implements ActionListener {
public static void main(String url) {
new StrawBerry(url).enterEventDispatcher();
}
}
String url
ストロベリーアプリに渡したいです。どうすればこれを達成できますか?