2

ボタンをクリックしてアプリケーションを終了しようとすると、チタンのスプラッシュ画面が再び表示されます!!

次のコードを使用しています

var win=Ti.UI.createWindow({
    backgroundColor:'#ddd',
    exitOnClose:true        
});

var button=Ti.UI.createButton({
    title:'back',
    left:10,top:10  
});

button.addEventListener('click',function(e){
    win.close();
});

var text=Ti.UI.createLabel({
    text:'Home page',
    color:'#000',
    font:{ fontSize:20} 
});

win.add(button);
win.add(text);

win.open();

ボタンをクリックしてアプリケーションを終了するにはどうすればよいですか?

4

1 に答える 1

8

アプリケーションの最初のウィンドウに次のプロパティを追加するだけで、アプリケーションを閉じることができます。

     exitOnClose: true

次に、ウィンドウを閉じる場所に次のコードを入力します

     win.close();
     var activity = Titanium.Android.currentActivity;
     activity.finish();

参考:Titanium Application Android を終了します。それがあなたの問題を解決したことを願っています!!

于 2012-11-29T03:17:11.923 に答える