Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
I have an android VOIP app which works as follows.
Summary of the app-
The app once launched scans the WiFi to look for other android devices who have my app installed. (Note: The devices having my app installed should be connected to the same WiFi network).
Once the scan completes, it lists all the available devices. The user can click on any device and initiate call or chat.
After clicking on the user, an action dialog appears containing a positive button and a negative button. That is, positive button = call and
negative button = chat.
Each button opens their respective interfaces when clicked.
My question is...
a. How can I integrate the call button inside the chat interface?
For example, I could make a toolbar and attach the call button to it.
Any help is appreciated. Let me know if you guys have any queries.
The call button, that is on top in the example image given, is a normal ActionBar MenuItem.
A good start to know more about Menus is the Android Developer Guide website: Menus
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about programming within the scope defined in the help center.
Closed 1 year ago.
Improve this question
I want to make an app to open another app and click on a coordinate.
I know it is possible in the windows app I'm just looking for a way for android.
I designed an app that opens another app.
+I'm the only user of my app, so it could have any permission that requires.
I won't say it is impossible, probably with some hack, but it is impractical and raises a whole lot of issues. There are ways that Android allows for apps to share data and to communicate, but clicking button in another app, NO.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I want to send simple data between two phones. For example: When I press a button on device A on device B an action gets executed, for example, a sound gets played. How can I do this? Which methods would work well?
Thank you in advance.
You need a notification service, and google has something like that for us...
How does this works??
Take a look at the image posted over,
you need to register your android app in the google service, and your web interface will need an id, so every time you want to push something to the android, your web interface instead will push it to the google server with the Id of the app, then google (no matter how) will localize your app, and even if its not running, they will get the notification,
behind the scenes there is a couple of thing that you must do, bu nothing like launching rockets from the NASA.
I will suggest to take a look to some tutorials
in order to start with the registration of your app, get the API key etc etc..
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
Android animation keyboard open.
whenever i click done in the keyboard i want keyboard close slowly with animation.
Can i implement it on default keyboard to make this type of stuff or make custom keyboard for that.
please suggest me: i am just new android beginner.
thanks in advance.
An app receives no notification of when a keyboard appears, and the android framework itself is responsible for either sliding the app or laying it out again. So customization isn't really possible. Which is probably a good thing- a keyboard is a separate app, and having written one I wouldn't want to even try to write the keyboard half of such an animation, we'd never get it to look right with all the various ways the app could do it.
The closest you'll get is to specify the fields to pan rather than resize when the keyboard is opened.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
In the Android application, I am developing a one functionality that sends sms messages to given numbers automatically when the application is running. That function is working properly but after the messages is sent the cost for that messages prompts on a alert box.
Normally when I send a message that alert box prompts. But in my application I want to disable it because it disturbs to my application. How can I achieve that.
If you have any Idea then Please Guide me.
Thanks,
Reena
These pop-ups are flash messages that are generated by SIMCARD network provider. There is nothing you can do about it from your app end to put an end to them. But, you can stop it by disabling SIMCARD Services settings.
For disabling flash message you may check the link:
http://www.imobileandroid.com/disable-pop-flash-message-vodafone-android/
It has a process mentioned. So if you can have your all customers devices with you, sure you can stop it, otherwise NO.
Authors Note : Better stop worrying about it ;)
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
When I press home button in android phone
at ant time open my application
How I Do it, Please ???
And How I Exit from app (not go to the last Activity)
Overriding the Home Button is not a recommended thing to do. The Home Button serves as a panic/safe button for the user whenever something goes out of hand. Overriding the Home Button will present issues if you make it open another application.
You can override it to open another application, however, the Android OS will ask the user to choose between the default home button application (the one that brings you back to the home page of the device) or your application. At this moment, the user can set a default application to go to. If I'm not mistaken, it will take root access to completely override the home button in such a way that the above mentioned process of choosing a default application.