Tagged Questions
0
votes
2answers
20 views
Is it possible to make two-way communication between two devices via NFC?
I am trying to provide an application which sends multiple data between two different devices via NFC. For ex: device1 sends "date" comment and device2 gets the comment via NFC communication and then ...
0
votes
1answer
45 views
How to create callback (add as dynamic argument, a function)?
I'm creating this method / function and I need to implement callback. I mean, I need to add as dynamic argument, a function.
I have read several articles but I can not understand how to get it.
Any ...
0
votes
0answers
20 views
On Android, is it possible to register to receive updates when network communication begins and ends?
So I've been playing with BroadcastReceiver, and I've registered a receiver that notifies me when the network state changes (from on to off, or from cellular to WiFi, etc...)
private final ...
0
votes
1answer
33 views
How to make a callback between Activity and Fragment?
I have this interface in my activity.
public interface LogoutUser {
void logout();
}
My fragment implements this activity, so in my fragment, I have this:
@Override
public void logout() {
...
0
votes
2answers
21 views
How to get the primitive from a boxed Object
When using custom callbacks (like android:onClick) the actual method is called using something like
mHandler.invoke(context, View.this);
According to the doc on invoke:
Object ...
0
votes
1answer
31 views
setOneShotPreviewCallback not hitting onPreviewFrame() in callback
I'm creating a video capture activity for an app I'm making, and I want to capture a preview frame as well to use as a playback button. I've set the SurfaceView up in onCreate(...) and hooked up the ...
0
votes
2answers
40 views
AsyncTask ProgressDialog stopped, after callback
this my task:
public class GetTask extends AsyncTask<String, Void, JSONObject> {
// callback
private Activity activity;
private AsyncTaskCompleteListener callback;
private ...
0
votes
0answers
33 views
SyncTask callback to Activity instance
I have read examples on how to call back from an external class which implements the AsyncTask. Two ways were mentioned, one with an interface, other is more direct giving the activity instance (this) ...
0
votes
2answers
57 views
Android: Implement inner class in outer class; callback from inner class and outer class
I have multiple fragments in one activity that should be able to pass data inbetween them. I have used tutorials to implement callbacks. My MainActivity is the outer class in which my fragment classes ...
0
votes
0answers
12 views
OAuth+GetGlue = getQueryParameter returns null
I'm trying to do check'ins to GetGlue using GetGlue API. I have this code from SeriesGuide GitHub.
I'm new with Oauth and I don't know why it doesn't work because
...
0
votes
1answer
67 views
Invoke PublishProgress() from a callback yet invoked from AsyncTask
After 3 years of reading it's my 1st post here. There never was a need to write one. It's a very good site here.
I got the idea to extend the native AsyncTask class to support callbacks invoked ...
0
votes
0answers
20 views
Define individual callbacks in the extending activity for a universal action bar
I have created a class to hold an action bar which I will be using within multiple other activities.
I have done this to save reproducing code.
I am creating a spinner from a resource, in my ...
0
votes
0answers
21 views
Image for Picture callback is stretched
I writing my camera app and have one problem on Galaxy Mini 2. When i calling takePicture() it shows me the stretched image. In data that came to pictureCallback the photo is normal, but when i make ...
0
votes
0answers
40 views
Facebook Request.Callback() on android - returning response
I have the following code, but all it does is Log on LogCat the responses, I want return it to my Activity, so I can use the response to populate a ListView
Request request = new ...
0
votes
1answer
78 views
Log in with twitter4j callback
I try to write an application where an user can log in on twitter. I use twitter4j like library.My problem is that when I go in the page where I must put username and password, the program block ...
0
votes
0answers
34 views
How to switch to my application after oauth in Android
I am sending a request to my provider with OAuth using signpost 1.2.1.2 but I could not manage to switch to my application by giving callback url in the following method:
...
0
votes
1answer
61 views
setOneShotPreviewCallback not calling back my method
I'm trying to create an application that accesses the Android camera, gets a frame(image), processes it, then restarts the process, all this while providing a smooth preview on the screen.
I do this ...
1
vote
1answer
51 views
ClassCastException while setting callback for customView from Fragment
I am trying to receive a CallBack in MyCustomView which is a class representing a Fragment( or we can say, it is view for Fragment) when i hit any element in ListFragment.
Logs are attached Below:
...
1
vote
1answer
107 views
Callback from NDK not finding method in java
Im trying to implement a callback in JNI/NDK and android. But i can't get the method signatures or something right, Why can't the method be found?
My MainActivity instance calls the ndk function:
...
0
votes
0answers
91 views
Android Phonegap Plugin not working for all version of android device
I developed an Android PhoneGap Plugin for getting public album list and upload it to picasa. The plugin is successfully working with the emulator and device. The success callback isnot calling for ...
0
votes
1answer
72 views
Call to AsyncTask error: LoadBookBuyInfo cannot be resolved to a type
In my call to my AsyncTask, new LoadBookBuyInfo().execute();, I receive the error: "LoadBookBuyInfo cannot be resolved to a type". I'm using fragments and I've scoured the internet for an answer but ...
0
votes
3answers
106 views
Android JSON API calls
Im trying to figure out the best way to make a widget to pull data from a API of a company. It provides monitoring data for there service. They have a API that uses JSON calls and i need to know how ...
1
vote
1answer
41 views
how to callback into various activities from a android library
I’ve written a library for Android, upon initialising the library I register for call backs for location updates, subscription status changes, library status changes and various other updates...
...
0
votes
2answers
174 views
Spinner's onItemSelected callback is called even without selection
I have a two spinners. The problem is that callback method is called even if user doesn't select anything (event doesn't touch these spinners). I can see results of Log.v("card", ...
0
votes
0answers
53 views
Ideas needed with callback url issues I think in Emulator. CS6 Flash and AS3 plus AIR
Built using Adobe CS6 Flash AS3 + AIR on Win8
I have a working Twitter capable app in iTunes that uses the callback string,
oauth.callbackURL = "http://tweetr.swfjunkie.com/dev/verified.html";
...
0
votes
1answer
67 views
Callbacks for SeekBar implementation in Android
The following callbacks are implemented for the seekbar:
void onProgressChanged(Seekbar seekBar, int progress, boolean fromTouch);
void onStartTrackingTouch(Seekbar seekBar);
void ...
1
vote
1answer
87 views
Android Accelerometer issues
I am working on a game that involves using the accelerometer to control the character. My problem is this: I need to use the values recieved by the sensor in classes and methods that are not ...
1
vote
2answers
627 views
Android: Callback AsyncTask to Fragment(Not Activity)
I am trying to implement callback between AsyncTask and Fragment but cannot find correct info how to do it. The issue is that all callback implementations are between activity and asynctask but I ...
1
vote
2answers
80 views
Calling a Java method from a sqlite trigger (android)
I want registered callback method using sqlite trigger
for example,
public void printLog(){
Log.i("TAG","1 row added");
}
this method calling after insert any row in sqlite.
Is it possible?
How ...
0
votes
2answers
370 views
Android onPreviewFrame callback not getting called for the camera
I'm trying to get the data from onPreviewFrame(byte[] data, Camera camera). But it doesn't seem to be working. Do you see any problems with this code? Most of this just came straight from ...
-1
votes
1answer
273 views
TimerTask Crash in previewCallback
I am using a TimerTask() in previewCallback for an app. However, it stops to work.
I am newbie for Android development and I have no idea what or where is the problem.
I am trying to reactive the ...
1
vote
3answers
58 views
Handler instead of Timer?
Basically this is what I am doing, instead of using a Timer I am using a Handler:
Handler h = new Handler();
Runnable r = new Runnable(){
public void run(){
//do something and schedule it again
...
1
vote
1answer
78 views
wait() not signaled by notify() in callback
The problem is simple. On Android I have a method that needs to call a library function. The call will signal a callback that I must handle. Before I return from my method, I must wait for that ...
0
votes
2answers
68 views
Show waiting notification till callback returns from thread
I am new to android and am stuck with this situation
I am calling a thread from the Activity UI. The thread will return to a callback function after doing some background operation .
Till then I ...
0
votes
2answers
61 views
android findViewById gets null instead of concret instance
I've got a problem. Since I am a newbie to develop Android apps, I suppose that I did not get all the concepts right.
The problem is:In my dialog, after entering all the information and pushing the ...
0
votes
1answer
125 views
Save Form fields in Fragments when swipe and getBack them in another fragment
I have A ViewPager which have three fragments attached to it. Each fragment has a form which user need to fill out. On last page(Fragment) there is an update button which send the data to server. So I ...
0
votes
0answers
52 views
previewcallback still called after release camera
in my code i set a previewcallback, and while debugging i noticed that after i release the camera in onPause, the previewcallback is called again.
i Supposed that camera.relase() released all the ...
0
votes
1answer
92 views
Fitbit account Integration in Android
I am working on an application which is related to medical science.
Where I have to implement FITBIT device with my application.
I am following fitbit developer tools for it but I am unable to ...
0
votes
1answer
66 views
Android authentication: callback isn't called
I'm implementing an authentication system in Android 4.2 using the authentication sample as an example. In my application I have a MenuActivity with the Login option. If that option is clicked and the ...
1
vote
1answer
402 views
Android remote service callbacks
(I have a remote service with an AIDL interface that is used by several client apps. I would like to add an asynchronous method to the interface for calls that take some time, but I need the solution ...
0
votes
0answers
141 views
android twitter app won't go back to app after login
I'm writing a twitter android app. I'm trying to login using signpost OAuth. When the application goes to the twitter login webpage, and after the login, it stays on the twitter webpage instead of ...
0
votes
1answer
204 views
android callback fails in fragment fails cannot be cast to android.content.Context
I have a callback class gaGPS which requires I think is a context which works fine in a normal activity but when I use in a Fragment it fails
here is my interface class
Public class gaGPS extends ...
0
votes
1answer
65 views
UrlImageViewCallback : called only when when image loading is successfull
I am using the amazing UrlImageViewHelper library from koush https://github.com/koush/UrlImageViewHelper
The problem that I am currently facing is that the helper only notify when an iMage is ...
0
votes
0answers
113 views
Android googlemaps v2 finish loading event or callback
I want to do something after the google maps has loaded(maptiles have been filled) is there anyway to achieve that?
1
vote
0answers
318 views
andoid actionbar menu item long click detect possible?
i have an action bar and some menu items that are set to show on the action bar like this
<item
android:id="@+id/menu_play1"
android:orderInCategory="100"
...
1
vote
2answers
301 views
Android Java Interface Callback onPostExecute nullpointer exception
I have the following classes:
Main.java
package com.example.webapp;
import org.json.JSONException;
import org.json.JSONObject;
import android.app.Activity;
import android.os.Bundle;
import ...
0
votes
1answer
545 views
Android OnInfoWindowClickListener() never called
I'm creating an application with new Google Maps API V2 and I have to intercept the click on InfoWindow, showed when a Marker is clicked.
Reading the documentation I assumed that I do that to listen ...
0
votes
0answers
108 views
Closing OAuth Authentication Page After Callback on Android
I'm a looooooong time reader / user of this awesome resource. I had been away from programming for 8 years, and with your help, I'm not as totally clueless anymore :)
My company is launching an app ...
0
votes
1answer
138 views
setOnUtteranceProgressListener for API < 15
I'm making an application for Android API 11 (or newer). I'm trying to get callbacks from a TTS engine, but there a problem appears. I've tried to set a listener using setOnUtteranceProgressListener() ...
3
votes
0answers
327 views
Android camera surfaceChanged being constantly called
I am developing an app that uses the camera. I have made the preview class like this:
public class MyPreview extends SurfaceView implements SurfaceHolder.Callback, Camera.Preview Callback{
...
...






