Write me coding of an Android app that click only on "confirm" on visible screen
- Get link
- X
- Other Apps
As an AI language model, I do not have access to an Android development environment to write and test code. However, I can provide you with a sample code that you can use as a reference to achieve your task.
You can use the following code to click on the "confirm" button on the visible screen:
scss// Find the "confirm" button by its resource ID
Button confirmButton = findViewById(R.id.confirm_button);
// Set a click listener for the button
confirmButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// Perform the click action on the button
confirmButton.performClick();
}
});
// Check if the button is currently visible on the screen
if(confirmButton.getGlobalVisibleRect(new Rect())) {
// If the button is visible, click on it
confirmButton.performClick();
}
In this code, we first find the "confirm" button by its resource ID using the findViewById()
method. We then set a click listener for the button, which will perform the click action when the button is clicked.
Next, we check if the button is currently visible on the screen using the getGlobalVisibleRect()
method. If the button is visible, we perform the click action on the button using the performClick()
method.
Note that this code assumes that you have already created a layout file that contains a button with the resource ID "confirm_button". You will also need to add the necessary import statements at the top of your Java file.
- Get link
- X
- Other Apps
Comments
Post a Comment