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
10
votes
3answers
330 views
+100
Building a 9 patch drawable at runtime
I am successfully building a 9patch drawable at runtime on Android 3.0+ using the excellent gist provided by Brian Griffey (found here).
Essentially I load the raw (no patches) graphic file from the ...
1
vote
1answer
55 views
+50
Secure keyguard always shows up between activities
i have the following problem:
i have my Activity A where i press a button and Activity B shows up. Both activities A and B have the
WindowManager.LayoutParams.FLAG_DISMISS_KEYGUARD |
...
0
votes
0answers
28 views
+50
Can't get backspace to work in codemirror, under Phonegap on Android 4.x?
I need a web-based text/code editor that behaves well, for my App.
I'm trying to use codemirror under Phonegap and currently I'm having problems getting backspace to work for previously entered text. ...
1
vote
5answers
123 views
+50
Block incoming calls and sms in android
I tried to block incoming calls and sms in android for given numbers. after we block a number, when we getting a call from that blocked number, caller can here voice message as Number Busy.
But is ...
24
votes
2answers
1k views
+400
Getting statistics from Google Play Developers with an API
I am in charge of developing a website which should be able to show statistics from both Apple's app store and Google Play Store to clients, so they can easily see what's going on.
I have figured out ...
0
votes
1answer
95 views
+50
Syncing multiple providers with one SyncAdapter
I want to sync com.android.contacts and com.android.calendar with one SyncAdapter. Is this possible?
If yes, how I have to edit following lines?
<sync-adapter
...
4
votes
0answers
167 views
+50
Android Socket Issue on Samsung Galaxy S4 (SGS4)
We have recently been receiving reports of audio not playing in our Android apps, on the Samsung Galaxy S4. The app is fine on other devices.
The audio is streamed using the MediaPlayer. It is saved ...
5
votes
2answers
970 views
+50
Distinguish between screen timeout and power-button-press?
my app does something when the screen goes black, but I want it to only carry out that task if the screen was turned off "by itself", through a screen timeout - NOT when the user presses the ...
10
votes
2answers
4k views
+50
Connect USB device to Android Emulator?
We've been looking into Android 3.1+ and its ability to read/write to USB devices connected to the OTG/Host port.
I've found some code examples that allow me to detect and read/write to a USB HID ...
0
votes
0answers
40 views
+50
Handle Connection and Read Timeouts for RestClient calls in android
I have a RestService interface with many rest calls which I am using throughout my application.
I am setting timeouts for handling connection and read-timeouts
ClientHttpRequestFactory httpFactory ...
0
votes
1answer
82 views
+50
Exclude Broadcast Receiver from Recent Application List
I have a semi-successful app on the market that uses broadcast receivers for a few of its features. As a request from many of the users, I have successfully excluded a few activities from the "Recent ...
0
votes
1answer
72 views
+100
Using animation on a ViewPager and setFillAfter
I have a ViewPager which I need to move on button press. I use an animation for this.
When I press it, I translate the 'x' for it. I use setFillAfter(true) to keep the new position.
But when I ...
1
vote
3answers
109 views
+50
Is it possible to position a button on top of a table layout as a layer?
I have four buttons tight together to form a square, I am trying hard to figure out how to position a button over the four buttons, in the center so it basically overlaps them. Here is my current ...
-1
votes
2answers
86 views
+50
Android tools abort with a 'segmentation fault'
I've updated to Android SDK revision 21.1 and to Android NDK r8e.
Using Ubuntu 12.10 (inside a vimware on top of a Windows 7 host.)
Every time I run some tool from the platform tools or NDK tools I'm ...
1
vote
0answers
81 views
+50
Can't build multiple Android dex files with Ant from external jars
I'm developing an Android app that requires multiple libraries (for Facebook, Google Maps v2 and Quickblox among others), resulting in a method amount overflow that goes over the 64K limit:
Unable to ...
1
vote
1answer
83 views
+100
Android : Activity Dialog / Dialog disappears automatically
1)Have an application with TabActivity, where in we display the dialog.
2)This display of dialog happens after we get a call back from my engine(NDK C code).
3)Always i make sure we display dialog ...
26
votes
1answer
586 views
+100
How to zoom whole activity on multi touch?
It's easy to zoom images and web views. But I want to zoom a whole activity. How can I do this?
Here, I provide wire-frame:
From this you can understand, what I want to do.
-1
votes
1answer
46 views
+50
how Create setAdapter() for a AlertDialog
i create a CustomDialogBuilder which extends Dialog... i want to create the function setApater().. i create that section but the onclick fuction on the adapter is not working..
my customDialogBuilder ...
2
votes
0answers
55 views
+50
Fragment which is not top most in backstack is resumed
Given the application flow show in the graphic and textually described in the following.
Fragment 1 is the lowest fragment but not in the backstack by setting disallowAddToBackStack.
Fragment 2 ...
0
votes
2answers
48 views
+100
Android - Keyboard not appearing in floating window
I'm writing an application that uses the following code to draw an edittext on the screen over running applications:
WindowManager.LayoutParams params = new WindowManager.LayoutParams(
...
2
votes
0answers
63 views
+50
Intent.ACTION_PICK returns empty cursor for some contacts
I have an app in which one aspect is for a user to select a contact and send a text to that contact thru the app. The app only works with some contacts and fails on others. More precisely:
for the ...
-1
votes
1answer
40 views
+50
Cropping Shape of Square Image Android In App
I want to create an application which allows to resize an image in shape of square (length = width).
I know that it is possible to use the galery to make that in this way:
private void crop(Uri ...
0
votes
3answers
77 views
+50
progress bar remains empty using asynctask - EDIT - dialog never stops loading
I want to have a progress bar while waiting for GPS signal to establish.
I use:
public class GetGPSData extends AsyncTask<Void, Integer, Void> {
@Override
...
0
votes
3answers
92 views
+50
start navigating to position which is stored in database
I have an application where I am getting the latitude and longitude coordinates.
I want , when to press a button to start navigating to that position .
Now , I am storing latitude and longitude in ...
1
vote
1answer
58 views
+50
Debug Lua in a Java project using LuaJava
My project has LuaJava as the script interpreter, for usage in both desktop and android via AndroLua. I want to be able to debug it, but I'm unable to arrange it.
I have tried with an Eclipse plugin, ...
0
votes
1answer
59 views
+50
How to use ActionBarSherlock with AlertDialog.Builder and a Light theme?
Well as the title says, i'm using the actionBarSherlock library and a light theme, and sometimes I need to show a dialog using the alertDialog.Builder class.
Thing is, no matter what I try, the theme ...
3
votes
1answer
80 views
+50
How automatic fragment restore works
When using FragmentActivity it automatically restores fragment state and recreates all fragments.
I know this is done mainly saving the state in onSaveInstanceState and then restored in activity's ...
0
votes
1answer
121 views
+50
Custom Camera App crashes in some devices occasionally
I have made a custom Camera app which has a rectangle in Camera preview and on click it saves the Image inside the rectangle.
I have been able to make it works well on my Device which is Sony Xperia ...
12
votes
7answers
12k views
+50
Limit Decimal Places in Android EditText
I'm new to android and trying to write an app that helps you manage your finances.
I'm thus using an EditText Field where the user can specify an amount of money.
I set the inputType to numberDecimal ...
1
vote
1answer
138 views
+100
Could not find class 'android.webkit.WebResourceResponse' when running HelloCordova on Android 2.2
I tried to follow this tutorial:
http://docs.phonegap.com/en/2.7.0/guide_getting-started_android_index.md.html#Getting%20Started%20with%20Android
and get the following error:
05-08 15:35:59.845: ...
2
votes
2answers
94 views
+150
Android form elements have different sizes on different emulators
Update #1
I observed that setting <item name="android:textSize">14sp</item> as 20sp in /res/values/styles.xml will cause the input elements to appear normally on devices smaller than 5". ...
1
vote
3answers
64 views
+50
Storing and comparing against objects from a database
I am working on an android app that loads in a list of students to display in a list based activity. There are two components to the app. There is a server which responds via xml with the list of ...
0
votes
1answer
50 views
+50
Universal Image loader fails to load images sometimes
I'm using universal image loader and I get quite large numbers of images failing to load for users every day.
I'm using this code to get my errors to analytics.
public void onLoadingFailed(String ...
1
vote
2answers
54 views
+50
Any Alternate method for Class Casting
Following statement is not executing on some devices.
AddEvent act1 = (AddEvent) getLocalActivityManager().getCurrentActivity();
Is there any alternate method for above statement. On some devices ...
0
votes
1answer
34 views
+50
ERROR: dump failed because no AndroidManifest.xml found
When I try to upload an application to android playstore I get the following error:
ERROR: dump failed because no AndroidManifest.xml found
Steps that I took:
new HDD, install clean jre, jdk
...
1
vote
3answers
69 views
+50
Search View uses app icon instead of logo
Android documents explain that app logo is used everywhere when it is defined. But when the search view expands, app icon is used instead of app logo and I can't find a way to show app logo when ...
0
votes
0answers
19 views
+50
Android: Banding on gradient background for navigation bar. setDither not working
For some reason I can't get the background of my navbar to render smoothly. What am I doing wrong here? Here is my main activity xml file:
<RelativeLayout ...
1
vote
0answers
56 views
+50
Listactivity error with jelly bean running device ( SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero length)
I have app consist of listactivity , each row when clicked open activity contain textview and two button one of them open infinite gallery , the other open custom dialog , also i have menu items ( ...
5
votes
0answers
65 views
+50
Xamarin Android: Keep control with Alert Dialog until a button is clicked
We are using a static Alert Dialog to get confirmation from the user for certain actions. In our call to Show() we want to keep control until the user clicks a button so that we can return the button ...
0
votes
0answers
33 views
+100
Transform GPS-Points to Screen-Points with Perspective Projection in Android
Currently I'm writing an augmented reality app and I have some problems to get the objects on my screen. It's very frustrating for me that I'm not able to transform gps-points to the correspending ...
9
votes
2answers
4k views
+250
Android: How do I get GSM signal strength for all available network operators
I am working on a little app to check the signal strength of various network operators in my area. My current operators signal is quite unstable and I want to look into the strength of other GSM ...
0
votes
2answers
47 views
+50
NoClassDefFoundErrror with Google Drive
I've got a project which had Google Drive included and it was all working perfectly fine. Then I performed an upgrade of the Android SDK and Eclipse ADT Plugin and Google Drivie no longer works and I ...
1
vote
2answers
27 views
+50
Extra padding on TextView with HTML contents
I have this TextView:
<TextView
android:id="@+id/issue_journal_item_notes"
android:layout_width="match_parent"
android:layout_height="wrap_content"
...
0
votes
1answer
51 views
+50
Cipher Output and Input Streams
I'm attempting to store some encrypted data in the Android filesystem. I'm getting errors I don't understand and empty files. Please help.
Code:
private Cipher cipher;
private ...
1
vote
1answer
44 views
+50
Access token from my app doesn't work when i try to use it in a fql
I am using fql(mentioned below) to retrieve friends checkins,when i try my query on graph explorer it works fine and gives the required results so this means that there is no problem with the my query ...
1
vote
1answer
95 views
+50
AsyncTask creation causes crash
Having some issues with a custom class that extends AsyncTask. My app is Targeting Android 4.0.3 and the below code works fine for 30+ people testing it. However there are two users that are seeing ...
0
votes
1answer
34 views
+50
Jquery mobile problems in android 4.0.3 Device
I use jquery mobile and bind data dynamically from php json services like this:
$.getJSON("http://www.example.com/test/test_service.php?user_id=55", function(data) {
var n=0;
for (var i in data) {
...
0
votes
1answer
42 views
+50
Google Drive client/server app
I would like to have a client app on Android that takes user input and associated data, zips it up, and stores the data on the user's Google Drive account. Then the client app would share the zip ...
0
votes
0answers
31 views
+100
Creating a compound view from an XML layout
I'm trying to create a compound control from an XML layout.
This is how I do it:
public class CustomButton extends LinearLayout {
private TextView title;
private TextView subTitle;
...
5
votes
3answers
86 views
+100
Unlimited/Dynamic ViewPager in both directions
There is one use-case of ViewPager I've never seen pretty implemented.
ViewPager is more or less static structure. It's not so hard to add Pages to the right side (appending to Model and displaying ...






