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
Spinners two bigger. They don't fit inside the screen
With this layout:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/user_pro_main_view"
...
0
votes
0answers
15 views
java.net.SocketTimeoutException: Read timed out issue
07-18 18:57:24.687: W/System.err(7031):
java.net.SocketTimeoutException: Read timed out 07-18 18:57:24.773:
W/System.err(7031): at
...
0
votes
1answer
13 views
Adding Google-Play-Services to library project
I'm working on a map library and I'm using Google-Play-Services. So Far so good. Problem is this:
I include Google-Play-Services library project in my map library. Tested it using a client ...
0
votes
0answers
7 views
Invalid use of incomplete type in android ndk using c++11 std::async
I tried to use the following function to check whether std::async is supported in android ndk with Eclipse along with cygwin in windows. The function I used is the following
Machine: 64bit win 8 with ...
0
votes
0answers
8 views
Trying to add facebooksdk.jar file to my project
I have installed facebookSDK and the sample apps. The sample apps all copilr and run fine.
I tried to make my own app. The only thing I did was creat a new android project, test it, runs fine. ...
0
votes
0answers
6 views
Trace the location only on Road in Google maps V2 android
I want to show the current location of the user only on road(not beside of the road) while moving. I have used the LocationManager to get the current location. But sometimes I am getting the location ...
1
vote
0answers
14 views
android studio java.lang.NoClassDefFoundError:
I've made pretty much a fresh project. I added in the gson library by google to my projects /libs directory and added it as a library. I also added it into my build.gradle as
compile ...
0
votes
0answers
19 views
How to remove ListView Item using arrayadapter and notifyDataSetChanged
I have ListView in which I am setting ImageView,2 TextView and 2 ImageButton. ImageButtons are for add and remove listItem.
Here is my code...
Helper.java
import android.widget.AdapterView;
import ...
0
votes
0answers
5 views
Fastest way to optain a greyscaled bitmap from Android Camera (Preview)
i have a performance issue. Im currently working on a realtime app, which needs to process camera images in like 10 frames per second.
It turns out that my bottleneck is currently the conversion to ...
0
votes
1answer
18 views
BufferedWriter.newLine() is not working in Android
I dont know why it is happening.
BufferedWriter writer = new BufferedWriter
(new FileWriter("mnt/sdcard/Menu.ini"));
for ( int i = 0; i < AppItem.length ; i++)
...
0
votes
0answers
7 views
Android Bluetooth PIN pairing without user interface on ICS 4.2+
There are similar questions to this here already, but the answers and suggestions relate to older versions of Android. I understand that the bluetooth stack has been completely revised from 4.2 ...
-2
votes
0answers
14 views
How to use Apache POI on android?
I download Apache POI and add this jar in project by android studio.
Please help let me know how to start?
0
votes
2answers
35 views
Date and time to milliseconds in Android
I am trying to convert given date and time to milliseconds. I am not able to achieve it.
Below is the format of date and time
02 - 07 (DD - MM)
08:50:00 AM (hh mm ss a)
Here is what I have tried:
...
0
votes
0answers
4 views
Android XMPP client using SASL External Authentication
I am writing an XMPP client for Android. I tried the following
1. asmack - This did not work as it seems to be supporting only PLAIN and DIGEST-MD5. Look SaslClientFactory.getMechanismNames.
2. smack ...
-2
votes
3answers
38 views
Run a process in background in Android
I'm developing an app that has to connect to a server once every hour. This happens without the user having to open the app.
Can apps run in the background? Meaning if someone using my app is ...