A small informational popup window used in GUIs, such as in Android apps.
0
votes
0answers
18 views
Toast getTag, which is set in gridView
How can I use setTag and getTag properly, to be able to Toast the int or String info from it?
Have tried many ways and my app always crashes.
So I have the testAdapter class where I use GridView and ...
0
votes
1answer
11 views
Jquery ToastMessage - only show close for specific toast types?
Not sure if this is the correct place to ask.. but here goes.
I use this jquery plug in :
http://akquinet.github.io/jquery-toastmessage-plugin/
It works well.. but I would only like the close gif ...
2
votes
1answer
30 views
Toast messages being queued?
When my submit button is clicked, it calls a method which checks if a certain EditText is empty and displays a toast message as an error message accordingly. However, if I rapidly tap on submit, it ...
-6
votes
2answers
34 views
How to make long toast? [closed]
I want to make long toast, but I don't understand it completely. Can you help me?
public void onClick(View v) {
showing = new StringBuilder();
if (yes.isChecked()) {
...
-1
votes
0answers
71 views
Why Toast is null at my activity?
When I call Toast from another class using my callback, I am gettin this error:
05-15 10:57:04.903: E/AndroidRuntime(1357): FATAL EXCEPTION: main
05-15 10:57:04.903: E/AndroidRuntime(1357): ...
-3
votes
1answer
21 views
Build SU without toast messages - Android [closed]
Problem
I root android devices with apps like framaroot or SRS Root, which does not require installing custom ROM or flashing. But leverage vulnerabilities and inject SU command. Through Shell, via my ...
0
votes
5answers
47 views
App crashes when displaying casted int with Toast
I have an Android App calling a PHP script, which returns 0 (FALSE) or 1 (TRUE) - unfortunately as a string. So in my Java Code I have the variable String result which is either "0" or "1". I know ...
1
vote
1answer
52 views
Showing Windows 8 toast from Windows Forms App
We've got a Windows Forms Application (vs. WPF) that was originally created for Windows 7. We're carrying the product forward to be used in Windows 8.
Is it possible to show Windows 8 Toast ...
0
votes
1answer
31 views
Sending collective data from a Spinner to a different Activity
I have an activity with several spinners which shows varying products. At the moment, my spinners display a toast message displaying the item that was selected from the list. However, I would like to ...
0
votes
3answers
47 views
Toast showing text inserted
I have set a Layout in which a user can insert a description regarding a video and a button Confirm. This is the code of the xml layout file:
<?xml version="1.0" encoding="utf-8"?>
...
0
votes
0answers
30 views
Not shows coordinates when touch android screen
I try to create a map android application for show current location and when the user touch the screen i want display the coordinates.I try the below code but nothing show....when touch or click the ...
0
votes
3answers
48 views
Android : sms recever is not working
i am writing an sms receiver android code but it is not working ,
is there any one here can help please ?
it compiles will but when i get an sms it did not displayed as supposed to be when ...
0
votes
3answers
54 views
Syntax error with Toast
List<ListItem> items = new ArrayList<ListItem>();
.
.
.
.
protected void onListItemClick(ListView l, View v, int position, long id)
{
//super.onListItemClick(l, v, position, id);
...
0
votes
1answer
93 views
Can't receive toast notification in windows phone 8
I'm having problems receiving toast notifications for a Windows Phone 8 application. I did all the steps required:
For the client side, I did this:
Get the channelUri from MPNS
Open the channel
...
0
votes
1answer
32 views
Android toast on preference change
I want to tell the user that when he has changed one or more fields in the preference window that it was succesfully changed but I am running into some problems:
listener = new ...
0
votes
4answers
150 views
Trouble with JSON return in Android
I am having an issue with what my JSON returns in the toast. The toast is there to let me know that the query was successful. The problem is that the toast is triggered, meaning that the query was ...
1
vote
5answers
69 views
doesn't display toast message android
I want to display a message when data from client is received. I started a server and a client. Client sends and receives confirmation from server, but on server side android, wasn't displayed any ...
2
votes
1answer
67 views
Android toast won't appear
It's getting really annoying. I'm trying to show a simple toast and it will just not appear.
public class MainActivity extends Activity implements UserPromptDialogListener {
public final static ...
0
votes
6answers
49 views
showing messages using toast android
I am trying to implement toast in connection handler class
public class server implements Runnable {
private static final String TAG = "myLogs";
.....
public void run()
{
.....
while (true) {
try ...
-1
votes
0answers
56 views
Android Camera GPS Application development [closed]
I have been trying to configure a simple camera application, that takes photos and displays the Current Lat and Long on Toast. Im going to add more on to the app, this feature is just meeting required ...
0
votes
4answers
38 views
Probelm in context used in toast
I have code like this
package collfw;
public class A {
int Eid;
Context c1;
public void setEid(int id) {
if (id < 0) {
Eid = 0;
} else {
...
0
votes
1answer
40 views
How to show toast in second java file?
I have been reading this forum for days and I have found no answer to my problem.
I'm having problem with getting java.lang.NullPointerException when I try to show Toast.
In my android application I ...
0
votes
2answers
27 views
Android-Toast in place of no action
Basically we can set the EditBox to accept a particular datatype i.e .android:InputType="number". Suppose, if we type in with alphabets, then the characters won't be added into the EditBox i.e. no ...
-1
votes
3answers
41 views
Errror in Toast
My code is like this
public Database(Context context) {
super(context, dbname, null, dbversion);
try{
db=getWritableDatabase();
// TODO Auto-generated constructor stub
if ...
0
votes
3answers
47 views
Show Toast from a thread started in a broadcast receiver
I have a BroadcastReceiver.
There I create a new Thread.
How can I show a toast in that thread?
Thanks
0
votes
3answers
37 views
Android usage of Intent
In my main Activity's onCreate method, I've started a Intent using the following code:
Intent intent = new Intent(this, NetworkHandler.class);
startService(intent);
I've created another class named ...
0
votes
0answers
30 views
SMS received before the outgoing call at the receiving end
I have few questions to ask for you after some researches and practices in certain area. Firstly, I am wondering is there any implementation to make sure that the SMS send is received before the ...
0
votes
2answers
51 views
Make a toast if a slidingDrawer is opening?
Hi I would like to make a toast whenever a slidingDrawer is opening. I would like to know how i can listen if the slidingDrawer is opening and then make the toast if it is. I have looked everywhere ...
0
votes
3answers
105 views
Upload an image and error on show Toast in AsyncTask
i hope to put my upload image function in AsyncTask. therefore i changes, it still had error.
now,i think that my problem in onPostExecute.
Do httpURLConnection operation need to put in ...
0
votes
1answer
46 views
Processing received SMS as a TOAST in Android
I need your help as you used to do. The portion of my app is about sending and receiving SMS in android. I done quite lot research especially past posting in this forum. But i didnt get the answer i ...
0
votes
1answer
30 views
Toast of Selected EditText: multiple toasts showen
So the problem is that when I change focus from a EditText to another I toast the selected one,but I'm instead of just one Toast of the selected EditText I get the previously selected one then I get ...
1
vote
4answers
92 views
Android cancel Toast when exiting the app and when toast is being shown
I have read about this kind of problem here but the answers don't seem to be working.
I show a Toast when user clicks a button. When the user continously clicks the button the toast keeps on being ...
1
vote
2answers
47 views
Getting the service context in a timer so I can use a toast
I know I can get a service context using this in the onCreate() method in a service.
In my service, I'm using a timer to do something. And I want to produce a toast when that something is done. ...
3
votes
0answers
55 views
Windows - code to block toast notifications? (Win32/MFC desktop)
Everything I can find on toast notifications is about how to send them or fix problems with sending them.
I have a full-screen desktop application where I want to STOP toast from popping up while it ...
1
vote
4answers
81 views
Android Toast with multi-colors
I want a toast with multi-colors. Like this:
I looked at the different tutorials on changing the layout in the xml to create a custom Toast, but none of them explain adding different colors like ...
0
votes
1answer
45 views
Using an Image from an array in a toast in android
I am making an android app that lets the user play the drinking game kings. I have all the @drawable images in an array 'cards' which are randomly selected. I can't figure out how to display the ...
0
votes
1answer
60 views
Android executing SU commands in background?
I'm writing an android app that sets the max frequency, governor etc.. when the screen turns off. To do it i have a service running that receives screen on/off broadcast intents. When the screen off ...
0
votes
0answers
45 views
Traceview profile: Handler.dispatchMessage using significant CPU time
I've just started to profile my app at its prototype stage using Traceview.
I've found that the main user of cpu time (90%) is Handler.dispatchMessage. The main user of real time resource (50% ...
-2
votes
1answer
31 views
Toast giving incorrect answer from Radio box references
I am pretty new to this and are not entirely sure why I am having this problem. From my code:
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import ...
-1
votes
1answer
42 views
trigger.io toast not working
I am trying to use the "toast" call on android and nothing shows up
I was trying a simple test using
forge.notification.toast{"some string",function(){},function(e){}}
in the debug it says its ...
2
votes
1answer
64 views
Best way to implement custom view with animation at the center of the screen?
My GOAL is to implement custom toast in my application as follows:
MyCustomToastClass.makeText(context,View,anyDurationInMS);
I want to set the "Toast" gravity, Layout, duration(not just ...
0
votes
1answer
22 views
Azure Mobile Services Toast Notification
Any ideas on why I can't see the toast notification in any phone? I can successfully receive and see the tile flip notifications but not for toast.
In the logs I can see the toast as received status, ...
1
vote
1answer
36 views
Show regional chars in android
I have method :
public boolean dispatchKeyEvent(KeyEvent event)
{
Toast.makeText(getApplicationContext(),String.valueOf(event.getCharacters()), Toast.LENGTH_SHORT).show();
...
0
votes
2answers
89 views
How to set toast style as a theme?
I want to change all toasts in my App by editing themes.xml.
I am using <item name="buttonStyle">@style/MyButton</item> to change my buttons, is there something similar with Toasts, or ...
1
vote
3answers
81 views
Display Phone Number in Toast
Ok, I have almost everything working. The only problem is that whenever I click on the new entry I have added to the listview through my dialog, the app crashes instead of displaying the phone number ...
2
votes
2answers
282 views
How i can make toast disappear?
I have a problem with toast. How can I make toast disappear when the user successfully login to database.
The code for user fail to login like this:
class BuatLogin extends AsyncTask {
...
0
votes
0answers
14 views
troubles with Spinners
Good Morning i have a trouble From a Item in the Spinner, when i select it there is a Text View changing on the back.But it doesnt work!
this is my code:
public void onCreate(Bundle ...
2
votes
3answers
174 views
Android - Toast message every 1 minute
I am trying to implement a service in Android that displays a toast message every 1 minute in Android. I am new to Android development and learned about AlarmManager that will help me do this. I have ...
0
votes
0answers
35 views
how to intent and toast from myItemizedOverlay
i have mapview with custom itemizedoverlay. i put two button at info window. my question is my code at neural button right? i put intent and toast but it didnt show. here is my code. thnx.
public ...
0
votes
2answers
67 views
Toast in new Thread
I am trying to display a toast in a new thread. I researched into it and apparently I need to run toast in the UI thread. I need this new thread because Android doesn't want me running HTTPclient in ...


