Android :: CTS Not Detecting Zoom2 Device / Settings For It?
Apr 15, 2010
I am running startcts script to run cts testtools . I have run emulator as well as my zoom2 device is also connected to /dev/ttyUSB0 port
When I am doing "adb devices" . it is only showing emulator not zoom2 .
List of devices attached emulator-5554 device
What settings required so as zoom2 will also be detected ? I want to run startcts against zoom2.
View 3 Replies
Feb 18, 2010
I am testing an android device with eclair using the 2.1 CTS version. When CTS completes a set of tests and restarts the device a "device disconnected" messages appears on the CTS console. However after the device completes the restart to the android home screen CTS does not detect that the device is back online. I have to physically disconnect the USB cable and re-connect it. Do you think this is a device side issue or a USB driver issue on the Ubuntu machine (intrepid) where I am running the CTS?
View 2 Replies
View Related
Apr 1, 2009
Does anyone know how to detect what primary non-touch navigation method (trackball, dpad, wheel, etc) a device is using within the code?
I know that an app can structure the /res/ folders to detect it like this: /res/ drawable-nonav drawable-dpad drawable-trackball drawable-wheel
But what if I want my app to behave differently depending on the navigation input method- is there a way to do this in the code?
View 3 Replies
View Related
Mar 22, 2010
I am developing a video rating tools which use Android's MediaPlayer class to playback the video sequences. I used the APIdemo at Android SDK to playback my encoded sequences but the picture stalled at the first frame on the emulator. Since I didn't have the commercial Android phone so I don't know whether this problem comes from my video coding profiles or the emulator itself. Here are the two sequences I used to test:
http://www.megaupload.com/?d=5I4AGSCX [url] I use x264 to encode, with baseline profile and bitrate=400k, fps=30or25.
And by the way, how can I install an apk package to the Zoom2 MDP, besides using the adb tools. I am wondering there's someone who is familiar with Zoom2 and Android so I put the question here.
View 5 Replies
View Related
Sep 10, 2009
I am working on android for omap zoom2 target. omapkernel - 2.6.27 android - RLS25.6
When try to do Audio play back from Android UI on zoom2 board, WAV & AMR-NB - default PV software codecs are selected and playback is fine. MP3- Hardware codec has been chosen by PV player, player does not come up and playback is not happening.
Enabled PV & OMX logs and collected logs while playing MP3 clip. From logs found that LCML Codec/DSP Bridge Initialization is failing. code...
View 2 Replies
View Related
Jun 14, 2010
I need to my application settings in the settings of the android device. I need to add one entry to set my application settings in the android device. How can i do that one using android application.
View 7 Replies
View Related
Apr 7, 2010
I know it's possible to have multiple languages in a single application through the res/string and depending on Locale.Here is a case http://stackoverflow. com/questions /2078289/android-controling-the-user-language Now how can I change the language in the phone ?Like I'd do by Menu > Settings > Language & Keyboard > Select locale > languages Is there some real code to access to these settings ? Or should I create intent for a shortcut to the language settings.Please post some code Edit : With Locale class developer.android. com/intl/fr/reference/java/util/Locale.htmlThe constructor is at least Locale(String language)The input is language.How can you retrieve the current language used on device ?
View 3 Replies
View Related
Dec 5, 2009
I'm stuck on trying to change system settings that are not standard android ones, specifically trying to enable/disable the auto backlight setting on the HTC Hero in code,
I can't see anyway to find out the string I need to use when doing Settings.System.get.
View 3 Replies
View Related
Oct 17, 2013
I have a Android Tv device Rockchip V8.
Yesterday I was using an app and all of a sudden it went to the main menu, anyways I shut the device down and restarted it and now all my settings went back to factory settings. I can still see in explorer that the apps and settings are there but I don't know how to get it all back the way it was without having to reinstall everything.
View 2 Replies
View Related
Apr 5, 2014
At a sudden point my device battery settings are not working. I can still enter in the battery menu and see it, but I can't change anything. Can this be a side effect of rooting the device?
View 7 Replies
View Related
Aug 2, 2009
Though I'd post the correct settings for users in the uk with hotmail addresses that want to configure POP3 on their Hero.
Incoming Settings
Email address = Your email Address
Username = Email address again
POP Server = pop3.live.com
Security type = SSL
Server Port = 995
Outgoing server Settings
tick login required
SMTP server = smtp.live.com
Security type = TLS
Server Port = 25
View 19 Replies
View Related
Apr 6, 2010
I took my Hero to Sprint because I was having picture mail and sound issues. They told me to wait for the 2.1 update that is coming 4-9. If I believe this, I'd better unroot my phone. I have read about problems with unrooting. Does anyone have any reliable instructions as to how to put my hero back to factory settings?
View 35 Replies
View Related
Mar 19, 2010
I created a project, probably as an Android project without thinking. I then did a lot of work bringing in source, etc. but it is not an Android target. However, when I start up Eclipse, it keeps popping-up a dialog reminding me that I have not established the Android device settings. How can I make it stop -- without restarting the workspace?
View 1 Replies
View Related
Jan 8, 2010
Ive been trying to find some way in JAVA-code to determine if the device has "Mobile network" enabled in Settings. I have been looking around, but haven't found the answer yet and since I know that StackOverflow is a great place, here I am =)So, any tips on how to get it?
View 1 Replies
View Related
Jul 7, 2010
I have a single bitmap with several individual pictures in (each one is an option) and I would like to detect when the user touches these pictures. I am using the event.getX and event.getY to detect where is pressed, I know the top left X Y and bottom right location of each of the pictures. What is the best way of detecting which one is pressed? (i.e. tieing up the event press and which picture has been pressed?
View 2 Replies
View Related
Jun 3, 2009
There are return values and such that allow handling if SensorManager sensors and location providers aren't available, but what about the camera and microphone for audio recording? Is there a way to detect those in software, or are we just to assume that every device running Android (even the rumored set-top box) is going to have a camera and microphone and try to use them?
In the case of the camera, it would seem that Camera.open() returning null would indicate the lack of hardware. I don't know if that assumption is valid or not, though, considering it isn't documented as such.
In the case of the microphone, though, I don't see anything that could possibly be checked. The same goes for the camera if you're wanting to do video with the MediaRecorder class.
View 2 Replies
View Related
Sep 2, 2009
I'm trying to figure out how my Activity can detect if it was launched by an alias as opposed to by the main icon.
Is it possible to do this?
CODE:............
alias1 and alias2 appear as expected in the Launcher, but I don't see any way in multipleEntryPointTestActivity to tell which of these icons launched the application.
View 2 Replies
View Related
Oct 31, 2010
I have hooked in a ScaleGestureDetector to an OnTouchListener as instructed in Android documentation. For some reason the ScaleGestureDetector does not always detect end of a pinch gesture. This happens mostly when pinching fast from large to small.
The effect is that after I have released both fingers the detector does not fire the gesture end event. If I touch the screen with one afterwards it still thinks I'm continuing the scale gesture (keeps firing onScale events). I have to do another gesture to get the detector to fire end event.
I have added logs to the OnTouchListener and when the scale gesture gets stuck I still get motion events normally when using one finger and event.getPointerCount() is 1.
I have made sure that I don't have any other listeners intervening. View that has the onTouchListener is not the only view on screen but this effect happens also when I'm very careful to begin and end the gesture inside this one view.
Is there any way to improve the end detection?
Or if there a way for me to manually set the ScaleGestureDetector to fire onScaleEnd and change scaleGestureDetector.isInProgress() to false?
View 1 Replies
View Related
Nov 26, 2009
Is there a way to detect whether a image was pulled from the folder res/drawable or res/drawable-hdpi?I am trying to save space and have a program that is using some hdpi bitmaps and some mdpi bitmaps. When an image is placed in drawable-hdpi it automatically replaces the mdpi version. I need to know when this happens beacuseI am using bitamp.resize() to fix the image sizes.The problem is that the getDensity() method (in the if statment after the && ) returns the screen density and I need the original bitmap density. This allays matched the screenDPI and returns false. I have a lot of artwork and do not want to duplicate everything for every size screen. I am trying to just create hdpi bitmaps for the ones that don't look good when re-sized.
View 2 Replies
View Related
Oct 20, 2010
I'm trying to find out if the user is still within range of his own area code. Detecting roaming doesn't solve the problem since the user may still be in the same network with a different area code. I thought about getting the user's coarse location to find the city he's is in but this approach needs Internet access and might not be fast enough (this is done as the user is making a call and needs to finish before the call is made). Is there any way I can do this with just the info from the cellular network?
View 7 Replies
View Related
Jun 6, 2009
I am writing a Security-oriented application for Android that is supposed to detect abuse of SMS sending.
In my work I encountered the problem of not being able to detect outgoing SMSs sent not through the use of conventional applications, i.e. merely by using SMS Manager's sendTextSMS method.
The conventional SMS applications add the contents of the sent SMS to the SMS Provider after they send it but I can assume that malicious applications will not do that... and neither will they provide the pending intents to the sendTextSMS method to be broadcast upon sending/ delivery.
My question is, is there any way I can detect the sending of the SMS without relying on the SMS provider?
View 2 Replies
View Related
Oct 16, 2010
As far as i know there is no way to detect when an outgoing call is accepted at public API level. I can detect incoming calls (with PhoneStateListener), outgoing calls by NEW_OUTGOING_CALL intent, but i can not find a way to distinguish the dialing and connected phone states.
View 4 Replies
View Related
Oct 11, 2009
I have an SQL which uses something like "LIMIT 100". If the cursor returns 100 rows, is there an efficient way of distinguishing between whether the LIMIT caused it or not? I suppose I could just call LIMIT 101 instead but I was hoping for a nicer way.
View 2 Replies
View Related
Aug 27, 2010
I was trying to come up with an app that works on the call that a user gets on his phone. For this I wanted to know whether it is possible for me to get intimated when a call comes to the phone and is it possible to intercept the same.I tried to go through quite a few forums but could not get conclusive evidence on how to achieve this.Does anyone have an idea whether this is feasible and if so then how?
View 2 Replies
View Related
Apr 1, 2010
I am working on an app that uses a Socket to connect to a controller over TCP. The protocol library was written in Java and I am implementing it in android via a Service. where the Connection class is a Thread that handles the communications with the controller. It's where the Socket lives.I'm using the Preferences mechanism to store the IP and Port. If I feed the Socket the correct IP and Port, the Connection Service works beautifully. However, I am trying to simulate a user entering the wrong information and having the connection fail. The ultimate goal is to present a dialog and offer the ability to "reconnect" or "update settings". However, when I enter a wrong Port number, the application simply hangs.I was under the impression that Threads executed concurrently so I've tried moving the call to start the Connection Service to a Thread, but it still hangs the application.
View 3 Replies
View Related
Nov 21, 2010
I am trying to detect when the physical Menu button on my Android phone has been pressed.I though the code below would work but it does not.Where am I going wrong please?
View 1 Replies
View Related
Feb 9, 2009
I am developing an application on the android platform. The app performs continues WiFi scan and sends information about the list of visible access points to server. However, I need to remove all the Ad Hoc points. The android.net.wifi.ScanResult api does not seem to have any information on "mode" of the network. Is there anyway I can distinguish a given point is Ad Hoc or Master?
View 3 Replies
View Related
May 26, 2009
i'm trying to write a program whichs detects the different states of the phone and mke a different noise in each case.There is a problem that i really don't understand. Please someone can take a look at it and try to explain to ma what's wrong ?
View 5 Replies
View Related
Oct 11, 2010
We are trying to automate our QA process. We make wallpaper apps for Android. Once an app is installed, is there a way to figure out if the application is running since these have apps don't have a main class which we can check by doing a ps on android shell. I think keyboard/language apps would face a similar issue
For eg. If I install tetris and run it. Its main package will show up in shell ps. xyz.abc.Tetris. But the same is not true system apps in android.
View 1 Replies
View Related
Aug 13, 2009
I want to be able to detect where a user has long pressed on my Map Overlay.The idea being to get the GeoPoint of the location the user pressed.I can detect where a user taps, but cannot find how to detect a long press.
View 5 Replies
View Related