2

Samsungのドキュメントと同じようにlistinputポップアップを作成したい:http: //www.samsungdforum.com/Guide/View/Developer_Documentation/User_Experience_Guideline_1.5/Extra_Features/Policy_on_popup_windows/Action_Window

このような:

説明画像

しかし、これを実装する方法についての情報はありません。

これが私が見つけたサンプルコードです:

 $('#newName_popup').sfPopup({
      text: 'Enter your name',
      buttons: ['Ok', 'Cancel'],
      timeout: 0,
      defaultFocus: 0, 
      callback: function newNameCallback(selectedIndex){
           alert('popup_callback');
           if(selectedIndex == 0){
                alert();
           }
      }
 });

すべてのプロパティ(テキスト、ボタンなど)の名前を見つけるにはどうすればよいですか?

4

1 に答える 1

1

代わりに、Samsung が提供する入力を変更しようとするのをあきらめ、透明な黒の背景を持つ小さなシーンを作成しました。

シーンの開始:

sf.scene.show('CityPopup');
sf.scene.focus('CityPopup');

隠しシーン:

sf.scene.show('Scene1');
sf.scene.hide('CityPopup');
sf.scene.focus('Scene1');

シーンの背景:

background : rgba(0, 0, 0, 0.6);
于 2012-10-05T11:54:18.483 に答える