阅读量:0
在Java中,"show"这个词通常与图形用户界面(GUI)相关
- 在JavaFX中,
show()
方法用于显示一个窗口。例如,Stage
类有一个show()
方法,用于显示应用程序的主窗口。
import javafx.application.Application; import javafx.scene.Scene; import javafx.scene.control.Label; import javafx.stage.Stage; public class Main extends Application { @Override public void start(Stage primaryStage) { primaryStage.setTitle("Hello World!"); Label label = new Label("Hello, World!"); Scene scene = new Scene(label, 300, 250); primaryStage.setScene(scene); primaryStage.show(); // 显示窗口 } public static void main(String[] args) { launch(args); } }
- 在Android开发中,
show()
方法通常与对话框(Dialog)或弹出窗口(PopupWindow)相关。例如,AlertDialog
类有一个show()
方法,用于显示一个对话框。
import androidx.appcompat.app.AppCompatActivity; import android.app.AlertDialog; import android.os.Bundle; import android.view.View; import android.widget.Button; public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); Button button = findViewById(R.id.button); button.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this); builder.setTitle("Hello"); builder.setMessage("This is a message."); builder.setPositiveButton("OK", null); builder.show(); // 显示对话框 } }); } }
请注意,这些示例仅适用于特定库和框架。在其他上下文中,"show"可能具有不同的含义。