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
2 views
HOW TO USE THESE SERVICES IN ANDROID PLEASE TELL ME I HAD TRIED EVERYTHING BUT COULD NOT MAKE IT?
{SourceName}
{Password}
...
0
votes
1answer
10 views
Your post request is not being received quickly enough please retry
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost(
"http://xxxxxxx/geo/getlocation.php");
MultipartEntity reqEntity = new ...
0
votes
1answer
13 views
Which is better store photo as byte array or store photo as bitmap in object
I want to store photo in object , which is better ?
1- store it as byte array
2- store it as bitmap
I am cuurently using byte array
0
votes
1answer
23 views
How to get an Enum using its value
I'm developing an Android application:
I have this Enum:
public enum Gender
{
male (0, MyApplication.getAppContext().getString(R.string.male)),
female (1, ...
0
votes
1answer
15 views
Getting no such column in the table
get an exception no such column but actually column data is present in the database![enter image description here][1] am unable to catch that exception can any one help me
07-13 09:17:41.720: ...
0
votes
0answers
12 views
Android, stretching three images horizontally doesn't work on 7" devices
My following piece of code is working correctly on small screen devices such as 3.7", 4" and 4.6" devices. This is footer menu that contains three images at the button screen.
When I launch the app ...
0
votes
2answers
20 views
How to timeout an AlertDialog in Android?
How can i handle timeout in an alertdialog. It has the standard yes/no button but i want to call the no button code if the user doesn't press anything in 5 minutes.
I've looked at the class in Android ...
0
votes
0answers
3 views
Explicit render calls using RENDERMODE_WHEN_DIRTY, performance gain for games?
In the process of creating a game for android, I stumbled into a bit of uncertainty.
When creating the drawing of the graphics for the game, would it be best practice to implement explicit calls to ...
0
votes
0answers
8 views
Encryption dont work On android 4
I use crypto for encryotion and decreyption data , and use
SecretKeySpec skeySpec = new SecretKeySpec(raw, "AES");
Cipher cipher = Cipher.getInstance("AES");
this aloghoritm work on all verjons of ...
0
votes
0answers
30 views
why toast message doesn't appear in my application at item clicked?
this is my code for a simple spinner ,i wanna to show a toast message at any item clicked but it doesn't work,and i don't know where the logical error ,,any help please :
this is my code
public void ...
0
votes
1answer
8 views
How to manage connection lost with HttpURLConnection?
I have a Service that manages downloading tasks using using HttpURLConnection.
I use a custom isNetworkAvailable method before performing any HTTP request, but I'm wondering how to manage connection ...
0
votes
0answers
8 views
Android power saving mode blocks broadcast receiver from being processed
It seems that on some devices, that have Power Saving mode switched on, broadcast receivers are not fired. I have the following code in my broadcast receiver
Vibrator v = (Vibrator) ...
-1
votes
0answers
7 views
macro which will arrange the tab as per “master tab”
may I ask your help please.
I have excel file having more than 40 tabs like greece, germany, UK, france etc. In the same file I have a tab named as "master" containing the names of all the tabs from ...
0
votes
2answers
16 views
File Explorer in Android Studio
Can anyone tell where the file explorer is located in android studio ?
I tried to search in windows menu but there isn't any option like "show view" that used to be in eclipse.
-1
votes
0answers
12 views
interaction between two android apps with different users
I'm trying to build a modern restaurant app where the waiter gets the information from the customer (menu lol) and sends it to the kitchen. The kitchen uses the same app but on a different device. The ...