Android :: JmDNS Successful On Simulator But Fails On Phone

Dec 31, 2009

I'm attempting to use JmDNS (zeroconf / Bonjour) to resolve a local network hosts IP address. JmDNS succeeds on the simulator, but fails on the phone. The phone is an HTC Magic (from the Google I/O conference). Both are running Android 1.5

Android :: JmDNS Successful on Simulator but Fails on Phone


2.1 Update :: Upgrading Successful / Still Android 1.6 On My Phone

Nov 19, 2010

I am facing a strange problem with my xperia x10 , when i first installed PC companion it told me there is an update so i did everything the right way but when i turned on my phone nothing changed and i checked the firmware version and it's still1.6 . But i noticed some new appliations in my menu that's all . I did the update many times after that despite PC companion telling me that i am uptodate and still nothing change

View 5 Replies View Related

Android :: Phone Call Simulator Application

Oct 28, 2010

Suppose I wanted to design a cheap little app which lets you schedule fake phone calls to yourself, along similar lines as this app:
http://magictap.net/fakecalls/

I'd imagine using an AlarmManager would be suitable for this purpose, the question is how to generate a fake incoming call screen, complete with the slide to answer call option. My initial approach, the AlarmManager should launch a PendingIntent. However, I'm not sure where to go from here, in particular to get an Activity started which displays the fake call screen.

View 4 Replies View Related

Android :: Real Time Phone Simulator On PC

Jul 28, 2010

After a round of hassle (many thanks to sontaikle), finally i managed to do some screen capture from my Android but right now I am thinking about this. Is there any way I can do a REAL TIME phone simulation on my PC. Its alike TV output from phone to projector (Galaxy S can do that) but I have other Android which have no TV output function from the phone, so I wonder if I connect the phone to PC and get the real time screen output (few second lagging is ok for me as well) to PC than I can project it out via projector during discussion, presentation. I have tried this Emulator, too bad its doesn't project that on the phone on PC. How to install Android SDK and play with Android 2.0 in the emulator - Android and Me

View 1 Replies View Related

Android :: Application Stopped Unexpectedly On Phone But Not On Simulator

Mar 8, 2010

I have an MapView app downloaded from Internet, when I tested it on the simulator, everything is fine, but when I installed it on my phone, the app stopped unexpectedly. Here is the code

public class CurrentLocationWithMap extends MapActivity {
MapView map;
MapController ctrlMap;
Button inBtn;
Button outBtn;
ToggleButton switchMap;
@Override protected boolean isRouteDisplayed() { return false;
} @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState);
setContentView(R.layout.main);
map = (MapView)findViewById(R.id.myMapView);
List<Overlay> overlays = map.getOverlays();
MyLocationOverlay myLocation = new MyLocationOverlay(this,map);
myLocation.enableMyLocation();
overlays.add(myLocation);
ctrlMap = map.getController();
inBtn = (Button)findViewById(R.id.in);
outBtn = (Button)findViewById(R.id.out);
switchMap = (ToggleButton)findViewById(R.id.switchMap);
OnClickListener listener = new OnClickListener() {
@Override public void onClick(View v) { switch (v.getId()) { case R.id.in: ctrlMap.zoomIn();
break; case R.id.out: ctrlMap.zoomOut();
break; default: break; } } };
inBtn.setOnClickListener(listener);
outBtn.setOnClickListener(listener);
//switchMap.setOnCheckedChangeListener(new OnCheckedChangeListener() {
@Override public void onCheckedChanged(CompoundButton cBtn, boolean isChecked) {
if (isChecked == true) { map.setSatellite(true);
} else { map.setSatellite(false); } } });
LocationManager locationManager;
String context = Context.LOCATION_SERVICE;
locationManager = (LocationManager)getSystemService(context);
//String provider = LocationManager.GPS_PROVIDER;
Criteria criteria = new Criteria();
criteria.setAccuracy(Criteria.ACCURACY_FINE);
criteria.setAltitudeRequired(false);
criteria.setBearingRequired(false);
criteria.setCostAllowed(true);
criteria.setPowerRequirement(Criteria.POWER_LOW);
String provider = locationManager.getBestProvider(criteria, true);
Location location = locationManager.getLastKnownLocation(provider);
updateWithNewLocation(location);
locationManager.requestLocationUpdates(provider, 2000, 10, locationListener);
} private final LocationListener locationListener = new LocationListener() {
public void onLocationChanged(Location location) { updateWithNewLocation(location);
} public void onProviderDisabled(String provider){ updateWithNewLocation(null);
} public void onProviderEnabled(String provider){ } public void onStatusChanged(String provider, int status, Bundle extras){ } };
private void updateWithNewLocation(Location location) { String latLongString;
TextView myLocationText;
myLocationText = (TextView)findViewById(R.id.myLocationText);
if (location != null) { double lat = location.getLatitude();
double lng = location.getLongitude();
latLongString = "Latitude:" + lat + " Longtitude:" + lng;
ctrlMap.animateTo(new GeoPoint((int)(lat*1E6),(int) (lng*1E6)));
} else { latLongString = "Position not found";
} myLocationText.setText("Current location: " + latLongString);
} }

