All Questions
Tagged with interaction android
24 questions
1
vote
3
answers
710
views
Can I build an app that interacts with another app that I don't own?
New here. I still didn't decide which technology I'll use to make this app, but the main feature is basically this:
There's app A and app B (I don't own any of these);
My app (C) needs only one role:...
2
votes
2
answers
1k
views
Google Assistant Voice Interaction Open Command
Is there any reliable way to check if my activity was started from the Google Assistant (with the Start/Open command) or from the launcher icon?
The documentation about the Open command states
(...
13
votes
3
answers
18k
views
Send data from Activity to Fragment already created
I only have found information about how to create a Fragment sending some data to it, but only in its instantiation with the constructor.
But I want to know if it is possible to send some data (for ...
0
votes
1
answer
845
views
Android - Send email without user press SEND
I have an app that needs to send email without user interaction.
I've developed this code that set the default email client as GMAIL, but is necessary press SEND.
Intent emailIntent = new Intent(...
6
votes
1
answer
391
views
Interactive Android Animation
I am trying to implement an interaction-animation in android where the user can change the size of object and rotate it with interaction.
This is not exactly what I am trying to implement, but ...
3
votes
2
answers
252
views
Can tightly coupled fragments be okay in Android (under certain circumstances)?
When implementing Fragment to Activity communication the usually told example is:
MyActivity extends Activity implements MyInterface {
...
@Override
public void myMethod() {
// Do something......
0
votes
0
answers
481
views
voice intraction command xamarin android
i have a problem with the voice interaction in xamarin app.
in android project i have added Intent.CategoryVoice in intentFilter, then on onResume i have an if(!isvoiceInteraction) that is always ...
0
votes
1
answer
144
views
Android: Interact with another app?
I'm looking to build an app that will restart my device at a specified time, then open up a couple 3rd party apps in sequence and run their feature/s.
For example: I would like to automatically ...
-2
votes
1
answer
226
views
Is it possible for an Android widget to interact with a browser?
I need my widget to interact with any built-int browser. What I mean by an interaction is to know the content of the visible web page. Is it possible for a floating widget to "know" what DOM element ...
2
votes
0
answers
321
views
Google Photos like interaction : Pinch to change your perspective
Pinch to change your perspective
By default, the new Google Photos app shows your images in a daily view, with medium-sized thumbnails arranged chronologically by date. But there are three other ...
0
votes
1
answer
165
views
Problems of security code of android app when interacting with Java RESTful services
I build a RESTful service using spring and maven, also, I wrote an Android app to access my website and there is a security code on login page of app.
Now, I can get the security code image from ...
2
votes
0
answers
81
views
How does Shape Splitter on Glass Work?
I want to create a Glass app that responds to a finger waved past the Glass camera much like the shape splitter mini game does. For those of you who are unfamiliar with shape splitter a screen cast ...
0
votes
1
answer
135
views
Android custom interactions and objects
For the apps that create their own objects and the way one interacts with them inside an android application, what language or approach do those apps use?
I can create a listview and a scrolable page ...
0
votes
1
answer
536
views
Using GmailSender to send email without user interaction
I am using GMailSender class to send email without user interaction. Code is perfectly correct, it works on my Droid 3, but I just got a Samsung Galaxy S3, and it does not work. The code executes all ...
1
vote
0
answers
192
views
Android widget interaction with service
Hello for all in 2013!
I have following android challenge:
Assume I have an app consisting of an activity and a widget. Both of these provide the same informations as actual as possible - so I have ...