0

我通过在 Dialog Alert 中使用 SeekBar 创建应用程序来更改 TextSize。当我使用 seekBar 时,TextSize 将更改并按 Toast 显示字体编号。但是,当对话框关闭时。吐司仍然有效并增加演出次数。当我按 home 或退出应用程序时,它不会停止并继续运行。我哪里错了。我怎样才能解决这个问题。代码很简单。非常感谢大家。

这是我的代码。

    public void ShowDialog() {
    final AlertDialog.Builder popDialog = new AlertDialog.Builder(this);
    final SeekBar seek = new SeekBar(this);

    seek.setMax(100);

    popDialog.setIcon(R.drawable.conp);
    popDialog.setTitle(R.string.menu_settings);
    popDialog.setView(seek);

    seek.setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener() {
        public void onProgressChanged(SeekBar seekBar, int progress,
                boolean fromUser) {

            subtitles.setTextSize(progress);

            Toast.makeText(ShowMan.this, "your textsize :" + String.valueOf(progress), Toast.LENGTH_LONG).show();
        }

        public void onStartTrackingTouch(SeekBar arg0) {
            // TODO Auto-generated method stub

        }

        public void onStopTrackingTouch(SeekBar seekBar) {
            // TODO Auto-generated method stub

        }
    });

    // Button
    popDialog.setPositiveButton("OK",
            new DialogInterface.OnClickListener() {
                public void onClick(DialogInterface dialog, int which) {
                    dialog.dismiss();
                }
            });

    popDialog.create();
    popDialog.show();

}

我想正常使用这个 SeekBar 增加和减少 TextSize。请帮我。哦……还有一件事。我的老师说“不要使用对话主题”。T_T

4

1 回答 1

0

你可以给 toastToast.LENGTH_SHORT或给一个毫秒使用,如下所示Toast.LENGTH_SHORT="some value"

 Toast.makeText(ShowMan.this, "your textsize :" + String.valueOf(progress), Toast.LENGTH_SHORT).show();
 Toast.makeText(ShowMan.this, "your textsize :" + String.valueOf(progress), 2000).show();
于 2012-12-31T06:16:19.013 回答