View 7 Replies View Related

HTC Eris :: Successful Rooting With 2.1v3 / Until I Turn Phone Off

May 8, 2010

Twice now, I've successfully used AR recovery routine to install the 2.1v3 (rooted) on my Eris, (previously running the original "v1" root).Install was a breeze--tho' I had to "push" the recovery .img and the flash routine by dragging them onto the SD/into nested "system" and "bin" folders manually while mounted to my Mac, as the first command prompt instructions generated error messages.the remainder of the command prompt instructions then executed successfully on my girlfriend's Windows machine, where I could install the SDK.I restored my Apps got everything set up, widget-ed, etc.All well until I turned my phone off when going to the theatre on powering back on: got to lock screen, but when I unlocked I had a black screen with an "unexpectedly stopped. Force close and try again" message for com.htc.launcher.When I click the Force Close button, I immediately get another dialogue saying com.htc.mms has stopped and then the first, com.htc.launcher dialogue pops up over and over, with the background behind never therefore progressing beyond the black screen with silver/gray "htc" logo.

View 16 Replies View Related

HTC EVO 4G :: After Successful 2.2 Root / PC Not Longer Recognizes Phone

Sep 4, 2010

I do not believe I have an issue with the physical port, because the phone automatically charges when connected to the PC. However, instead of asking me what to do when the USB is connected to the PC, the phone automatically turns on the Car Mode?I cannot get the PC to recognize the phone for the life of me, so that means I am stuck on the stock rooted rom until I can easily gain access to the SD card via the USB cable. Anyone heard of this issue yet? Can I reinstall HTC sync without disrupting root?

View 3 Replies View Related

Android :: Why Would JmDNS Service Discovery Work On Motorola Droid Running Android 2.1

May 1, 2010

I have successfully gotten JmDNS working on Android 2.1 testing on a Motorola Droid by using MulticastLock, but recently got an HTC Incredible as second test device, and JmDNS discovery doesn't work at all.I should mention that broadcasting a service still works and everything appears to run normally, but serviceAdded never gets called. Does anyone have thoughts on why this might be?

View 1 Replies View Related

Android :: Why Android Phone Simulator So Slow?

Aug 17, 2010

Compared to the iPhone and Windows Phone 7 equivalents it's takes forever to start up - is it realistic to expect this to improve over time?

View 2 Replies View Related

Samsung Galaxy S :: Phone Fails To Boot

Nov 26, 2010

Phone fails to boot even after leaving for and hour and both two and three button reset do not work.

View 1 Replies View Related

Android :: Unsuccessful Install Of Successful Built Apk

Aug 27, 2010

I have a problem with installing an apk (which includes jni libs) on the simulator. The apk is built successfully, but running as Android Application from within eclipse and executing adb install -r path/to/ apk runs also successful, but the app doesn't show up on the app- screen in the simulator. The following is the logcat during the install of the app. I don't see much evidence that there is something wrong with the apk, so I don't know whats going on there. Can someone help me with this? Are there more debugging options for adb install?

View 4 Replies View Related

Android :: How To Set Button Unusable / After Successful Install Apk?

Oct 30, 2010

i have a peoblem here ,when i install a apk the system wiil show a install Dialog ,one is "open",the other one is "done",how can i set the "open" button unusable and when user click "done",it will show the activity that i want to show?

View 1 Replies View Related

Android :: How To Open New Screen On Successful Authentication?

Jan 18, 2010

I am new to android and I have created a login page after verifying login. I get results true or false on the bases of user authentication now my goal is to show another screen on successful authentication with some new textboxes and button I mean new layout how to achieve this?

