Top "User-interaction" questions

User-interactivity is the dialog that occurs between a human being and a computer program.

How to disable touch input to all views except the top-most view?

I have a view with multiple subviews. When a user taps a subview, the subview expands in size to cover …

iphone ios cocoa-touch uiview user-interaction
How to detect swipe direction between left/right and up/down

My Question: How do I detect when a user moves their finger up/down vs left/right (and how do …

android user-interface user-interaction
Don't allow user interaction when activity indicator view is visible

I have a view which contains two views. One of those views contains two buttons and some text labels. The …

objective-c ios uiactivityindicatorview user-interaction
Interactively change the selectInput choices

Originally I create this shiny interface that takes in a parameter "company id" and "date", but here we have a …

r search user-interaction shiny
How to create a resizable rectangle with user touch events on Android?

I want to create a rectangular shape that will be resized with the touches of the user. Below image is …

android shape user-interaction
interactive Shell Script

how do I create a simple Shell script that asks for a simple input from a user and then runs …

linux shell user-input user-interaction
Save user input after certain message telegram bot

I am building some telegram bot on python (using this framework pyTelegramBotAPI). And I ran into the problem with user …

python telegram-bot user-interaction python-telegram-bot
How can a C# Windows Console application tell if it is run interactively

How can a Windows console application written in C# determine whether it is invoked in a non-interactive environment (e.g. …

c# console-application user-interaction
When exactly is onUserInteraction() called?

in my app I got a thrad that checks every 60s data from a webservice (defined in onCreate()): new Thread(…

android multithreading sleep user-interaction postdelayed
How to disable user interaction on SwiftUI view?

Let's say I have a SwiftUI view hierarchy that looks like this: ZStack() { ScrollView { ... } Text("Hello.") } The Text view blocks …

swift swiftui user-interaction