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
3answers
27 views

remove “http://” , “http://www.” , “www.” from String

I need to remove all kinds of "web beginnings" from my String My TextView must be without "http://" , "http:// www." , "www." Please can you help me to to this ?
0
votes
0answers
3 views

Compile OpenSSL FIPS for Android armv6

I have seen several answers for how to compile OpenSSL for Android, and the FIPS module for Android armv7 (which I followed), but I have yet to figure out how to make the FIPS module for armv6 on ...
0
votes
0answers
4 views

Connection to server returns EHOSTUNREACH for all apps after switch from 3g to wifi

I've built a small android test tcp client that connects to an Ip, sends hello world, and periodically sends a datetime. To test this I am using netcat as a server, in the following manner: nc -l ...
0
votes
0answers
3 views

Gradle can't find dependency (Android support library)

I have a problem that Gradle can't find my dependency (Android support library). My build.gradle looks like this: buildscript { repositories { mavenCentral() } dependencies { ...
0
votes
0answers
6 views

Problems setting Push Notifications on Android with Parse

I've been trying to receive Push Notifications in android and had some problems. Could you help me? 1) The basic implementation works fine in Android 4.0+, but not in Android 2.3, why? 2) I've ...
0
votes
0answers
14 views

Google Play store suspension guide

Been looking for a guide to app suspension from Google play and been struggling to find one so, based on trawling Stack Overflow and the official Android developer forum have put together a guide for ...
0
votes
0answers
10 views

Displaying CSV values in ANDROID APPLICATIONS ( After opening the APK )

I have been searching for methods to display the values in my csv files to the Android Applications but were not successful. ( I am a totally beginner for JAVA and Android ) Each time I took the ...
0
votes
0answers
5 views

Certificate fingerprints don't match after export

Hello I have a problem, When I try to upload my app to the Google Play Developer Console, it says the certificate fingerprints missmatch and shows another fingerprint than I'm seeing when I export ...
0
votes
3answers
22 views

How to avoid android.os.NetworkOnMainThreadException

I am trying to send a picture to my local web server from my android phone. Once it connects to the web server I get the following: android.os.NetworkOnMainThreadException I think that the solution ...
0
votes
0answers
16 views

GPS. Always same point

I wrote a small app to log my GPS position. It works well but on the phones I get strange results. If I put a phone on the bench and start logging after maybe 20 given points GPS starts to give me ...
2
votes
0answers
16 views

Android Java: best practice for common code in overrides for all Activities

I'm not entirely sure whether the following approach is a good or terrible one. It would be great if someone more experienced could add his/her 2 cents :) I have an app with lots of Activities. In ...
0
votes
1answer
17 views

How to get information of installed application with the corresponding .apk file name

How to we find apk name corresponding to application installed on device. Assume that i have to all the root folders Eg : If there is some xxxx.apk and application name is Email. Is there any ...
0
votes
0answers
8 views

ActionBar Intent

I have made Android ActionBar and I have three things in there Date and two buttons. My button fuction will be to get user to another xml file, so I need to create Intent in my MainActity: Button add ...
0
votes
0answers
11 views

setting wallpaper from resource

I have a simple problem with wallpapermanager and I cannot find the answer on this site. I have this very simple code with a picture that is 1280x800 (the display of my tablet). When I run the code, ...
1
vote
1answer
10 views

Homebase SDK integration (Android Monetization SDK)

I stumbled across Homebase SDK and I’m trying to integrate it (it’s an SDK which supposed to increase my revenues by $100 for every 1000 users). I have two questions: Did anyone have any experience ...
0
votes
0answers
10 views

Two animations at a time Android

Hello I'd like to create a two animation in my android app. I heard that I should be using AnimationSet. This is what I tried so far: <set ...
0
votes
0answers
9 views

How to add a button to switch between cameras

How can I add a button to camera-control opencv4android example? I have simply added in the main.xml file: <Button android:id="@+id/imgShoot" android:text="Capture" ...
0
votes
0answers
5 views