View 3 Replies View Related

Samsung Vibrant :: Phone Goes Into Recovery Mode Then Fails

Oct 9, 2010

I have a Vibrant. The issue all started when I tried to install the 1.2ghz OC rom onto my phone. I had rommanager installed, and attempted to run it off the SD card, but when my phone booted up it had lost my applications, everything.

The problem I'm running into now is that the phone seems to be unable to use its mass storage. Every time I attempt to reinstall an application from the market it says it doesn't have enough memory. Under settings it says "unavailable" for the internal mass storage.

I tried using the volume buttons and power button to enter recovery/dl mode but every time I do I cannot make selections. If I use the power button to try to select it does nothing. In fact the "up" volume button makes it go down, and the other "down" button also doesn't do anything.

Since I have no applications I can't use clockwork recovery, even though I know I have one. Also, Odin is unable to connect to the phone, so I can't reload factory. Kies also doesn't recognize the phone.

It also won't even recognize the SIM card, says it has no reception when it clearly does.

View 3 Replies View Related

HTC Desire :: Phone Clock Location Fails To Update

Sep 4, 2010

After a recent trip away I have come back and the HTC clock widget does not update to the current location... it is stuck on 'United Kingdom' instead of my current location...

As a test I went for a drive today and whist 'Latitude' showed where I was, the google home page still showed the wrong location, and HTC widget still showed just 'United Kingdom'...

This has just got me stumped..

View 4 Replies View Related

Android :: How To Transfer Data With Successful Bluetooth Connection?

Dec 30, 2009

I want to implement an application which can successfully transfer a file from my android eclair device to any other bluetooth device.Please if anybody know the solutions, kindly help me out, mail me at narendraprabh...@gmail.com or post back here please...

View 3 Replies View Related

Sony Ericsson Xperia X10 :: Phone Fails To Power With SD Card

Jul 17, 2010

I took my X10 to the SonyErricson shop to get the local sim working and GBP 60 later they managed to stuff the phone. The local sim now works but but the phone is useless as it does not power up When I put the SD card in. The authorised shop started speaking in Arabic telling me they could not help. I suspect they did not do a good job unlocking it or screwed up the os somehow. I tried to use the "Update Service" software and this says: "Failed to Detect Product" I have a catch 22 situtation as I cant power up and I cant use the phone without the sd card. I just want to reset the os so I can get back to defaults.

View 11 Replies View Related

General :: Captivate - Error Phone Daemon Install Fails

Apr 23, 2012

I have captivate. I just up rom to CM9 "update-cm-9-20120417-NIGHTLY-captivatemtd-signed" and "gapps-ics-20120317-signed". However i connect to 91 PC suite, it show messenger error follow:

" Sorry, phone daemon install fails!; there is not enough memory to install the daemon, check your phone's memory space and then connect your phone".

View 9 Replies View Related

Motorola Droid X :: Device Simulator / Anyone New To Android

Jul 15, 2010

Just found this on the site. If you are new to android I would suggest playing around with it.
Droid X Simulator

View 6 Replies View Related

Android :: Where Are Files Created In Simulator Stored?

Jun 22, 2009

I'm wondering where files that are created while running in a simulator are stored. I'm running the 1.5 simulator on Windows Vista. The real reason I want to find the files is because I am downloading an png file and trying to create a bitmap via:
Bitmap bitmap = BitmapFactory.decodeFile(iconFile.getAbsolutePath());
However, the bitmap is always null. I am able to create a bitmap successfully if I have the file as a resource.

View 7 Replies View Related

Android :: Simulator Identical To Product Of Particular Companies

Oct 28, 2010

I am using the default simulator, Can I make simulator identical to some common device I mean one identical to HTC, one identical to droid motorla, one of samsung, dell, acer,..etc Here identical I mean all the features that it provide.

View 3 Replies View Related

Android :: Any Simulator To Prevent Application Crash On Desire?

Jul 30, 2009

A Galaxy user emailed us to report that one of our apps crashes when he performs a function, we had over 10k downloads of this app with no similar report. Since the Galaxy is not yet available in the US, is there a simulator to help resolve issues like this?

View 4 Replies View Related

Android :: Application Not Working On 2.2 Simulator / Permission Denied

Oct 15, 2010

