[android-developers] Re: How to install market app in emulator?

2011-03-18 Thread Zsolt Vasvari
The face that this thread is still here proves that nobody from Google gives a rat's ass what's being said on here... On Mar 18, 1:08 pm, Maps.Huge.Info (Maps API Guru) cor...@gmail.com wrote: Unless you are doing it on large scale or for commerical applications, who will know? You will.

[android-developers] .NET Android Library

2011-03-18 Thread HJ
I'm writing a WIndows app to synchronize data with an android app (using an SQLite database). Is there any equivalent of Baltic.SD.WindowsMobile for Android - a .NET library which will allow me some kind of acces to the android filesystem without needing to mount the phone as a USB device? --

[android-developers] Re: How to install market app in emulator?

2011-03-18 Thread Eric Wong (hdmp4.com)
On Mar 18, 4:08 pm, Maps.Huge.Info (Maps API Guru) cor...@gmail.com wrote: Unless you are doing it on large scale or for commerical applications, who will know? You will. If you steal candy from a 7-11 and don't get caught, does that make it ok? Fine, say Google does know who you are

[android-developers] Re: Build Error - Android 2.2

2011-03-18 Thread rahul
Try this change: LOCAL_SDK_VERSION=current (3 Android.mk files) 1. frameworks/ex/common/Android.mk 2. external/jsr305/Android.mk 3. external/guava/Android.mk -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

[android-developers] Android - How do we make notification visible once application is installed?

