Tagged Questions
Android is Google's software stack for mobile devices. Please use the Android-specific tags such as [android-intent], not [intent]. For non-developer questions, see http://android.stackexchange.com
0
votes
0answers
11 views
Android - Bluetooth receiving data - one way communication
Hi,
I'm trying for a long time to make a one way communication between my mobile phone and other Bluetooth device. Now I'm in this moment that I have a connection but I don't know how to receive ...
-1
votes
1answer
14 views
Asynctask boolean countdown
I want to use Asyntask to keep a countdown wich returns a boolean when it's done, and do some stuff meanwhile using a "while". But when I assing a boolean variable to the new Asynctask the program is ...
0
votes
1answer
44 views
Navigation Drawer ActionBar button not working
I am working on an android project and I'm trying to integrate the new Navigation Drawer using the example from http://developer.android.com/training/implementing-navigation/nav-drawer.html.
Its ...
0
votes
2answers
29 views
the code has stopped working - java.lang.ClassNotFoundException in loader dalvik.system.PathClassLoader
Today was a bad day. I tried to test the Android Studio with no success. The problem now, is that the full code I has, stopped working. I do that:
Updated ADT and SDK
Reinstall eclipse
Rescue the ...
0
votes
1answer
23 views
How to use xml from an android library
I was wondering if its possible to use a xml file from an android library, in the same way as you can use a Custom View.
For example, lets say you have a CustomView that extends LinearLayout, you can ...
1
vote
0answers
23 views
Does a dialog have a maximum size?
I am using a dialog to display a 7 images. the problem that the dialog is displaying 6 images perfectly and the 7th one (on the right of the 6 images) is truncated. Even if I replace the 7th image ...
0
votes
2answers
16 views
Accessing the localhost from a guest os
I'm developing a web site using php and mysql on linux mint.
now I want to test my page on android environment, so I installed virual box and I installed the Android OS in it.
I also COnfigured the ...
0
votes
0answers
18 views
I Need real Example of EndCall in Android
my application is working in Background and wait for call
this my problem of EndCall
because this method is not work in my Service code
Why !!!!!! ????
how get this method to work
and can i get a ...
0
votes
1answer
25 views
Kill process on Android by pid
I found the some similar questions around stackoverflow, but I haven't found
one that works in my case.
So far, I tried:
Runtime.getRuntime().exec(new String[]{"su","-c","kill -9 "+pid});
...
1
vote
0answers
10 views
Places API returns REQUEST_DENIED
I know there are a million threads on this, but I searched many of them with no help, I promise.
I am trying to use Places API to return results. I have tried the following:
Ensure a valid key (it ...
0
votes
0answers
17 views
Android: how to start device with the standard launcher?
I am in the process of writing a kind of custom "lock screen".
I have defined my "lock screen" Activity as a Launcher, so that I can get some control when the HOME button is pressed.
The point is ...
0
votes
0answers
7 views
Getting NetworkInterface name from NetworkInfo
Given an instance of android.net.NetworkInfo I want to open a socket for corresponding type. For that purpose I "just" neet to convert NetworkInfo type (such as ConnectivityManager.TYPE_WIFI) to ...
0
votes
1answer
22 views
Load Google Maps Android API version based on Android platform
I have an Android application that runs Google Maps API v2. By using SupportMapFragment, I support devices running Android as back as API 8. I know Google Maps API v1 is deprecated and that very few ...
0
votes
3answers
21 views
testing Intent in android
I have an android app. When the user clicks button A and intent is fired like this android-presudocode :)
//inside FirstActivity
@Override
public void onClick(View view) {
startActivity(new ...
0
votes
1answer
22 views
Hide items from GridView with custom ArrayAdapter
I tried to hide some items in my GridView dynamically with this code:
public class GridHelper extends ArrayAdapter<Object>
{
private Context context;
private int layoutResourceId;
...
1
vote
4answers
48 views
Is it safe to use static class variables in an android application
I am aware of the technique of extending the Application class to provide global storage. However in my case I am writing a class for a library function, so do not wish to force users of the class ...
1
vote
1answer
20 views
How to have images go to the next line if they dont fit
I am using Linear layout with horizontal orientation to put images beside each other. However, is there way that the images can automatically go to the next line incase they dont fit due to screen ...
1
vote
1answer
21 views
Offline voice recognition API in Android 4.2
I want to create application that uses offline Android's builtin voice recognition API. Does anyone have an example? I've tried to use RecognizerIntent API but it still requires internet. I've looked ...
0
votes
0answers
4 views
Gallery Scroll JAR Has No Source Attachment
I am a very early android and java beginner. I have noticed a very strange error in a simple Gallery view I have made. I have 7 pictures to scroll between. Here is the strange part though. Only pic 1, ...
0
votes
0answers
27 views
Creating Android service for continuous speech recognition
I am trying to create the service which allows to continuously run the Android speech recognition engine. I have seen an example at Android Speech Recognition as a service on Android 4.1 & 4.2, ...
-4
votes
0answers
31 views
ANDROID APP SEVERAL CRASHES PLEASE [closed]
This crash is happening in some devices that uses my app, please give me some advice if you can. Thank you in advance.
$ java.lang.NullPointerException
at ...
0
votes
0answers
10 views
Suppress BaseGameUtils sign-in-popup when using Google Play Games Services?
I'm using Google Play Games Services in connection with the BaseGameUtils-helper-library. On every launch of an activity extending BaseGameActivity, a popup with a ProgressBar saying "Signing in to ...
0
votes
1answer
24 views
What is the reason for exporting the private library dependencies of an Android project?
does exporting the libraries have something to do with JIT and compiling it into dex at runtime? I'm trying to make sure that my Android application has the smallest possible binary so that upgrades ...
0
votes
1answer
12 views
How to force WebDialog in Facebook Android SDK use facebook.com and not m.facebook.com?
I'm building an Android app with the Facebook SDK (3.0.1). On sending a friend request using the WebDialog, Facebook returns "Sorry, something went wrong." I reported this to Facebook bugs and someone ...
0
votes
1answer
11 views
Using multiple tab fragments
this is my first time using tabs in an app and I feel like this will be a simple fix but I can not find the correct solution. I have 5 tab fragments right now but when I run it all of them contain the ...
0
votes
0answers
20 views
Customize Request class from Volley framework
I'm trying to use a custom version of Request class from android Volley framework. I managed to work GET custom request but it fails with POST. I'm ovverriding getBody() method and returning byte[]. ...
0
votes
2answers
17 views
Signing map app with custom Keystore but debug map API key
I was exporting APK to give app some friends so they can test it. When The signed app is based on Custom keystore and map debug API key, app doesn't show map tiles (just default zoom buttons and ...
1
vote
1answer
36 views
What are the steps in converting a Desktop application in libgdx to android?
I have a fully functioning java application built with the libgdx framework that deploys on the desktop. However, I would like to take the code and create and Android app from it.
I have created the ...
0
votes
2answers
25 views
Display android app in pull down menu but not in status bar
I am building an android application that I would like to provide access from the Notification Bar but I don't want it to display as a Notification Item in the status bar at the top. It should only ...
0
votes
0answers
9 views
How to revoke/cancel account authorization given to an application on an Android device
I'm working on an integration with Google Calendar API. In order to get the authorization to access the calendar of the specific account, I use this snippet from the Calendar-Android-Sample Project:
...
0
votes
1answer
14 views
using foreach in onSaveInstanceState throws nullpointerexception
I am trying to save the tags for all fragments in an activity that are currently visible.
So I defined these:
// Fragment TAGS
private final static String EDIT_COLLECTIONS_TAG = "edit collection";
...
0
votes
0answers
67 views
This android code causes my app to crash
I am new to android development using Java, and I came to how to save application data in SharedPreferences class ..
When trying to make this attempt, the app crashs ..
This android java code causes ...
0
votes
1answer
11 views
How to modify an animated view while it is animated?
I tried to modify the content of a text view while it is animated, with its animation listener, with the following code:
final String text = [...];
animationGoOut.setAnimationListener(new ...
0
votes
1answer
17 views
Upload file from Android to webserver
what is the best way for uploading files(image) from android to webserver(i use codeingniter). in google i saw some methods with CustomMultipartEntity, Base64 and etc, but which way is better? and can ...
0
votes
0answers
7 views
Mobile accelerometers and gyroscopes check feature
I'm looking for a proper way to check if accelerometers and gyroscopes is available on mobile device ( mostly android & iphone ) in javascript.
Maybe by trying to figure out if the function ...
-2
votes
0answers
38 views
NullPointerException Android Application
I get an error in my code, and I could not know the resource problem.
the error is in the next line:
JSONObject jsonResponse = new JSONObject(convertStreamToString(instream));
I tested ...
0
votes
0answers
8 views
OpenGL ES 2.0 texImage2D() giving error 1280
I have an Android APP that works on most phones. However on a few phones part way through loading the textures the call to GLUtils.texImage2D() results in error 1280 GL_INVALID_ENUM. There are 8 ...
0
votes
0answers
20 views
Cannot download video file with android emulator
Here's the code to download a 3pg video file. Maybe one can give me an idea about what's wrong with it. I really need help. Can't get it to download the file:
Blockquote
protected ...
0
votes
1answer
23 views
Build Tools cannot be found
I'm trying to setup Android Studio to work with my previously made apps, but if I try to import a project from an old project via the .gradle file (made with the walkthrough of this guide on ...
0
votes
1answer
25 views
Android animation blink
The code is for making a text color change evenly every 200 ms. Why is the first version change uneven/flickering, and the second one evenly changes?
//first version
...
0
votes
1answer
15 views
How to set LinearLayoutPosition in RelativeLayout Android
I'm going crazy trying to set my LinearLayout position into a RelativeLayout.
Below You'll find my classes and xml files:
package com.example.layoutprova;
import android.app.Activity;
import ...
0
votes
1answer
14 views
resizing google maps v2 on android
I am trying to create an animation that stretches the MapFragment as the user pulls down on the screen. The physics is all there, as it was working when I was using Google Maps v1. However, after the ...
0
votes
1answer
11 views
Add Abort button to ActionMode
You all know the normal ActionMode from the ActionBar in Android. I think the questions says it all: How can I add a second button right after the "Done" button with abort and an X icon?
I use ...
0
votes
0answers
9 views
How to efficiently pass streamed data from a service to an activity?
I'm developing a product that will interface with an external server application. I cannot change the protocol or format of the external server or the incoming data.
My application runs (mainly) as ...
0
votes
0answers
9 views
pocketsphinxandroiddemo works only one time
I am using PocketSphinxAndroidDemo app on an android device.
The engine recognizes utterances frequently, but occasionally (and more often when I use longer sentences) goes into a state where it ...
-1
votes
0answers
11 views
How to capture an image with the back camera and save it programmatically without opening the camera?
I want to take pictures using the mobile back camera without opening it and also save it in an specified directory.How can i do this?
Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
...
-3
votes
1answer
28 views
Native space to Android space [closed]
Is it possible to call a service in Android space from Native space?
I want to invoke a service from Native space. Is it possible?
0
votes
0answers
21 views
ViewPager where each Page has a listview is lagging
I am trying to make a ViewPager where each page has a ListView with a few items. Although the app compiles and runs fine there are issues where sometimes it takes about 1 to 2 minutes for ViewPager to ...
-5
votes
0answers
32 views
My App Crashes by clicking the Backround [closed]
i have designed an Android App with some buttons, and when i touch the background not the buttons ,the App crashes. any suggestions please??
0
votes
1answer
53 views
Android show Dialog at home screen
I want to show Dialog when I'm at home screen after 10s,
and I modify my Theme to Theme.Dialog,
And now,I successfully pop it up when I pressed Back Key to home screen.
But my question is that ...