My application which can work on 2.1, but when I use 2.2 simulator, I got error on create file:
java.io.IOException Permission denied.

View 3 Replies View Related

Android :: Simulator Launched Successfully / How To Integrate It With Eclipse?

Feb 24, 2009

I download android's codes and build it for simulator. The simulator can be launched successfully, but it always popup "SORRY! Application Messaging (in process com.android.Message)...", or similar popup information. Do u know how to resolve it? By the way, how can I integrate it with eclipse? When I use eclipse, it reports many errors as following:
Description Resource Path Location Type Project 'android' is missing required library:
'out/target/common/obj/ JAVA_LIBRARIES/framework_intermediates/classes-compiled.jar' android Build path Build Path Problem Project 'android' is missing required library:
'out/target/common/obj/ JAVA_LIBRARIES/framework_intermediates/classes.jar' android
Build path Build Path Problem Project 'android' is missing required library:
'out/target/common/obj/ JAVA_LIBRARIES/framework_intermediates/javalib.jar' android
Build path Build Path Problem Project 'android' is missing required source folder: 'development/ tools/activitycreator/src' android
Build path Build Path Problem Project 'android' is missing required source folder: 'out/target/ common/obj/JAVA_LIBRARIES/framework_intermediates/src/core/java' android
Build path Build Path Problem Project 'android' is missing required source folder:
'out/target/ common/obj/JAVA_LIBRARIES/framework_intermediates/src/im/java' android
Build path Build Path Problem Project 'android' is missing required source folder:
'out/target/ common/obj/JAVA_LIBRARIES/framework_intermediates/src/location/ java' android
Build path Build Path Problem Project 'android' is missing required source folder:
'out/target/ common/obj/JAVA_LIBRARIES/framework_intermediates/src/media/java' android
Build path Build Path Problem Project 'android' is missing required source folder:
'out/target/ common/obj/JAVA_LIBRARIES/framework_intermediates/src/telephony/ java' android
Build path Build Path Problem Project 'android' is missing required source folder:
'out/target/ common/obj/JAVA_LIBRARIES/framework_intermediates/src/wifi/java' android
Build path Build Path Problem

View 5 Replies View Related

Android :: How Adobe Flash Player 10.1 Installed On Simulator 2.2?

Jul 27, 2010

How can installed Adobe flash player 10.1 on Android simulator 2.2?

View 2 Replies View Related

HTC EVO 4G :: Successful Unrevoked 3.2.1 Session?

Nov 22, 2010

I just ran through the Unrevoked process, which ended in the software telling me, "This was a triumph". I am, however, unconvinced.I can not boot into any other recovery than the stock HTC recovery and therefore can not perform a Nand Back up or flash Unrevoked Forever.I'm running a newer Evo with 2.2, it has hboot 2.02 and is showing S-ON. Is this the problem?

View 34 Replies View Related

Android :: Run Simulator Innormally _ Build Project Error On Eclipse

Feb 24, 2009

I do as following: >. build/envsetup >lunch 2 >make >simulator

View 5 Replies View Related

Android : Install A Free Market Application On Droid Simulator?

May 25, 2010

I want to install the Photoshop mobile on my emulator. I need to do test the Photoshop.com Mobile integration for image editing. But I dont know how to do that. I cannot access the market from the emulator.
Can anyone tell me how I can install it on my simulator.

View 4 Replies View Related

HTC Desire :: How Do I Check If Rooting Was Successful?

Jul 23, 2010

I've followed the HOW TO: Root Your Desire Easily (Method #2)guide and the app reported 'Done'the phone boots back up fine etc but how do I know it it actually worked?Not trying any customs roms yet but I have tried to install Titanium backup and that failed after I gave it super-user permissions.Is the a setting on the on the HBOOT menu that tells me I'm rooted ?

View 9 Replies View Related

HTC Incredible :: OTA 2.2 Update And Root Successful

Sep 1, 2010

I rooted my inc back in July and received the ota.I did nothing but accept the ota. It downloaded and installed with NO problems. I did loose root, but not a problem since the only thing I used root for was the led flashlight. With the new Sense, an HTC led flashlight is installed. The new OS is faster and liking it. Another nice feature is the numeric phone lock.I also gained a WiFi hotspot and 720p video.I'm sure there is a bunch more features added.I am still exploring the new OS. Overall, I'm satisfied and not really concerned I'm not a su on the phone.

View 3 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved