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
Find dynamic views on screen in Robotium
I am testing my android application using robotium, but now I am facing a problem. Much of the part of UI of application is manipulated using response of server i.e application talks with web servies ...
0
votes
0answers
7 views
Cannot get ActionBarShirlock library to link to my project
I think I have successfully created a library project ActionBarShirlock (4.3.1). Then when I attempt to add it to my app by clicking properties > android then clicking on the "Add" button, I see a box ...
0
votes
0answers
2 views
PhoneGap ignores viewport tag with specific width set?
I have developed a webapp and successfully used the viewport element to fit the app for different devices. On iPhone for example i used this one:
<meta name="viewport" ...
-2
votes
0answers
18 views
application not working properly in emulator
Whenever I try to run my android application, it gets crashed automatically. But when I checked this application in another system it is working awesomely. I have also checked it in different ...
0
votes
0answers
3 views
why jd-gui lost some info when decompile a .class file?
i've decompiled a class by jd-gui below, but i can't understand how the "linearLayout" be initialized, why "linearLayout.startAnimation(animationset)" can be invoked, the LockScreen member ...
0
votes
0answers
9 views
Open youtube app from my android app. How to pass the id?
I am quite new to Android. I need to make an app that displays a bunch videos in an overview that gets retrieved from a API on the internet
Here's what the API looks like:
...
0
votes
0answers
7 views
Dont't draw correct canvas in device Android 4.2.2 with Sencha
I'm developing an App with Sencha Touch 2.
In one part of the App, I draw using canvas. It's works correct on my iPad 4 with iOs 6.1, and It's works correct on other device with Android 2.3.3.
But, ...
0
votes
1answer
9 views
Android: Intent Extras only get caught when app fully force closed
In my app I have a service that shows a Notifications, where when clicked does open an Fragment Activity intent with Extras..
Those Extras I have handled in the OnRusume to assign to a string
public ...
0
votes
2answers
9 views
How can I create a custom dialog with two datepicker?
I just started to learn Android as a hobby and I would like to create a dialog with two datepicker
final Dialog dialog = new Dialog(this);
dialog.setContentView(R.layout.data_picker_dialog);
...
-1
votes
0answers
11 views
Populating multiple layouts on single activity android
I need some help with the below code. I trying to create a quiz application, it has a question and 5 options, I am trying to populate different questions and options on the same screen when the user ...
0
votes
0answers
5 views
Android TCG game
I am starting to develop an android trading card game, I have love to ask a couple of questions and recieve some feedback from more experienced developers, lets get on with my questions.
1 - How can ...
0
votes
0answers
8 views
android connection exception/lost manager
Background
So I've inherited an android application that in various places connects to web services to send or receive information.
As it is right now, when a connection fails the user of the ...
-2
votes
1answer
17 views
Android IDE for application devlopment
i am new to android and i am using the Google ADT IDE for application devlopment, which is built on eclipse. However, i think there are very less widgets avaliable there and also i have faced few ...
0
votes
0answers
14 views
I dont see application on google play after 2 days of publish date.
I published an app on google play and publish perfect.
I also see the status of app as published.
But i can't find it no where on google play store.
(Trying true PC)
I also tried direct link but ...
0
votes
0answers
3 views
SlidingMenu and Android-PullToRefresh libraries conflict
I am currently using 2 libraries in my Android project:
SlidingMenu: https://github.com/jfeinstein10/SlidingMenu
Android-PullToRefresh: https://github.com/chrisbanes/Android-PullToRefresh
With ...
0
votes
0answers
6 views
How to implement swipe on radial menu to make the menu move out and in of the screen
I have implemented radial menu functionality in my android app. It is semicircular radial menu which is present in the left hand side of the screen.
Now I want to implement swipe on it so that I ...
0
votes
0answers
4 views
How to make a customized component like GridVIew android
I can use the Radiobutton controls and make some invisible and visible,Can control the rows and columns
1
vote
5answers
28 views
How to pass a double in .getText()
I'm trying to create an app that converts celsius to Farhenheit. I want to pass float in .getText() but I'm unable to do so, It is giving me error which say cannot invoke .getText() on the primitive ...
0
votes
1answer
17 views
Sliding Menu getting BaseContext
I am using SlidingMenu library provided by jfeinstein10 [here] (https://github.com/jfeinstein10/SlidingMenu) , and I would like to inflate a certain number of linearlayouts with textviews in them ( ...
0
votes
0answers
5 views
AlarmManager setRepeating task failing with error
I am scheduling a repeating task using the AlarmManager and the following code. The task appears to schedule correctly because I get an error when the millis are hit.
Intent i = new ...
0
votes
0answers
3 views
Unable to dial using rild-debug?
Im trying to use dial using rild-debug socket. but when im doing it sometimes the modem crash occurs and other times rild crash occurs. Im unable to get through the problem even after disabling the ...
0
votes
0answers
6 views
Update ListView with adapter (notifyDataSetChanged) - Performance
I want to update a list if the number picker changes. My problem is, that if i scroll the number picker it looks a bit irregular and not smooth... Therefore I use the following solution in the moment:
...
0
votes
1answer
17 views
Android Listview display multiple items per screen
I've created a simple app that sends a search term to a php script, reads the json response generated by that php script based on the search term, processes the json response and loads the json nodes ...
0
votes
1answer
23 views
How to keep sceen on in Android?
How to keep sceen on in Android?
Intent callIntent = new Intent(Intent.ACTION_CALL);
callIntent.setData(Uri.parse("tel:" + Uri.encode("+86 212312142")));
startActivityForResult(callIntent, 100);
I ...
0
votes
1answer
9 views
How does android style cascade?
I'm new to android development. And i'm confusing about the cascading mechanism of android style. If i want to set the textColor of a actionBar. I need to do it like this.
<style ...
0
votes
1answer
8 views
android noise effect on bitmap
I am writing some function to add noise effect on bitmap. I found similar question: Add noise effect to a drawing
Bitmap outputBitmap = Bitmap.createBitmap(bitmap.getWidth(), bitmap.getHeight(), ...
0
votes
3answers
13 views
OnTextChang for edittext in android?
I have 8 edit texts each allow only one character.when user enter something it automatically moves to next edit text. It's work fine by using onTextchanged.But i need to move backward also like when ...
0
votes
0answers
10 views
Does Alpha/Beta apk publishing works unpublished app in Google Play?
I did setup and uploaded new apk for alpha release as per mentioned here by creating Google Group and adding that group for Alpha release. But alpha test accounts still not able to download ...
0
votes
0answers
10 views
rotation and scaling and move using multi touch in android
i want to rotate and scale and move the image on multi touch event, it seems to be working, but it's not working perfectly. I really want to fix my wrong code up, so please help me. my code is there
...
0
votes
2answers
30 views
Can't get Selected Item Index in custom ArrayAdapter on my ListView
I have problem with my Android project, because I can't get selected item index from my List with my own ArrayAdapter. I've tried few examples from tutorials but they don't work. What is the solution?
...
0
votes
0answers
15 views
Animation running in background?
I'm quite new in programming so this might be a simple question but i can't find the answer to it. I've made an animation and started it by anim.start(); then I make the visibility of the image view ...
0
votes
5answers
37 views
What do 'this' and 'setContentView' mean here?
I was trying to deploy a small android app, where in , i was trying to display "Hello World" to the user .
The lines of code that i applied here in were (a bit from internet resources) :
...
0
votes
0answers
9 views
db4o getting specific objects android java
I'm making an android project and don't have much experience in Java.So I'm now able to store objects in db4o database, I can also retreive all of them. But if i would like to get a list of specific ...
0
votes
1answer
16 views
Is there any way to avoid Navigation Drawer to be closed when clicked?
I'm working with the new Navigatino drawer from Google and I'm trying to use some sort of toggle buttons inside, but everytime I click on one of these buttons I cannot avoid the menu closing.
Is ...
0
votes
1answer
14 views
How to get inbox sms in pdu format in android
Can someone let me know if there is a way to get the inbox sms in pdu format?
1
vote
2answers
34 views
cannot convert from android.app.FragmentManager to android.support.v4.app.FragmentManager
I am creating an app using Fragments for tablet.I have so far created some buttons on the left side and the fragments appear on clicking the buttons.
But i am experiencing error in my ...
-1
votes
0answers
16 views
Many of my Android users cannot login with Facebook
I have an android application, and we are using the new facebook sdk (version 3.0.1).
Many of my users cannot get in and login with facebook.
After clicking on the facebook login button, it opens the ...
-4
votes
0answers
16 views
Android listview and spinner how to do?
im doing an APP for Android with a list of Series of TV and who there's a Listview.When i click for example in "How i meet your mother" the item goes to an other Activity who see the Synopsis and a ...
0
votes
0answers
13 views
Using Android Notification in 2.2 causes NullPointerException
I have an app which must run on Android 2.2 and higher. I've got a service that uses a notification to let the user know it's running via a Notification. (I use NotificationCompat.Builder to create ...
0
votes
1answer
9 views
RTSP Url of video not working in web view
I am creating video playing app from Youtube. I have extracted Video Data using gdata API and got 3gp url for format 1,6. This i got extracted from Media:Group --> Media:content element.
My Device ...
0
votes
2answers
15 views
Adjusting layout Orientation with the device orientation in JAVA not XML
I wanted to know how i could change my LinearLayout orientation according to the device Orientation in JAVA, i found how to do it by the XML way with layout and layout-land but i didn't find how doing ...
0
votes
1answer
16 views
Spamming EditText cause freezes
I have a kind of quantity field with + and - buttons.
When the user clicks on those buttons it increments or decrements an integer inside an EditText. I use an EditText and not a TextView because ...
0
votes
0answers
16 views
android - incomplete async task with fragment
I have a content fragment which contains a gridview and populating gridview with async task.
I have three button which creates same fragment with different values and when button 1 creates fragment ...
-1
votes
2answers
23 views
java swing compiler for programming on android tablet
Any IDE is available for android tablet to run the java swing?
Currently i am using Android Java Editor IDE for Programming in android.
But it's not compile the swing programs.
Which IDE is compile ...
1
vote
0answers
18 views
Transform Latitude,Longitude-Position on screen in augmented reality app
This is my first post on this forum and I'm very new in programming. I want to build an application where I can see exactly where some gps-values are on my phone. I know a lot of applications, like ...
0
votes
3answers
32 views
Display emoji with TextView
I don't know how to reveals some text including emoji character with TextView. Please suggest me how to convert the emoji character to image.
Thanks in advance
0
votes
1answer
34 views
Send and forget library for Android
When I program apps, usually I need to do something that can fail (the most typical is send something to a server), many times the "send and forget" would be the best option (or a send and forget with ...
0
votes
3answers
37 views
How can I stop media player in another activity?
I start mediaplayer like this:
if (mp != null) {
mp.stop();
mp.reset();
mp.release();
}
mp = MediaPlayer.create(this, R.raw.background);
mp.start();
How can ...
0
votes
2answers
25 views
How can i maintain sq-lite data. When user clears data from application Manager
In my android app i use SQLite database for storing and retrieving data.
When user clear the data from application manager the data will be cleared.But my requirement is when user clear's data from ...
0
votes
4answers
34 views
import a library into my project
I made a project and I want to use the slideMenu library but when I import it the package.R class will be undefined because the attr.xml that found in library res/values. like import ...





