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

learn more… | top users | synonyms (6) | android jobs

0
votes
1answer
11 views

android asynchronous get foreground activity

Is there a (thread safe) method I can call from Java on Android which will give me a handle to the foreground activity from a background task? I would like to be able to do so in order to safely post ...
0
votes
0answers
33 views

trying to take text from one activity and print to text activity but it fails

there is no error present in the code below, first activity works good,but on click button it stops(crash) help me about that public class MainActivity extends Activity { @Override protected void ...
0
votes
1answer
24 views

how to make dialog(message) box like facebook

How can I make dialog box with TABs in the dialog box like this picture(facebook application for android): Please give your suggestions and answers
0
votes
0answers
11 views

Phonegap: multilingual app keyboard

Hi everybody and thanx in advance for your help.. I am developing an application for iOs / Android, using Phonegap/Jquery/html5. My application will be in 3 languages Greek, Russian, English. I don't ...
0
votes
2answers
35 views

Binder method in java

Can anyone explain me this binder class and method public class LocalBinder extends Binder { CC2540Service getService() { return CC2540Service.this; } } @Override public ...
0
votes
1answer
12 views

ListView id not valid

i've got a problem with an activity with root element ListView. I've followed this tutorial to load items into listview and all work. But i've tried to change the id of the listview and now, when the ...
0
votes
3answers
16 views

Is there a way i can get a sharedpreference name?

Let's say i created a shared preference. sp = this.getSharedPreferences("name",MODE_PRIVATE); If i'm in another activity, is there a way i can find the name of sp and set it to a string?
0
votes
0answers
10 views

android scrollto does not work in onResume method

I would like to scroll a screen to a particular position when the screen is displayed so i did this code in Onresume function of my fragment scrollView.post(new Runnable() { @Override ...
0
votes
1answer
12 views

viewflipper or different activities

I was wondering which is the best way to implement the different menus in an application. For this we can use a viewflipper to change the displayed view, but we can also start new activities to ...
0
votes
0answers
8 views

How to implement libgdx touchDragged?

I'm beginner in Java and in game development too, I was following some tutorials but now I'm stuck on implementing touchDragged listener using libgdx, here is my code and can anyone suggest how to ...
-1
votes
1answer
45 views

Asynctask never dies

I use asynctask to show data from json but asynctask show loading never dies, no error but loading and loading this code doInBackground function @Override protected void onPreExecute() { ...
2
votes
2answers
24 views

Android App Development - Theme Trouble

My first question :-) So recently I took up app development, and was going through the tutorial posted here: http://developer.android.com/training/basics/firstapp/index.html I finished part 1 - ...
1
vote
1answer
16 views

The type com.google.android.gcm.GCMBaseIntentService cannot be resolved. It is indirectly referenced from required .class files

Upgrading to the last SDK Tools Version (V22) SDK platform tools(V17) SDK Build-tools(V17)I get this msg in Eclipse public class GCMIntentService extends GCMFuIntentService{} Important facts- ...
0
votes
0answers
11 views

Android Bluetooth connecting to Device

I am trying to connect to a devie to write data onto it. I can search for devices, but if I click on the found device, my phone wont connect to that device. My debugger is highlighting this line: I ...
0
votes
2answers
23 views

Android Linear Layout (3 buttons) cannot centre of the screen

I want to make the three button should be align centre of the '+id/imageRecorder'. But the 3 buttons are start from the edge of the screen now, hopes for help And here is the xml code, how to make ...
0
votes
1answer
17 views

Android - Open URL in background

There is this website for example http://website.com You can like stuff there, with a link like this for example: http://website.com/3020/hype. You have to go to that link to get the article (3020) ...
0
votes
1answer
8 views

Android Google Map - Clicked marker opens new activity or bigger window

I've been searching for help on implementing OnMarkerClickListener but nothing I've found has worked. This is my marker below and when clicked it only changes colour(light blue). I'm looking for it to ...
0
votes
1answer
11 views

Android: Start Activity on tab change

I have the following class in java. My purpose is to design a tabhost and have an activity start when the first tab is displayed. Also i want to have a different activity start when another tab is ...
0
votes
0answers
7 views

How to build Phonegap plugin for native contact picker (Android)?

How do I even start doing this? I can't find any good documentation to really guide me through this process. I am willing to do the work and try to read and understand, but I almost don't know how to ...
0
votes
1answer
16 views

Android studio cannot open monitor (DDMS)

I can't open the monitor (ddms) in android studio getting following error: A java Runtime Environment (JRE) or Java Development kit (JDK) must be available in order to run Monitor. No Java virtual ...
0
votes
1answer
14 views

How to get a column value of item in ListView when I use CHOICE_MODE_MULTIPLE mode and ArrayAdapter<String>?

I hope to use String aa=c.getString(c.getColumnIndex("address")) to get the column value of a item in the function private void SetSelectedAndTotal. but the app crash, how can I do? Thanks! private ...
0
votes
1answer
15 views

bmpFactoryOptions don't work, no idea why

I use the following code to get a Blob back from my SQLite database and get back a bitmap. My problem is that the reconstructed bitmap is larger than the original picture (input). It seems that my ...
0
votes
2answers
9 views

Samsung Galaxy Ace Debugging Mode not showing on Window 7

I am facing a very strange problem on my mobile, I have turned on Debugging mode, but still when i try to connect it with laptop it is not showing any option, only it shows usb mass storage. I am ...
-1
votes
1answer
16 views

SIGSEGV when enabling attribute

I am trying to render an object in an android app. The geometry is based on an interleaved vertex buffer (position data and normal data) and an index buffer. The vertex shader expects those two ...
0
votes
0answers
8 views

How to manage memory properly using Director class 1.4?

I am using director class 1.4 for changing scene to scene and i am wondering if the director class manages memory automatically or do i have to manage them manualy removing and nilling out every ...
0
votes
0answers
6 views

Parallel tesseract ocr on Android

Is it possible to parallelize Tesseract OCR Process in order to speed up on Android? For example the basic process in all procedure is baseApi.getUTF8Text(); Can this be parallelized? and how? I ...
0
votes
0answers
11 views

Android get Lock Timeout Programmatically

I am writing an app to show an activity over the lock screen when the phone is locked and screen off. When the user leave the activity, the keyguard should be shown. The common way to detect whether ...
0
votes
1answer
13 views

Tabs content is visible on top of another after screen rotation

I have read alot on stackoverflow on fragments issues but I cant find a solution to my problem. I have a Tabhost and when I change rotation of the device and then select another tab, the view from ...
0
votes
0answers
15 views

LIBGDX making 5 different buttons on one screen

I have 5 buttons i need to make do different things but they don't and i need to know how to make them do it. Here is my code; public class MainMenu implements Screen { CrazyZombies game; Stage ...
0
votes
0answers
8 views

android : YouTubePlayerView video not visible

i am inflating a layout over the cameraview . The layout is like this { Linerlayout Relativelayout YouTubePlayerView } This inflated layout elements are initilly invisible and on user ...
-5
votes
1answer
22 views

Android Login with MySql database

I need to create an Android Login Page with my own MySQL database. Can someone teach me how to connect to my database and do this. I have seriously no idea how to do this. Thanks in advance
0
votes
0answers
14 views

“Not enough storage available to process this command” - Gradle with Android plugin

I am having an issue when trying to build with Gradle with Android plugin. I am using Win 7 64 bit with 8GB RAM and Gradle 1.6 but "most of the time" when I tried to run "gradle build" from cmd, I ...
-1
votes
0answers
19 views

How to add values to spinner2 dynamically (after selecting spinner1 with static data in it)

After selecting spinner1 how can I dynamically populate spinner2 with data from a database? public class listview extends ListActivity implements OnItemSelectedListener{ // Progress Dialog ...
0
votes
2answers
16 views

Android Debugging - Simulate unplugged phone

I have a program that works great when its plugged in. But, when its unplugged I am having a problem somewhere in the program. I don't know where in the program the problem is coming from because ...
1
vote
0answers
29 views

Accessing specific values in String Array in Android

I'm trying to make an Android app which parses a XML file with a lot of entries, but it will be ranged by user-defined zones. The zones names are included in a string-array zone-list: ...
0
votes
2answers
25 views

Android SQLite read while writing

It's possible to read data when database is open through DatabaseHelper and there is some process that is already writting to it? My minimum API for application is 7.
0
votes
1answer
25 views

Conenction between android mobile and computer

I'm developping an android application workin with mysql database, til now im extracting informations from my localhost just with an emulator, I want to take it to the next level... I would like to ...
0
votes
0answers
14 views

Jwplayer watch video on mobile devices

I'm trying to watch a video in flv on my android but it does not work, I searched and did not find one, I'm using jwplayer version 6. <script> jwplayer("container").setup({ width:629, ...
0
votes
0answers
9 views

Send all calls to voice mail in android

I am trying to build an android app where I want to send all incoming calls (except a few of my contacts) to voicemail without a single ring for a specified amount of time(like in night). The app is ...
0
votes
2answers
21 views

Why is the icon not being displayed but the name of icon is being written in list

I have a code to display all the apps installed in my device...its working fine but now i want to only show the icon of aal the apps but instead of showing the icon, the name of icon is written in ...
0
votes
0answers
11 views

ActionBar touch events being overriden by MediaController

I'm building an app with custom MediaController and VideoView (both using 99% of the original android code) to display my videos. When the activity is in landscape i set the actionbar (using ...
0
votes
1answer
16 views

how to zoom or scale fragments

As everyone knows android built-in-zoom control works for ImageView And WebView. In my project I have 3 fragments that shows in an activity. I need to zoom each fragment by touching or dragging. Is ...
0
votes
0answers
9 views

How to have java files been exported to local system in android & have it as referenced libraries?

I would like to have the java files in my local system then use it reference to the android app instead of having them inside it.How can I achieve it,please guide me with your experience on ...
1
vote
0answers
20 views

How to automatically extract a file from an IP address and port number

Is there any Javascript to automatically extract a file given a file name and the IPaddress/port where the file is stored? I have two PC's(static IP) connected to my home router.I have transferred one ...
0
votes
1answer
16 views

Custom camera not working on 4.0.4

I test this code in android 2.2 and android 3.2. its working perfect but when i run in android 4.0.4, its not working. when i click on button for take picture, application not responding and going ...
0
votes
0answers
10 views

AssetManager LibGLX

I'm just starting to use LibGLX and while searching for a specific class in the tree of the documentation, I found out there was an AssetManager class. So I started using it but I have a problem: I'm ...
0
votes
0answers
12 views

org.apache.http.client.HttpClient failed with time out when trying to connect to sever behind proxy

My application connect to server to store and restore data. I'm using org.apache.http.client.HttpClient as HttpClient for this purpose. One of the customer as a proxy server which is "located" between ...
0
votes
2answers
46 views

Android: What's the best hierarchy for this app?

I have an ImageButton and I want its image to change every time that onResume() or onCreate() is called. I have a method which changes the image, called mUpdateBackground, but I'm having trouble ...
1
vote
1answer
24 views

Android Date in ActionBar

I am making ActionBar in Android Development. And I want to put in ActionBar this DateFormat code : android.text.format.DateFormat.format("yyyy-MM-dd hh:mm:ss", new java.util.Date()); How I can put ...
0
votes
0answers
12 views

How to create and Android Tabbed Dialog containing fragments?

Can anyone point me to an example or show me how to create a simple tabbed dialog in Android where the contents of each tab are fragments? All the examples/tutorials I have found are about about ...

1 2 3 4 5 6671