Lightweight window animation in Titanium for Android

I'm trying to follow some guides about window animation for android in Appcelerator Titanium, but none of them actually mentions lightweight vs heavyweight windows. In any case, the simplest example ...
0
votes
0answers
10 views

childIndex in full ExpandableListView?

I have an ExpandableListView like; Category1 | |__ SubCategory1 -> index 0 | |__ SubCategory2 -> index 1 Category2 | |__ SubCategory1 -> index 2 | |__ SubCategory2 ...
0
votes
1answer
28 views

android app not starting: Unable to instantiate activity

when I try to start my App I get the following error: 05-21 16:51:58.081: E/AndroidRuntime(8873): FATAL EXCEPTION: main 05-21 16:51:58.081: E/AndroidRuntime(8873): java.lang.RuntimeException: Unable ...
0
votes
0answers
6 views

Error while fetching user profile from facebook api

I am integrating Facebook with my application. However, i succeed to log-in user but when i try to fetch user profile data; it shows following error. {"error": {"message":"(#10) Application does not ...
0
votes
0answers
5 views

Integrate Millennial Media Ads using GET Method in Android

Android 2.3.3 The documentation of Millennial Media says that I can use a HTTP GET Query to get the AD as a HTML Response. My client application needs the ads to be embedded in an article, that ...
0
votes
3answers
22 views

UI delayed showing with asynctask

I defined an AsyncTask in a button's onclicklistener, and once user clicks the button, ideally progress dialog shows while asynctask downloading. However, progress dialog just flashes in and ...
0
votes
2answers
20 views

Android: Use different style for lower OS version

I am working on an Android app. The app use Holo theme which is not available in lower Android versions. I am aware of that you can set different style in folders like values-v11, however, that's only ...
1
vote
0answers
14 views

Changing the ActionBars opacity due to the Activities view size

I have an Activity with a SherlockMapFragment which is basically a SupportMapFragment. In it I display a map with some Markers for example gas stations. What I want is a UI that looks a bit like ...
0
votes
1answer
18 views

Change an icon in an Android ListView entry when pressed

I am currently trying to implement a ListView in Android that features rows with an icon and a describing text. When the user presses a row, the background color should change and the icon should be ...
0
votes
1answer
5 views

PhoneGap redirect From server html file to local file

I am in the process of developing an iPhone PhoneGap application and have stumbled into a problem redirecting the user after login. The flow is as follows: Application is loading. I am redirecting ...
0
votes
0answers
16 views

How can I resolve “No resource identifier found” for attributes in my Android project?

I'm trying to implement a simple GridLayout in Xamarin Studio, as outlined in this example: ...
0
votes
0answers
11 views

JRuby Android App Development

I am relatively new to the Ruby Language been learning since the past half month about it. I have actually also been assigned a student project to develop an android app so i decided to choose jruby ...
0
votes
0answers
8 views

Custom CursorAdapter with AlphabetIndexer and alphabet sections

this is my first post, I hope to write it as complete as possible. I'm developing an application that displays a list of films in a listFragment. The list is populated by means of a ContentProvider ...
-1
votes
2answers
15 views

making a Get request from android throws exception?

I'm trying to access a Web API from my android app, I have the Url and it's supposed to return some XML file. I looked online and found some code but none of them works, I can access the url from VM ...
0
votes
0answers
5 views

How to draw markers inside a specific radius for google maps in android

I have a Google Map fragment on my android application. I have markers drawn on the map which represent places of interest and I have an extra functionality that draws a circle on the center with a ...
0
votes
1answer
23 views

AsyncTask not working with arrays (android)

I want AsyncTask to download multiple files that i get as an array. Using this code the AsyncTask only works once and ignore the rest of array. private class DownloadFiles extends ...
0
votes
1answer
10 views

Google maps get coordinates on route

everybody ! Who can help me? I would like to make something like an navigator in android using google maps, and i need to know coordinates on my route on every xx kilometers (from start point to end ...
0
votes
1answer
12 views

Handling Android back button in jQuery Mobile

I'm creating a jQuery Mobile app which is contained within a Titanium app's webview. When the Android back button is pressed, it exits the app rather than going to the previous page (not the best ...
-2
votes
2answers
17 views

Error in http connectionandroid.os.NetworkOnMainThreadException

when I launched my application I have a problem with emulator 4.1 and 4.2 even I have already made ​​the Internet permission, logcat shows this mssage: Error in http ...
0
votes
0answers
9 views

Streaming music online on Samsung S3 not working

Our application has to stream music from from an online source (I'm not at liberty to disclose that source). Why does it take over 2 minutes to start streaming on the S3? I've been able to figure ...
1
vote
0answers
23 views

Android SQL INSERT Date into Access

I have an Android application that sends data to an ASP page, which then sends the information to an Access database. This worked fully before. Recently we had an issue with our server and now that it ...
-2
votes
0answers
33 views

Unable to receive a string with 10 characters in the server side of a socket using recv function

My server side recv function looks like this: args[i] = (char *) malloc((sizeof(char) * len) + 1); if (recv(acceptFD, args[i], sizeof(char) * len, 0) != (int)sizeof(char) * len) { ...
0
votes
1answer
14 views

How to go to an anther activity after the end of a frame by frame android animation

How to start an activity after the animation has ended. I have added android:oneshot="true" in the xml but how to start a new activity after this animation has stopped.I have attached the entire code ...
1
vote
0answers
15 views

Changing text color in InputMethodeService

I want to change color of entering text by soft keyboard it possible with InputConnection I made BaseInputConnection individual: public class k extends BaseInputConnection{ Keying ke; public ...
0
votes
1answer
21 views

onActivityResult get position

I have an activity that shows a ListView, the ListView is composed by a TextEdit and a Button. The button is used to pick the email of a contact and put it in the TextEdit. The listener of the button ...
0
votes
0answers
17 views

Do Android Geofences get removed if the app is killed by the user?

The question is in the title. Do the new Android Geofences get removed if the app is killed by the user? I am using the new Android Geofences (announced at Google IO 2013). I can't quite work out if ...
1
vote
0answers
15 views

Android, sending custom SEND intent

I need to send intent for sharing link from my application, the standard way to send it is like this: Intent sendIntent = new Intent(); sendIntent.setAction(Intent.ACTION_SEND); ...
-4
votes
4answers
61 views

Pass integer between classes in Java

So I have this class where I push a button, and at the and I get the int maxpluseen which I want to pass over to ClassB. private void populateBtn() { foto1 = (Button) ...
-1
votes
0answers
11 views

WebP images for Android [closed]

It seems that Android +4.0 suppose to support WebP encoding. I tried to present a file .webp (native code) in an ImageView with no success. does anyone knows a way to present it? do I need special ...
0
votes
0answers
14 views

In Android, how do you create a virtually gallery folder like Facebook and Picasa web albums do?

I'm an experienced programmer, but not so much in the Android world though, so I'm hoping someone experienced can give me a starting point. I'm looking to integrate with the Gallery in Android. I ...
0
votes
0answers
4 views

Android - Regular service VS Accessibility service

What the difference between regular service (not foreground) and accessibility service? When sould I use each other?
-5
votes
1answer
46 views

Strange issue in Android Java String [closed]

I am facing very strange issue in Java String using Android. I want to display text data on my Android device, the text data is coming from a web site . The text data is about 300 lines and I am ...
1
vote
0answers
7 views

Android JUnit HorizontalListView performItemClick() not working

During my unit Tests I want to basically test if an Activity is started by a simple pressure on a button, that is in an HorizontalListView. I've already succeed in starting new Activities during ...

1 2 3 4 5 6694