2011-03-18 Thread paresh mayani
Hi, As per my this question, i have written the below code to show notification and also made a notification steady at the notification bar. private void showNotification() { CharSequence title = Hello; CharSequence message = Notification Demo; NotificationManager

[android-developers] Android - How do we make notification visible once application is installed?

2011-03-18 Thread paresh mayani
Hi, As per my this question, i have written the below code to show notification and also made a notification steady at the notification bar. private void showNotification() { CharSequence title = Hello; CharSequence message = Notification Demo; NotificationManager

[android-developers] Android Emulator and Proxy

2011-03-18 Thread Nirmal Patel
I am confused with how the Proxy settings work in the Android emulator. I am able to access internet in the browser by configuring my Proxy settings on the APN (TelKila) However, my App is not able to access internet. (uses-permission mentioned in AndroidManifest.xml) I am using HttpClient in

Re: [android-developers] Re: Home Button in Android

2011-03-18 Thread Rocky
yes, it is absolutely correct. On Mon, Mar 14, 2011 at 11:24 AM, Ashish Raut ashishr.andr...@gmail.comwrote: In my Android manifest: Launcher and Main activity is starting activity is it correct way? Regards, AshishR On Mon, Mar 14, 2011 at 11:10 AM, Ashish Raut

[android-developers] RelativeLayout.layout_alignBaseline regression in Android 3.0 (Honeycomb)

2011-03-18 Thread Zsolt Vasvari
This attribute simply doesn't work if the TextField to which you want to align the baseline with doesn't have any text in it. setText() doesn't work, but setText( ) does. This worked fine, as it should, in Android versions = 2.3.3 . I am saying it should work with an empty text is just because

[android-developers] Re: Usage of android:textAppearence vs. style attributes

2011-03-18 Thread Sebastian Roth
Hi again: I was mistaken and will close the question soon. Indeed *textAppearance* works very well. What I did not consider is that the properties I was using shadow** are for the entire element and are not being considered text properties, and as such will be ignored when using textAppearance.

[android-developers] Re: How is your sales model changing with the introduction of Android 3.0 and tablets, or is it?

2011-03-18 Thread Christer Nordvik
I am thinking about #1 since you can always slap on a HD at the end like Angry App HD and charge the users more. At least that's the standard practice on iPad. But then you have to have some extra features (or just better graphics) on the HD version of your app. My main problem is that the Xoom

Re: [android-developers] Re: How to detect if text was entered through physical keyboard?

2011-03-18 Thread Marcin Orlowski
Also is it possible to detect a keystroke without using an EditText? http://developer.android.com/reference/android/view/KeyEvent.Callback.html Regards, Marcin Orlowski Tray Agenda for Android http://bit.ly/trayagenda -- You received this message because you are subscribed to the Google

[android-developers] Re: Problem positioning scaled images

2011-03-18 Thread Cliff Davies
I'm quite bamboozled by this. I would have thought that the width and height of an ImageView would have scaled with the image that's being scaled. Just giving a final quick shout to see if anyone knows if I'm overlooking something? On Thu, Mar 17, 2011 at 8:35 PM, Cliff Davies

[android-developers] Re: Not able to receive UDP Data

2011-03-18 Thread emymrin
UDP works well on emulators and devices. DatagramSocket socket = new DatagramSocket(port); byte[] data = new byte[1000]; DatagramPacket datagram = new DatagramPacket(data, 0, data.length, null, 0); socket.receive(datagram); On 18 мар, 03:20, Miguel Morales therevolti...@gmail.com wrote: I've

[android-developers] Re: NFC connection between 2 Android-devices

2011-03-18 Thread Benjamin
Great, thanks. On 16 Mrz., 19:36, Nando nand...@gmail.com wrote: Yes it is possible, starting from 2.3.3. -Nando Sent from my Sinclair ZX81 On 16 March 2011 17:31, Marcin Orlowski webnet.andr...@gmail.com wrote: On 16 March 2011 18:25, Benjamin benjaminru...@googlemail.com

Re: [android-developers] Bud setAdapter of AbsListView

2011-03-18 Thread Sergey Okhotny
Layout: ListView android:id=@+id/localstore_newspapers android:layout_width=fill_parent android:layout_height=fill_parent / Java: private class NewspapersListAdapter extends BaseAdapter {} AbsListView mNewspapersView = (AbsListView)findViewById(R.id.localstore_newspapers); this fails

Re: [android-developers] Re: Problem positioning scaled images68

2011-03-18 Thread Raja
R Sjcent from my Motorola phone. Cliff Davies cliff.dav...@gmail.com wrote: I'm quite bamboozled by this. I would have thought that the width and height of an ImageView would have scaled with the image that's being scaled. Just giving a final quick shout to see if anyone knows if I'm

Re: [android-developers] Re: Not able to receive UDP Data

2011-03-18 Thread Miguel Morales
Can you verify this works on a device through a regular carrier signal and not through wifi? On Fri, Mar 18, 2011 at 1:34 AM, emymrin emym...@gmail.com wrote: UDP works well on emulators and devices. DatagramSocket socket = new DatagramSocket(port); byte[] data = new byte[1000];

Re: [android-developers] Re: How is your sales model changing with the introduction of Android 3.0 and tablets, or is it?

2011-03-18 Thread Raja
I TSent from my Motorola phone. Christer Nordvik cnord...@gmail.com wrote: I am thinking about #1 since you can always slap on a HD at the end like Angry App HD and charge the users more. At least that's the standard practice on iPad. But then you have to have some extra features (or just

[android-developers]

2011-03-18 Thread Raja
Sent from my Motorola phone. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

Re: [android-developers] Re: How is your sales model changing with the introduction of Android 3.0 and tablets, or is it?

2011-03-18 Thread Raja
Sent from my Motorola phone. Christer Nordvik cnord...@gmail.com wrote: I am thinking about #1 since you can always slap on a HD at the end like Angry App HD and charge the users more. At least that's the standard practice on iPad. But then you have to have some extra features (or just better

[android-developers]

2011-03-18 Thread Raja
Sent from my Motorola phone.d -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

[android-developers]

2011-03-18 Thread Raja
Sent from my Motorola phone. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

[android-developers] Re: How is your sales model changing with the introduction of Android 3.0 and tablets, or is it?

2011-03-18 Thread Zsolt Vasvari
For a game, #1 probably makes more sense. For a productivity app for which the user had already paid $10 for, #2 probably is a better option, unless you want to piss off your users. On Mar 18, 4:00 pm, Christer Nordvik cnord...@gmail.com wrote: I am thinking about #1 since you can always slap

[android-developers] Re: onItemLongClick and onItemClick for a gridview

2011-03-18 Thread varinag gold
Below is the code: OnItemClickListener listener1 = new OnItemClickListener() { @Override public void onItemClick(AdapterView? parent, View view, int position, long id) { Log.d(TAG1, OnItemClickListener);

Re: [android-developers] Re: Home Button in Android

2011-03-18 Thread Raja
E Sent from my Motorola phone. Rocky rkjhaw1...@gmail.com wrote: yes, it is absolutely correct. On Mon, Mar 14, 2011 at 11:24 AM, Ashish Raut ashishr.andr...@gmail.comwrote: In my Android manifest: Launcher and Main activity is starting activity is it correct way? Regards, AshishR On

Re: [android-developers] Whats the key difference between Monkey Runner and Monkey tool?

2011-03-18 Thread Raja
Sent from my Motorola phone. raki rakeshkart...@gmail.com wrote: Hi, I want to automate UI and functional testing on Android OS. I am in dilemma whether to use Monkey or Mokeyrunner for the purpose. I will not be able to access the source code for the applications but I just need to test

[android-developers] Twitter on Android

2011-03-18 Thread chamith weerasinghe
Hi all I'm new to android and I want to insert facebook and twitter intraction for my android application. please help me. I couldn't do it... Thanks, Chamith -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

Re: [android-developers] Twitter on Android

2011-03-18 Thread Miguel Morales
Go to the facebook website, they have a developer kit for Android. Along with documentation. On Fri, Mar 18, 2011 at 2:53 AM, chamith weerasinghe e05ch...@gmail.comwrote: Hi all I'm new to android and I want to insert facebook and twitter intraction for my android application. please help

[android-developers] Twitter on Android

2011-03-18 Thread Ramsay Domloge
What couldn't you do? Where is the error occurring? What exactly is your problem? if you want people to help, you are going to have to give us more than this... -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] Bluetooth UUID receive delayed

2011-03-18 Thread Ajith Kamath
Hi I am working on Bluez stack and currently facing a problem. I am able to pair with another phone. As soon as pairing occurs , it will take about nearly 1 min to get UUID property changed signal from bluez. This is happening only with phones If I try doing it with headsets, I will get UUID

Re: [android-developers] Twitter on Android

2011-03-18 Thread chamith weerasinghe
Hi all, Sorry for that. I want complete guide to twitter intraction. I evan cant log using android to twitter. thanks. On Fri, Mar 18, 2011 at 3:28 PM, Ramsay Domloge rdoml...@gmail.com wrote: What couldn't you do? Where is the error occurring? What exactly is your problem? if you want

Re: [android-developers] Twitter on Android

2011-03-18 Thread Marcin Orlowski
On 18 March 2011 11:32, chamith weerasinghe e05ch...@gmail.com wrote: Sorry for that. I want complete guide to twitter intraction. Read about OAuth, read Twitter dev docs, google on existing libraries and/or tutorials. You are not the very first one thinking of twitter integration. I evan

[android-developers] Re: How to install market app in emulator?

2011-03-18 Thread Peter Webb
If you can install and use Market on an emulator, what's to stop you writing a script to download your app and rate it 5 stars on hundreds of emulators? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] Re: Assign LayoutParams from Xml

2011-03-18 Thread Andrea Richiardi
It works like a charm! Thanks! On 17 Mar, 21:25, Andrea Richiardi andrea.richia...@gmail.com wrote: Thanks guys, I missed that article. I'll try! On 17 Mar, 18:16, Kostya Vasilyev kmans...@gmail.com wrote: 17.03.2011 20:02, TreKing ?: I don't think you add the xmlns declaration to

[android-developers] Restart Service after it has been killed by the system

2011-03-18 Thread Paolo
Hi there! I'm in trouble with the service as the topic title says. I put my app in background running a service for tracking my position. As normal, the system could require resources and kill him. How can avoid it? Or at least how can I restart my service as soon as possible? I found that can

Re: [android-developers] Twitter on Android

2011-03-18 Thread chamith weerasinghe
Hi, thanks all. now I have same idea about how to start that. thanks. On Fri, Mar 18, 2011 at 4:20 PM, Marcin Orlowski webnet.andr...@gmail.comwrote: On 18 March 2011 11:32, chamith weerasinghe e05ch...@gmail.com wrote: Sorry for that. I want complete guide to twitter intraction. Read

[android-developers] Re: Android Emulator and Proxy

2011-03-18 Thread Ramsay Domloge
When you say 'HttpClient', I assume you mean Apache HTTPClient? If so, this is a toolkit for accessing HTTP content from a Java context, whether Java is running in Android, in a Java applet running in Firefox on Windows or running in a backend Unix Application server. HttpClient is not

[android-developers] Tracing Geo Location and saving them into file from start of a cal to end call duration

2011-03-18 Thread A.Q.Ghouri
I want to write a piece of code which will work when a incoming call is received and it will create log that call by the location of the person and during the cal time .the path.. tell is is possible that we work parallel a call receiving service and Geo Location ? -- You received this message

[android-developers] Android Custom Animation

2011-03-18 Thread Adolf Faildude
Hi, I want to make custom animation that would make the sides of a Button go to the center and back. When the user touches the button, the center of the left boundary and center of the right boundary of the button to go the center of the View (Button) and back (as animation). Like this:

[android-developers] Get screen coordinates by specific location and longitude

2011-03-18 Thread Adrià Carro
Hy all, I have an application of augmented reality in which I have stored information such us metro, gas stations, places of interest, etc. with the corresponding latitude and longitude. Now, according to the orientation of the device, I would show a marker for each site in the camera view of

[android-developers] World coordinates to screen coordinates

2011-03-18 Thread Adrià Carro
Hey all! First of all, sorry for my english... I'm trying to make an augmented reality application for Android like Layar and I want to know how can I go from world coordinates (latitude and longitude) to screen pixels. My application receives objects information with specific latitude and

[android-developers] Re: How to get coordinates by clicking a point in the map

2011-03-18 Thread Adrià Carro
Hi, you have to implement the method onTouchEvent. I have my class that extends from ItemizedOverlay and within onTouchEvent method implementation. @Override public boolean onTouchEvent(MotionEvent event, MapView mapView) { //---when user lifts

[android-developers] Questions about Activity.finish() and a couple of other things.

2011-03-18 Thread Kevin
I'm following the tutorial found at http://developer.android.com/resources/tutorials/testing/activity_test.html to learn how to test on the Android. I'm noticing some weirdness and I can't find any explanations yet online. So I'm hoping someone here can help me understand this. I wrote the method

Re: [android-developers] Re: How to install market app in emulator?

2011-03-18 Thread Mark Murphy
On Fri, Mar 18, 2011 at 2:21 AM, Eric Wong (hdmp4.com) ericwon...@gmail.com wrote: Fine, say Google does know who you are because Market has to connect to the internet. Is there any financial incentive for Google to catch a individual developer doing this? I don't think so. So, it really

[android-developers] Sip Communicator

2011-03-18 Thread Alexei Telles
Hello all. This is my first post in this group. I'm starting android development and in my first project I need to make Sip Communicator running on Android. Searching Googlle I found a sc-android project. Does anybody here have been any experience with Sip Communicator and could help me driving

[android-developers] Content provider

2011-03-18 Thread Sakthivel A M
I need complete content provider flow in android framework -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

[android-developers] How to find Content Provider URI for any Google Application like Google Reader

2011-03-18 Thread antjohns
Hi.. I am new to Android programming. I have learnt applications can query for another applications data store through Content Resolver and the app's unique URI Now I would like to query the Google Reader application running on my android phone from my app. Can you please tell me how it is

[android-developers] Re: Android 3.0 presentation on Slideshare

2011-03-18 Thread BuzzBox SDK
Thanks for the slides. Any comments about how notifications are handled differently in 3.0? On Mar 16, 5:27 pm, Sean Sullivan s...@seansullivan.com wrote: I gave a presentation about Android 3.0 at the Portland Java User Group on March 15th. The slides are available here:

Re: [android-developers] Re: AppWidget Stopped !!!

2011-03-18 Thread Mark Murphy
On Fri, Mar 18, 2011 at 12:24 AM, paulb pbizan...@gmail.com wrote: 1. Set an alarm using AlarmManager that updates the widget every second Please don't. This is a significant drain of CPU and battery. 2. Modify the service to update every second in either a separate thread or a handler

[android-developers] Re: setimageresource showing wrong image

2011-03-18 Thread Arialia
Maybe with a refresh on the folder 'drawable' under eclipse or clean project, it seems that your change of file is not be taken by your IDE On Mar 14, 9:33 pm, rankan sri.ke...@gmail.com wrote: Hi, I'm trying to build a simple UI based on the tutorial on using tabs. I added a couple of .png

[android-developers] Add a new button to incoming call screen

2011-03-18 Thread Ash
Is it possible to edit the existing incoming call screen? I would like to add another button(say Send SMS) in addition to the answer and reject buttons. If its possible, can someone please let know how I can get started? -- You received this message because you are subscribed to the Google

[android-developers] Creating integer array of resource ids

2011-03-18 Thread droid-stricken
Hi All, I have some images in my res/drawable folder. Let's say img1.png, img2.png and img3.png I am currently creating an int array of these image IDs in Java like this - int[] imgIds = {R.drawable.img1, R.drawable.img2, R.drawable.img3}; Instead is it possible to create an int arr in one of

[android-developers] build error android 0xlab on beagleboard rev b6 undefined reference to undefined reference to `WebCore::TypingCommand::insertText(WebCore::Document*, WebCore::String const, bool,

2011-03-18 Thread basti786
Hi, this is my first post. I hope you can help me with my problem. I'm trying to build Android for my Beagleboard. I'm using the source code from the 0xlab project. When i build the project i get an error with the STATIC_LIBRARIES. Here`s the error message: Install:

[android-developers] ListView and HorizontalScrollView on the screen

2011-03-18 Thread nyuri
hi~ I have a problem. I have to develops on the android platform. the function is as follows. screen -- scroll enable --- ^ title1 | title2 | title3 | title

[android-developers] Need Information about Firmaware upgrade in froyo

2011-03-18 Thread deeps
Hi, We are using Froyo in one of our product.We need to implement firmware upgrade feature in it. We need to provide the feature to upgrade kernel as well as the OS. Can we use the update.zip to do this. Do we have to include fastboot command in it to upgrade kernel? Can we do fastboot with out

[android-developers] FLAG_ACTIVITY_BROUGHT_TO_FRONT incorrectly set on launch?

2011-03-18 Thread Mmmmm
The issues surrounding this have been discussed before here, but I have done a lot of poking around and wanted to report my findings and a workaround I have come up with to see if anyone has any thoughts on why this is happening and if my workaround has any holes in it. What is happening: (This

[android-developers] Re: drag and drop view in android?

2011-03-18 Thread blahti
I studied the drag and drop code in the Launcher and really liked it. So I built an example that includes what I thought were the essential elements of their design. For source code and a write-up; go here: http://blahti.wordpress.com/2011/01/17/moving-views-part-2/ On Mar 15, 8:24 pm,

[android-developers] Re: ADT 10 lost clipping toggle in the visual layout editor?

2011-03-18 Thread Dave
Same here, the clipping function is essential for showing any hidden portion of the scrollView, but now everything is hidden behind the clipped scrollView and it impossible to edit the widgets in the layout editor in graphical layout tab. Any alternative for this? beside using the xml editor.

[android-developers] property settings in Java and native C code

2011-03-18 Thread Sun Ray-B17777
Hi All, I want to set the property in Java code and get the property in C code. Is this available? What I used is as below: 1. Set the property to 0x2 mPowerControl = getInt(POWER_CONFIG, 0x0);//get the configuration value of power

[android-developers] Re: setImageResource causing Gallery jump

2011-03-18 Thread dymmeh
Just an update on this, because I found no relevant information I filed a bug in the android bug tracking system http://code.google.com/p/android/issues/detail?id=15526 Please star this so that it gets the attention of the Google devs -- You received this message because you are subscribed to

[android-developers] How to configure TCP/IP MONITOR

2011-03-18 Thread DoM
Can anyone help me to configure Tcp/ip monitor on eclipse. I'm writing a client for a Web Server running on remote machine.This is my code: import org.ksoap2.SoapEnvelope; import org.ksoap2.serialization.PropertyInfo; import org.ksoap2.serialization.SoapObject; import

[android-developers] Re: onItemLongClick and onItemClick for a gridview

2011-03-18 Thread Fina Perez
Hi! I haven't seen your code, but have you tried using a GestureDetector? (see http://developer.android.com/reference/android/view/GestureDetector.OnGestureListener.html) Using the method onTouchEvent + a gestureDetector, you can be able of detecting a simple click, a long click, or even a

[android-developers] Problem with SoundBoard App

2011-03-18 Thread Gabriel
I'm having a really strange problem: I'm making a simple app with a lot of ImageButtons that make sounds when you click it. I've done that before, so I'm just copying a previous code for that and replacing the names and ids. But, after the 7th Button in the java code, the next ones stop

[android-developers] Using external library .jar fails to compile

2011-03-18 Thread chryslianos
Hi all. I am developing an android application to record and upload accelerometer data. To do this,i have to use an external library,which i have added to the build path of the project. My problem is that when i compile and run it on my Nexus One, it either gives me a

[android-developers] Resolution Problem

2011-03-18 Thread gsxruk
Hi, I have an application that when compiled on my pc and transferred to a HTC Desire does not appear to conform to the resolutions set by the view (i.e. the images used for buttons are at a fixed 60 pixels but they appear bigger than this). However, if a friend compiles the same application on

[android-developers] can i hide or change battery-low dialog?

2011-03-18 Thread guiridemeer
Hi all, I need to hide or change the battery-low dialog. Im able to recieve the Intent.ACTION_BATTERY_LOW with a Broadcast Receiver registered with Context.registerReceiver() in my code (not able to do it through manifest receivers, as API says, I dont know why) Buy now i need to hide or avoid

[android-developers] Re: ndk-gdb works on Nexus One (Current) but not Xoom (Current)

2011-03-18 Thread david
I'm also having trouble with ndk-gdb on the Xoom. Trying to debug the hello-gl2 sample, things look OK up until the end: (no debugging symbols found) [1] Segmentation fault run-as com.andro... Ignoring packet error, continuing...

[android-developers] Developers Phone Program

2011-03-18 Thread Bob Malitz
Is there a program to obtain phones for development use ? If so, how do you go about it ? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this

[android-developers] AWT - yes or no??!

2011-03-18 Thread Bogdan
Hello everybody, I know there are some post around here regarding the java.awt library, but none of them have any definite answers. So, is there a way to make use of the java.awt / android.awt classes (I don't care about the risks)? If there is, could somebody point me into the right direction?

[android-developers] Install Adobe AIR Runtime on emulator?

2011-03-18 Thread Boyd Speer
I have the Runtime.apk for Adobe Air  but how do I install it on the emulator (android 2.2 ) using the command line or with some utility software? I am using Windows Vista, Eclipse, Flash CS5 Professional. All examples on Adobe forums etc do not seem to work. Thanks for any insights as to what

[android-developers] Anyone seen or used cheap Android phones from shenit.com or chinavision.com

2011-03-18 Thread Boyd Speer
http://www.shenit.com/cell-phone/smartphones-pda-phones/china-android-phones.html?gclid=CIatuZDA0acCFUa8KgodC3Z_lg or http://www.chinavasion.com/smartphones/m1713genb/ seem to have very cheap unlocked dual sim phones I am wondering how good they would be to develop on... Anyone with

[android-developers] JDBC driver support

2011-03-18 Thread Dan
Hey, I'd like to interface with SQLite databases through JDBC. I've seen the interfaces provided under the java.sql package, and I've tried using them and everything seems to work as expected. For example: String db = jdbc:sqlite: + getFilesDir() + /myDB.db; Class.forName(SQLite.JDBCDriver);

[android-developers]

2011-03-18 Thread Raja
Sent from my Motorola phone. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

Re: [android-developers] Re: AppWidget Stopped !!!

2011-03-18 Thread Mark Murphy
On Thu, Mar 17, 2011 at 11:11 PM, hardrock hardrock...@gmail.com wrote: 1. AppWidget extends BroadcastReceiver.   This meams that even *ANY* appwidget cannot guarantee from system- kill. Correct.   Isn't there any way to prevent time-freezing of digital clock widget ? Don't write a digital

[android-developers]

2011-03-18 Thread Raja
Sent from my Motorola phone. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

[android-developers] Re: How to install market app in emulator?

2011-03-18 Thread String
On Friday, March 18, 2011 10:52:09 AM UTC, Peter Webb wrote: If you can install and use Market on an emulator, what's to stop you writing a script to download your app and rate it 5 stars on hundreds of emulators? Your own moral compass? (See John's earlier response) The captcha Google

Re: [android-developers] JDBC driver support

2011-03-18 Thread Mark Murphy
On Wed, Mar 16, 2011 at 6:23 PM, Dan dan...@gmail.com wrote: I'd like to interface with SQLite databases through JDBC. Why? However, I've found two posts (about a year and a half old) regarding this issue saying that JDBC is not officially supported:

[android-developers] Re: Whats the key difference between Monkey Runner and Monkey tool?

2011-03-18 Thread pradeep
Hi Monkey Runner tool is built on monkey tool. Monkey internally consists of a server, which can be started using its command --port, which is not being used very often. Monkey Runner tool which runs at host[PC], [which is basically a jython script], starts the monkey server at some port and

Re: [android-developers] Install Adobe AIR Runtime on emulator?

2011-03-18 Thread Mark Murphy
Ask Adobe. If Adobe is really distributing AIR for use on emulators, they will have instructions. If you have a pirated APK, then please do not use it. On Wed, Mar 16, 2011 at 12:32 PM, Boyd Speer bsp...@shaw.ca wrote: I have the Runtime.apk for Adobe Air  but how do I install it on the

Re: [android-developers] Developers Phone Program

2011-03-18 Thread Mark Murphy
On Tue, Mar 15, 2011 at 2:49 PM, Bob Malitz bmal...@gmail.com wrote: Is there a program to obtain phones for development use ? If so, how do you go about it ? Buy one in a store. Any device with the Android Market legitimately installed on it is a phone for development use. -- Mark Murphy (a

Re: [android-developers] Re: How to install market app in emulator?68

2011-03-18 Thread Raja
R Sjcent from my Motorola phone. Peter Webb r.peter.w...@gmail.com wrote: If you can install and use Market on an emulator, what's to stop you writing a script to download your app and rate it 5 stars on hundreds of emulators? -- You received this message because you are subscribed to the

[android-developers] bug or a feature?

2011-03-18 Thread gakarak
Hi, I want to set the id of a Button equal to switch. Ie I simply add the following code in the xml-file: Button android:layout_width=fill_parent android:layout_height=wrap_content android:text=switch android:id=@+id/switch / After that aapt gives me the

[android-developers]

2011-03-18 Thread Raja
X Sent from my Motorola phone. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

Re: [android-developers] AWT - yes or no??!

2011-03-18 Thread Mark Murphy
On Tue, Mar 15, 2011 at 9:06 AM, Bogdan bogdan.stefane...@ymail.com wrote: So, is there a way to make use of the java.awt / android.awt classes There are no classes in either package in Android, except for a couple of items in java.awt.font. (I don't care about the risks)? The rest of us do.

[android-developers] Re: Developers Phone Program

2011-03-18 Thread String
http://android.brightstarcorp.com/index.htm -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

Re: [android-developers] can i hide or change battery-low dialog?

2011-03-18 Thread Mark Murphy
On Fri, Mar 18, 2011 at 4:05 AM, guiridemeer guiridem...@gmail.com wrote: I need to hide or change the battery-low dialog. Im able to recieve the Intent.ACTION_BATTERY_LOW with a Broadcast Receiver registered with Context.registerReceiver()  in my code (not able to do it through manifest

Re: [android-developers] Using external library .jar fails to compile

2011-03-18 Thread Mark Murphy
On Tue, Mar 15, 2011 at 8:24 PM, chryslianos davelis...@gmail.com wrote: I am developing an android application to record and upload accelerometer data. To do this,i have to use an external library,which i have added to the build path of the project. Is this external library confirmed to work

Re: [android-developers] build error android 0xlab on beagleboard rev b6 undefined reference to undefined reference to `WebCore::TypingCommand::insertText(WebCore::Document*, WebCore::String const, b

2011-03-18 Thread Mark Murphy
On Thu, Mar 17, 2011 at 11:09 AM, basti786 basti_gru...@gmx.de wrote: this is my first post. I hope you can help me with my problem. I'm trying to build Android for my Beagleboard. You are on the wrong list. Visit http://source.android.com for assistance with Android firmware, including porting

Re: [android-developers] How to find Content Provider URI for any Google Application like Google Reader

2011-03-18 Thread Mark Murphy
On Wed, Mar 16, 2011 at 12:38 PM, antjohns antonycjohn...@gmail.com wrote: Hi.. I am new to Android programming. I have learnt applications can query for another applications data store through Content Resolver and the app's unique URI Now I would like to query the Google Reader application

Re: [android-developers] .NET Android Library

2011-03-18 Thread Mark Murphy
That would require device drivers for adb that most users would not have. Even given that, I am not aware of such a library, though I have not been looking. On Fri, Mar 18, 2011 at 2:12 AM, HJ hjenner...@gmail.com wrote: I'm writing a WIndows app to synchronize data with an android app (using

[android-developers] Android Emulator 2.2 crashes often on Windows XP

2011-03-18 Thread DJK djk
With my application launched the emulator crashes (...'has encountered a problem and need to close') after one minute or two. 2.1 emulator works ok. Eclipse 3.5.2, ADT 10, SDK Tools 10, JRE 1.6, Windows XP SP3 Please help me how to debug, how to catch errors before crash! Thanks -- You

Re: [android-developers] Dynamically adding fragments at run-time?

2011-03-18 Thread Mark Murphy
On Thu, Mar 17, 2011 at 11:55 PM, Chris Stewart cstewart...@gmail.com wrote: I'm starting to think about how to transition my app to work on the Xoom.  In the UI samples I've seen for Honeycomb, they each include two fragments, a ListView on the left for navigation and another fragment (I'm not

[android-developers] Re: Cursor management issue with Honeycomb

2011-03-18 Thread Billy Bob Bain
Calling stopManagingCursor() also solved this issue for me. In my onResume(), I was rebuilding the cursor since it was likely data had been added. Needed to add a call to stopManagingCursor() on the current instance before creating the new one. Seems like I should have been doing this all along.

[android-developers] Re: Android Emulator 2.2 crashes often on Windows XP

2011-03-18 Thread J
If the emulator itself crashes it is not likely a problem in your code, but in the emulator, so hardly will you find it debugging your application. The same happened to me a couple of weeks ago. I upgraded to the lastest versions of everything and it worked again (though I can not say what piece

[android-developers] List view from database

2011-03-18 Thread Brad Stintson
I want to display two columns retrieved from database in a list view, which can be clicked. How to do that? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To

[android-developers] How to use Local Notification in Android 2.3.1??

2011-03-18 Thread Onkar Dhane,Trainee Software Developer,Alphabricks Technology pvt. ltd
Hi,i have created progress bar which had max. limit. now as progress bar reached to max. limit i want to show message box.message must be on any current application screen. so,suggest me how to achieve it??i dont want to make toast because i want to create buttons on it afterwardshelp me to

Re: [android-developers] List view from database

2011-03-18 Thread Mark Murphy
Query the database and put the results in a CursorAdapter of some form. Here is a sample project that does just that: https://github.com/commonsguy/cw-android/tree/master/Database/Constants On Fri, Mar 18, 2011 at 8:49 AM, Brad Stintson geek.bin...@gmail.com wrote: I want to display two

Re: [android-developers] How to use Local Notification in Android 2.3.1??

2011-03-18 Thread Mark Murphy
Use an AlertDialog. Here is a sample project demonstrating the use of AlertDialog.Builder: https://github.com/commonsguy/cw-android/tree/master/Messages/Message On Fri, Mar 18, 2011 at 8:54 AM, Onkar Dhane,Trainee Software Developer,Alphabricks Technology pvt. ltd dhane.on...@gmail.com wrote:

[android-developers] Re: can i hide or change battery-low dialog?

2011-03-18 Thread Onkar Dhane,Trainee Software Developer,Alphabricks Technology pvt. ltd
can you please send me that code of battery low dialog?? so that i can tell you... Thanks On Mar 18, 1:05 pm, guiridemeer guiridem...@gmail.com wrote: Hi all, I need to hide or change the battery-low dialog. Im able to recieve the Intent.ACTION_BATTERY_LOW with a Broadcast Receiver

  1   2   3   4   >