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 [Android Enthusiasts](http://android.stackexchange.com)
0
votes
0answers
6 views
Starting Java Android Development
(I am aware that these questions are repeatedly asked.)
I want to start develop some simple apps for Android, I already know Java, Swing (probably not useful in this case) and have basic knowledge in ...
0
votes
0answers
9 views
To do list example doesn't work for me
The following example doesn't work in the right way for me. As per the code, it should add the entry in the ListView when "ENTER" key is pressed. But it just enters the new line in the EditText field ...
0
votes
0answers
10 views
Application is not taken layout-sw600dp-land folder xml file?
I am developing an application for smartphones and tablets devices. In tablet device purpose using layout-sw600dp-port and layout-sw600dp-land folders,in app running portrait taken folder correctly in ...
0
votes
0answers
8 views
Touchscreen module: Android Kernel
I am working on a project in which we need to obtain the x, y coordinates and pressure for touchscreen lock pattern through android kernel programming and store them in a database.
We have searched ...
0
votes
0answers
4 views
How to make takeScreenshot() work on Robotium when calling JUnit via command line?
I am facing a problem with takeScreenshot() on a not-rooted phone.
When executing JUnit via command line, e.g.
adb -s 0123456789ABCDEF shell am instrument -w -e class ...
0
votes
0answers
6 views
Deque<E> added in API level 9, no compile error or warning for api level 8 project
I'm havin problem with Deque<E>:
http://developer.android.com/reference/java/util/Deque.html
The page says: Added in API level 9
but I'm compiling my Android project with:
<uses-sdk
...
0
votes
0answers
4 views
Join multiple entities in orm lite
I need to join multiple entities into a single table using ormlite in android. Can anyone help me with this?I have tried using DatabaseFieldConfigs but it needs some hardcoding. Is there a way to ...
0
votes
0answers
9 views
Animation in list item
How to animate a listview row item on click. I want when I click on list item, an another list item view with some buttons should be animated over that particular list item. Is this possible.
0
votes
0answers
14 views
Updating progress bar in listview items
I have a listview with a progress bar on each listview item. Each progress bar represents downloading a file. What is the best approach for updating the progress bar on each item individually.
...
0
votes
1answer
9 views
Crouton min API level Issues
I'm trying to use the library but there's this line in Manager.java (line 215)
croutonView.getViewTreeObserver().removeOnGlobalLayoutListener(this);
that I don't understand how to fix. Eclipse says ...
0
votes
1answer
18 views
Get current address android?
How do I get the current address of the android phone using GPS or Network(if gps isn't avidibale) ?
this is my code( that doesnt work properly):
try {
LocationManager lm = (LocationManager) ...
0
votes
0answers
12 views
setting application language from shared prefernces
i just finished my first android application,
but i still have a little problem to fix:
i made my app over two languages; if my phone is set up to run in french the app is being displayed in french ...
0
votes
1answer
10 views
Worklight Push Notification does not work
I was trying to set up the sample project for Worklight push notification on Android here. When I loaded the app into my HTC One X, only the first two buttons isSubscribed and isSupported are ...
0
votes
1answer
19 views
how to make toolbar or popup panel that autohide in android application
Hello everyone
I want to create an auto-hide toolbar that appears during drawing and navigating inside the application
I'm trying to do something like this picture :
I'm confused what to use and ...
0
votes
1answer
9 views
Release memory by using correct method in JNI to prevent memory leak
I have some questions for below codes ! Do I need to release mConnectEnv, s_jObj, jmethodConnect ? Following my infos that I searched in google. I don't need to release jmethodConnect, how about ...