[android-developers] Re: Upper limit size of ImageView?

2008-03-27 Thread Jakob Bjerre Jensen
Hi, Yes, I had similar thoughts about the image. However I hoped, that Android was smart enough to somehow work around this issue, since it does not have to show the complete image, only the part that currently occupies the display. But thanks anyway. Best regards, Jakob Bjerre Jensen On 28 Ma

[android-developers] Re: Discussion on media-sample-apps

2008-03-27 Thread Megha Joshi
Hi, The SDK does not support PCM codec or direct interface to raw audio at this time. This feature request had been submitted earlier on the android issue tracker, you may want to increase the rating so that it is accounted for while planning the new features to be implemented. Thanks, Megha On

[android-developers] Re: Who is responsible for closing FilterableListAdapters on AutoCompleteTextView

2008-03-27 Thread Megha Joshi
Hi, As Romain said it is a bug which will be fixed in the new release. In the meanwhile as you are facing this problem for your challenge application, please mention this in your README file along with the workaround and the judges will accept it. It is an issue with the API,which will not affect

[android-developers] Re: Android source isn't available ?????????

2008-03-27 Thread szeldon
It isn't open source. It will become open source at the day of final release. On Mar 28, 7:02 am, Ze <[EMAIL PROTECTED]> wrote: > I don't understand how Android is an open source project as its source > hasn't been released? > > Ze --~--~-~--~~~---~--~~ You receive

[android-developers] Android source isn’t availabl e ?????????

2008-03-27 Thread Ze
I don't understand how Android is an open source project as its source hasn't been released? Ze --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android

[android-developers] Re: TableRow resizes ok, but is it possible to animate the resize?

2008-03-27 Thread Mark Wyszomierski
Well I tried with a standard animation like: LayoutAnimationController controller = new LayoutAnimationController(AnimationUtils.loadAnimation(context, android.R.anim.slide_in_bottom)); m_Row.setLayoutAnimation(controller); m_Row.startLayoutAnimation(); but it doesn't have the expected eff

[android-developers] Re: Notification ongoingEvent

2008-03-27 Thread Dan U.
Ah, I see. Thanks. On Mar 27, 9:42 pm, "Joe Onorato" <[EMAIL PROTECTED]> wrote: > There are two sections in the pull-down notification window shade, one for > "ongoing events" and one for "latest events." The ongoing ones are things > that are live, for example phone calls, playing music and dow

[android-developers] TableRow resizes ok, but is it possible to animate the resize?

2008-03-27 Thread Mark Wyszomierski
Hi, I have a table layout with one row. Inside the row is a child textview, which is a single line of text. When I add a longer string to the text view, it becomes say 5 lines in height, expanding its parent row height. That is good. Is it possible though to animate the resizing of the row so i

[android-developers] Re: Who is responsible for closing FilterableListAdapters on AutoCompleteTextView

2008-03-27 Thread Rainer
This is the code in the Activity I am using. As you can see, all I am doing is configuring the autocompletebox just as its intended to be done. All the rest is done by android classes. @Override protected void onCreate(Bundle icicle) { super.onCreate(icicle);

[android-developers] Re: Notification ongoingEvent

2008-03-27 Thread Joe Onorato
In a future release, the ongoingEvent flag will also affect the sorting of the icons and what happens when there are more icons than fit in the available space. We didn't have time to do that for M5. -joe On Thu, Mar 27, 2008 at 9:42 PM, Joe Onorato <[EMAIL PROTECTED]> wrote: > There are two s

[android-developers] Re: Notification ongoingEvent

2008-03-27 Thread Joe Onorato
There are two sections in the pull-down notification window shade, one for "ongoing events" and one for "latest events." The ongoing ones are things that are live, for example phone calls, playing music and downloads in the web browser. The latest events section is for discrete events, for exampl

[android-developers] Re: Notification ongoingEvent

2008-03-27 Thread Dan U.
Oh, and I know what it says in the docs about it representing an event that is ongoing versus one that isn't, but I don't see the significance. Why would you even need this flag? On Mar 27, 9:34 pm, "Dan U." <[EMAIL PROTECTED]> wrote: > Could someone please explain what the ongoingEvent flag in a

[android-developers] Notification ongoingEvent

2008-03-27 Thread Dan U.
Could someone please explain what the ongoingEvent flag in a Notification means? I don't see how it affects the Notification at all. Thanks. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. T

[android-developers] Re: loadFromXML causes InvalidPropertiesFormatException

2008-03-27 Thread Megha Joshi
Hi Anil, Please refer to the thread below for a discussion on defining properties in android: http://groups.google.com/group/android-developers/browse_thread/thread/21c07adfa11a7b07/2769130d1d4857bb For using the java properties file, you may want to log an issue in the android issue tracker,

[android-developers] How to return object to another application?

2008-03-27 Thread Wei Yongqiang
Hi all, I have write an application, which will supply API(Activity?servic?provider?). Another application will send out an intent to launch my API, and will get returned object from my API. anyone have sample code for this? Thanks. --~--~-~--~~~---~--~~ You r

[android-developers] import android.content.IntentReceiver (into) file.aidl

2008-03-27 Thread javalotte
I'm having problems creating an aidl file (on Windows, in Eclipse) when attempting to import either: import android.content.IntentFilter; import android.content.IntentReceiver; "couldn't find import for class android.content.IntentFilter" "couldn't find import for class android.content.IntentRec

[android-developers] Re: Share XML files

2008-03-27 Thread Megha Joshi
One thing to note is that the emulator does not support bluetooth feature. On Thu, Mar 27, 2008 at 6:07 PM, CaptainFanatic <[EMAIL PROTECTED]> wrote: > > Thanks for your replies. > Looking at the rfcomm link above it looks like the easiest way to send > data is by writing a byte array to an Outpu

[android-developers] Re: Unresolved symbols & JNI

2008-03-27 Thread Digit
it definitely looks like there is something wrong with your toolchain. the libgcc runtime functions should be prefixed with __aeabi_ and not __armeabi_ the corresponding implementations are located in the linker executable itself (/system/bin/linker) and get resolved at runtime normally. some of th

[android-developers] Re: LogCat window doesn't work

2008-03-27 Thread Dan U.
There's a lot of output from the emulator itself. Do you see any of that in LogCat? If you don't, I'd recommend restarting the emulator. Sometimes it does this to me. On Mar 27, 6:17 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Hi all, > > LogCat window doesn't display anything? > I tried

[android-developers] Re: LogCat window doesn't work

2008-03-27 Thread Steve Oldmeadow
What about from the command line/shell? e.g type "adb logcat" --~--~-~--~~~---~--~~ 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 uns

[android-developers] Re: Graphics performance

2008-03-27 Thread Steve Oldmeadow
> It's full screen (with no status bars) at whatever the default > resolution of the emulator is --- 320x480 seems about right. The texture > is the same size. I may have to compromise slightly on performance for a > real product, because GLES says you can only have powers-of-two texture > sizes,

[android-developers] LogCat window doesn't work

2008-03-27 Thread [EMAIL PROTECTED]
Hi all, LogCat window doesn't display anything? I tried the following instruction : Log.i("My Tag" ,"Informations") ; what should i do ? Thanx jack --~--~-~--~~~---~--~~ You receiv

[android-developers] Re: Share XML files

2008-03-27 Thread CaptainFanatic
Thanks for your replies. Looking at the rfcomm link above it looks like the easiest way to send data is by writing a byte array to an OutputStream on the RfcommSocket. So it looks like it will just be a case of forming an xml string from a query on my content provider, converting it into a byte ar

[android-developers] Re: Graphics performance

2008-03-27 Thread David Given
Steve Oldmeadow wrote: [...] > That is very promising. Is this at 240x320 or 320x480? What are your > texture dimensions? It's full screen (with no status bars) at whatever the default resolution of the emulator is --- 320x480 seems about right. The texture is the same size. I may have to compro

[android-developers] Re: loadFromXML causes InvalidPropertiesFormatException

2008-03-27 Thread Steve Oldmeadow
Where are you putting the properties XML? Don't forget Android processes XML in res/xml into a binary format, you need to put it in res/raw or assets to treat it as XML. Personally I find working with Android's binary format XML easier. The AttributeSet class is really handy for processing your

[android-developers] Re: Graphics performance

2008-03-27 Thread Steve Oldmeadow
> I'm now doing this... and am getting 40-50fps full screen! Which I think > is quite reasonable; frame locked to 20fps or so, it should provide > plenty of CPU time to run the game in. > > Oddly enough, the fastest GL texture format is RGB_5_5_5_1. RGB_5_6_5, > which is what I would intuitively e

[android-developers] Re: Unresolved symbols & JNI

2008-03-27 Thread David Given
Joe Onorato wrote: > Ahh, I see. It's not not finding the JNI functions, it's not able to > resolve some other symbol in the library. What happens if you compile the > .so with --error-unresolved-symbols? I don't have the toolchain with me right now, so I can't try it. I would, however, not expe

[android-developers] Re: Unresolved symbols & JNI

2008-03-27 Thread Joe Onorato
Ahh, I see. It's not not finding the JNI functions, it's not able to resolve some other symbol in the library. What happens if you compile the .so with --error-unresolved-symbols? -joe 2008/3/27 Digit <[EMAIL PROTECTED]>: > hello, > > can I ask you to list the missing functions that you need

[android-developers] Re: Unresolved symbols & JNI

2008-03-27 Thread David Given
Joe Onorato wrote: > And you're sure you installed libFnord.so in /system/lib? If it can't > dlopen it, it could be because of binary incompatibility. It could also be > filesystem permissions. Don't forget that each app runs as its own userid. > The error with dlopen means that it isn't even get

[android-developers] Re: Bitmap.compress() always returns false if the bitmap is retrieved from a bundle

2008-03-27 Thread Carl H.
My bad, I found the problem. I was setting the result in another thread and it did not catch the bundle. I manage to pass a bitmap between 2 activites. On Mar 27, 8:59 pm, "Carl H." <[EMAIL PROTECTED]> wrote: > it does not seem to work. I have the following: > >Bundlebundle= newBundle

[android-developers] Re: Coding conventions

2008-03-27 Thread Dan U.
Thanks Megha. On Mar 27, 4:42 pm, "Megha Joshi" <[EMAIL PROTECTED]> wrote: > There are no published guidelines for Android coding conventions. > A few guidelines are given in this > document:http://code.google.com/android/toolbox/performance.html > > These are largely same as the coding conventi

[android-developers] Re: Unresolved symbols & JNI

2008-03-27 Thread Digit
hello, can I ask you to list the missing functions that you need ? especially the C library ones. (not that I can help you with the linking issue though) On Thu, Mar 27, 2008 at 5:01 PM, David Given <[EMAIL PROTECTED]> wrote: > Joe Onorato wrote: > > And you're sure you installed libFnord.so in

[android-developers] Re: Cannot get Linkify.addLinks() to work

2008-03-27 Thread javasurfer
Sorry, I forgot to say that I am using android-sdk_m5- rc14_windows...thanks for any help you guys could give me. On Mar 27, 4:51 pm, javasurfer <[EMAIL PROTECTED]> wrote: > I followed the instructions in Dick Wall's tutorial in the Android > Blog - Linkify your Text. > > I wanted to match

[android-developers] Re: Who is responsible for closing FilterableListAdapters on AutoCompleteTextView

2008-03-27 Thread Megha Joshi
Hi Rainer, Could you provide your relevant code snippet? I am guessing you could not invalidate the cursor before using as I said earlier. Thanks, Megha On Thu, Mar 27, 2008 at 12:01 PM, Rainer <[EMAIL PROTECTED]> wrote: > > runQuery is called by the framework (I.e. CursorAdapter). I am simply

[android-developers] Re: Fast way to copy a sqlite db from Assets to /data/data/yourApp/databases folder

2008-03-27 Thread Charlie Collins
Great tip Omar, thanks for sharing it here. Sort of a hack, hopefully the platform will get better support for this in general, but sure beats the other methods I have tried to load up data at startup. On Mar 27, 4:08 pm, OmarFlores <[EMAIL PROTECTED]> wrote: > Hi, > > If someone might need a way

[android-developers] Re: How to delete the database from DDMS?

2008-03-27 Thread Charlie Collins
Use -wipe-data with the emulator. http://code.google.com/android/reference/emulator.html#startup-options You can do this from the command line, or from Eclipse. (In Eclipse you pass arguments in the run configuration area.) Or if you just want to clear the database of one app and nothing else,

[android-developers] Re: Can we use Google Search apis in android?

2008-03-27 Thread Megha Joshi
The Google Search APIs are not provided with the Android SDK. You could use the SearchManager class to access to Android's system search services. http://code.google.com/android/reference/android/app/SearchManager.html thanks, Megha On Thu, Mar 27, 2008 at 3:21 AM, bhushank <[EMAIL PROTECTED]>

[android-developers] Cannot get Linkify.addLinks() to work

2008-03-27 Thread javasurfer
I followed the instructions in Dick Wall's tutorial in the Android Blog - Linkify your Text. I wanted to match text in a TextField that looks like this "[geocode: latitude:38.898748, longitude:-77.037684]" and construct a Content URI and link for this text that would be used to load an Activity

[android-developers] Re: Coding conventions

2008-03-27 Thread Megha Joshi
There are no published guidelines for Android coding conventions. A few guidelines are given in this document: http://code.google.com/android/toolbox/performance.html These are largely same as the coding conventions for Java, except for prefixing variable names with 'm', and using four space inden

[android-developers] Re: Upper limit size of ImageView?

2008-03-27 Thread Joe Onorato
Hi Jakob, That image size would decompress to about 174MB (7445x11998x2), which could be more than the total amount of RAM available on some devices. It's pretty unlikely to work. -joe On Thu, Mar 27, 2008 at 2:52 PM, Jakob Bjerre Jensen < [EMAIL PROTECTED]> wrote: > > Hello, > > I have a la

[android-developers] Re: Share XML files

2008-03-27 Thread Diego Pino
Never used the bluetooth API, although regarding your other question you can write down data to a file. Files are stored under folder files/ in your application home directory (usually, data/data// If you are going to use a ContenProvider (most likely a sqlite database) I would skip the XML seria

[android-developers] Re: 8mb file

2008-03-27 Thread Megha Joshi
Hi, The 8MB file is too large to be packaged with the application. The recommended way to do this would be to install the application and then download the file. Please see the post from Dianne below on the .apk size limits: http://groups.google.com/group/android-developers/msg/c287b78edf7885ea T

[android-developers] How to save state of message queue?

2008-03-27 Thread severian
I'm not sure how to preserve the state of the message queue between instantiations of the application. To take the example of my app, I have a Service that starts a background thread. It creates a Handler for that thread which is subsequently used by Activities to post messages for background pro

[android-developers] Re: trying to install, getting duplicate

2008-03-27 Thread Agus
nvm i figured this, i went to /data/app/ and deleted my app.apk On Thu, Mar 27, 2008 at 7:12 PM, Agus <[EMAIL PROTECTED]> wrote: > bump. im having this sudden issue. i haven't encountered this before. help! > > > > On Wed, Feb 27, 2008 at 1:59 PM, franw <[EMAIL PROTECTED]> wrote: > > > > hi a

[android-developers] Re: Android tcp trouble

2008-03-27 Thread Philipp Maske
I had the same problem many times. And I guess it depends on the CPU load of the emulator when it starts/initializes. What helped was the freeware program "process tamer", which automatically lowers the process priority of a program/application when it consumes 100% CPU time. I installed this fre

[android-developers] Re: trying to install, getting duplicate

2008-03-27 Thread Agus
bump. im having this sudden issue. i haven't encountered this before. help! On Wed, Feb 27, 2008 at 1:59 PM, franw <[EMAIL PROTECTED]> wrote: > > hi all, > i am using adb install for my package from cmd line - > i made changes to the sample LunarLander and am installing > Lunarlander.apk > i

[android-developers] Re: Set current system time failed

2008-03-27 Thread vitali
The purpose of this app is exactly what are you mentioned, but over the cell network it is not possible to retrive current time, so i implement the SMTP protocol for reguesting exactly network time from a SNTP server. therefore, thanks for your answer, obviously i have to wait for a really hardwa

[android-developers] Re: HttpsURLConnection

2008-03-27 Thread Harsh Jain
Please ignore. Its working for me now. regards, harsh On Fri, Mar 28, 2008 at 2:57 AM, jarsj <[EMAIL PROTECTED]> wrote: > > I still have this problem . I am not using HTTPS, but even my normal > HTTP connection are hanging and I keep getting these classNotFound > errors. Please advice. > > regar

[android-developers] Upper limit size of ImageView?

2008-03-27 Thread Jakob Bjerre Jensen
Hello, I have a large ImageView: the source img.gif file is 1167KB large. When I run my app, it throws an exception when invoking setContentView(). The error is: ComponentInfo{...}: android.view.ViewInflate$Inflate Exception: Binary XML file line #8: Error inflating class java.lang.reflect.C

[android-developers] Re: HttpsURLConnection

2008-03-27 Thread jarsj
I still have this problem . I am not using HTTPS, but even my normal HTTP connection are hanging and I keep getting these classNotFound errors. Please advice. regards, harsh On Feb 29, 11:33 pm, "Carlos Díez Fernández" <[EMAIL PROTECTED]> wrote: > Debugging the app i got this error: > > DEBUG/(6

[android-developers] How to delete the database from DDMS?

2008-03-27 Thread Android-Berry
I want to delete a database which is created by my application. However when I use DDMS FileExplorer, select my database node and push "-" to delete, it does not work. How to remove some garbage database, which is created during test period. Thanks --~--~-~--~~~---~

[android-developers] Re: emulator without keyboard

2008-03-27 Thread Diego Torres Milano
Take a look at this post http://dtmilano.blogspot.com/2008/01/desktop-android.html On Mar 27, 4:47 pm, Raja Nagendra Kumar <[EMAIL PROTECTED]> wrote: > Hi, > > Is there a way to start the emulator with out the visual keyboard to > its right. > > Regards, > Raja Nagendra Kumar, > C.T.Owww.tejasof

[android-developers] Re: Are you satisfied or disappointed with the level of support from Google, for Android?

2008-03-27 Thread Dan U.
I think I'm more disappointed when it comes to questions about the developer challenge. I understand the lack of answers, since it's really only people from the Android dev team on here, and they probably aren't the right people to answer a lot of those questions. I guess when I have development q

[android-developers] Re: Bitmap.compress() always returns false if the bitmap is retrieved from a bundle

2008-03-27 Thread Carl H.
it does not seem to work. I have the following: Bundle bundle = new Bundle(); bundle.putParcelable("bitmap", pic); Parcelable p = bundle.getParcelable("bitmap"); Log.i("MyLog",p.toString()); Bitmap w = (Bitmap)p; Log.i("My

[android-developers] Re: Are you satisfied or disappointed with the level of support from Google, for Android?

2008-03-27 Thread Anil
Dan, Was wondering why you didn't simply release nightly builds. Harsh, I do my best to ask questions sensibly. - Anil On Mar 27, 12:49 pm, "Dan Morrill" <[EMAIL PROTECTED]> wrote: > On Thu, Mar 27, 2008 at 9:14 AM, Peli <[EMAIL PROTECTED]> wrote: > > In this sense, the Android team sticked to t

[android-developers] About Home.apk and Sources of Android

2008-03-27 Thread nico.s
Hello, I would like to know if it's possible to modify the environnement in Android like the file Home.apk. In died, i would like to create an interface different like i wish. About the sources in the web and Google, the sources still aren't free and we haven't access to this code. Finally it's

[android-developers] Fast way to copy a sqlite db from Assets to /data/data/yourApp/databases folder

2008-03-27 Thread OmarFlores
Hi, If someone might need a way to send a sqlite db with the app and then to copy it to a directory such as /data/data/yourApp/databases, here is a fast way to do it: Place the db file in the assets folder (this example can be found in: droiddraw.org | Tutorials | Third Party Tutorials by Omar F

[android-developers] Re: Problem while displying image from byte[] data

2008-03-27 Thread Dan U.
Bitmap bitmap = BitmapFactory.decodeStream(new ByteArrayInputStream(bytes)); Then just use the bitmap in an ImageView. On Mar 27, 12:38 am, Parth <[EMAIL PROTECTED]> wrote: > I am reading image from the server by making an HttpUrlConnection. And > i am getting response in the form of byte array.

[android-developers] Re: 8mb file

2008-03-27 Thread OmarFlores
The included files get zipped in the resources.ap_ and being text it will become much smaller. The problem though could be at the time when you need to extract the information from it. Have you considered splitting the file by regions? Asia, Americas, etc... Or even further, by country. That w

[android-developers] Re: Dynamic Class Loading in Android

2008-03-27 Thread knud
Hey, The key information is found at http://www.osgi.org/blog/2007/11/android-and-osgi.html namely, the classes.dex must be inside a jar file. I jar'd up a classes.dex file and fed it into the code for the osgi class loader (see http://blog.luminis.nl/luminis/entry/osgi_on_google_android_using

[android-developers] Re: Unresolved symbols & JNI

2008-03-27 Thread Joe Onorato
And you're sure you installed libFnord.so in /system/lib? If it can't dlopen it, it could be because of binary incompatibility. It could also be filesystem permissions. Don't forget that each app runs as its own userid. The error with dlopen means that it isn't even getting to dlsym, which is whe

[android-developers] Re: Are you satisfied or disappointed with the level of support from Google, for Android?

2008-03-27 Thread GUS
It was not easy to begin, now I'm have half of my project done. I hope Ican finish it in time. Better tutorials and manuals would have made it o lot easier for me. Let me give you an example. I´m right now using canvas.drawCircle method and I wanna draw maps proportional to the map zoom. The d

[android-developers] Re: Unresolved symbols & JNI

2008-03-27 Thread David Given
Joe Onorato wrote: [...] > Ususally, adb logcat will show you the symbols that are missing. Are > you seeing a case where it doesn't? I'm never seeing a case where it *does*. All I see in the logs is: D/dalvikvm( 597): LOADING path /system/lib/libFnord.so 0x4006c4f8 I/dalvikvm( 597): Unable

[android-developers] Re: Who is responsible for closing FilterableListAdapters on AutoCompleteTextView

2008-03-27 Thread Rainer
runQuery is called by the framework (I.e. CursorAdapter). I am simply using SimpleCursorAdapter with a FilterQueryProvider. cheers - Rainer On Mar 27, 7:12 pm, "Megha Joshi" <[EMAIL PROTECTED]> wrote: >  Hi, > >  You should not be calling the runQuery() method explicitly...are you > overriding t

[android-developers] Re: Share XML files

2008-03-27 Thread Megha Joshi
Hi, It is possible to send data via bluetooth using the RFCOMM class. Please check out the documentation at: http://code.google.com/android/reference/org/bluez/RfcommSocket.html Thanks, Megha On Wed, Mar 26, 2008 at 10:36 PM, CaptainFanatic <[EMAIL PROTECTED]> wrote: > > I want to share d

[android-developers] Re: Who is responsible for closing FilterableListAdapters on AutoCompleteTextView

2008-03-27 Thread Megha Joshi
Hi, You should not be calling the runQuery() method explicitly...are you overriding the runQuery() method to form your own CursorAdapter? I am not sure how your code looks like, but before using the cursor, you could use: if (cursor !=null) cursor.invalidate(); Thanks, Megha On Wed

[android-developers] Re: Possible to set default highlight color?

2008-03-27 Thread android_newbie
Will someone please give an example of setting the color of a button to a specific color such as yellow? Thanks, AN On Feb 21, 2:41 pm, "Romain Guy" <[EMAIL PROTECTED]> wrote: > Hi, > > All the widgets graphics are loaded as Drawable. As it turns out, a Drawable > expose a method called setColor

[android-developers] Re: Are you satisfied or disappointed with the level of support from Google, for Android?

2008-03-27 Thread j
Quite satisfied. I have most of my questions answered in this discussion list. On Mar 27, 11:02 am, Adriano Crestani <[EMAIL PROTECTED]> wrote: > I'm disappointed. > > I have stucked in many parts of my app implementation. Most of time I > try to understand why I get some errors checking the cl

[android-developers] Re: the code for Contacts

2008-03-27 Thread a
Is it possible to write a new Contacts application to substitute the original one? On Mar 27, 1:19 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Not possible. > > On Mar 27, 4:53 pm, a <[EMAIL PROTECTED]> wrote: > > > > > Hi, > > I'm just wondering if I can edit the code for Contacts?  I w

[android-developers] Is possible to apply animation to an Activity with theme @android:style/Theme.Dialog

2008-03-27 Thread j
Hi, Is there a way to apply slide-in-from-right animation on an Activity with theme @android:style/Theme.Dialog? I know how to apply animations to the children within the Activity view but I want the whole Dialog window to animate. Thanks! --~--~-~--~~~---~--~~ Y

[android-developers] Re: Are you satisfied or disappointed with the level of support from Google, for Android?

2008-03-27 Thread Adriano Crestani
I'm disappointed. I have stucked in many parts of my app implementation. Most of time I try to understand why I get some errors checking the classes documentation on Android Docs website, and sometimes it helps, cause I find out I'm not using the Android SDK correctly. Unfortunately, at this webs

[android-developers] Re: Unresolved symbols & JNI

2008-03-27 Thread Joe Onorato
Hi David, Ususally, adb logcat will show you the symbols that are missing. Are you seeing a case where it doesn't? -joe On Thu, Mar 27, 2008 at 10:56 AM, David Given <[EMAIL PROTECTED]> wrote: > > We're doing some work involving JNI and a native library. (Yes, we are > aware that this is off

[android-developers] Unresolved symbols & JNI

2008-03-27 Thread David Given
We're doing some work involving JNI and a native library. (Yes, we are aware that this is officially unsupported and that There Be Dragons Here.) If we try to load a library which has an unresolved symbol in it, System.loadLibrary() throws an exception complaining that it can't find the releva

[android-developers] Re: Are you satisfied or disappointed with the level of support from Google, for Android?

2008-03-27 Thread Dan Morrill
On Thu, Mar 27, 2008 at 9:14 AM, Peli <[EMAIL PROTECTED]> wrote: > In this sense, the Android team sticked to the Google code hosting > motto ( http://code.google.com/hosting/ ) "release early, release > often" on the first part - they indeed released a pre-alpha SDK - but > I personally think the

[android-developers] Re: adb logcat -f out.log doesn't work?

2008-03-27 Thread Megha Joshi
Hi, The filters do work as expected. Could you please give an example of the logcat command that you used, expected output and the actual output that you received? Thanks, Megha On Wed, Mar 26, 2008 at 6:24 AM, Raja Nagendra Kumar < [EMAIL PROTECTED]> wrote: > > Hi, > > May be there are bi

[android-developers] Free Call and SMS (World Wide)

2008-03-27 Thread HOT RIYA
Free Call and SMS (World Wide) http://www.freecall2phone.blogspot.com/ --~--~-~--~~~---~--~~ 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.co

[android-developers] Re: the code for Contacts

2008-03-27 Thread [EMAIL PROTECTED]
Not possible. On Mar 27, 4:53 pm, a <[EMAIL PROTECTED]> wrote: > Hi, > I'm just wondering if I can edit the code for Contacts?  I want to add > an extra field in the Contacts. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

[android-developers] Re: Contacts Listener

2008-03-27 Thread [EMAIL PROTECTED]
Create a content observer for the contentprovider holding the contacts information. On Mar 27, 11:59 am, spaceman <[EMAIL PROTECTED]> wrote: > Hi Guys, > > I'm new in Android development, but I need to write a listener for > contacts app. The draft logic is: when user changes, adds or deletes a >

[android-developers] Re: closing a defined subActivity/Layout

2008-03-27 Thread olivier.k
Well, I'm going to look at this. Thx for the quick answer :) Kind Regards, Olivier K. On 27 mar, 17:23, hackbod <[EMAIL PROTECTED]> wrote: > The finish() method only stops the activity it is being called in. > You must be doing something unusual to cause the previous activity to > stop as wel

[android-developers] Re: Drag and drop in Android

2008-03-27 Thread hackbod
Sorry, we aren't supporting drag and drop in the frameworks. You can implement this fairly easily yourself a few different ways (either drawing the drag in your top-level view, or creating a separate window containing the drag that you move around). On Mar 27, 2:43 am, oyvinmar <[EMAIL PROTECTED

[android-developers] Re: Set current system time failed

2008-03-27 Thread hackbod
This may not be supported in the emulator... but regardless, please don't do this. The phone will keep the clock updated from information on the cell network. On Mar 27, 2:44 am, vitali <[EMAIL PROTECTED]> wrote: > Hello, > > i try to set current system time like this: > > long systime = System

[android-developers] Re: closing a defined subActivity/Layout

2008-03-27 Thread hackbod
The finish() method only stops the activity it is being called in. You must be doing something unusual to cause the previous activity to stop as well. On Mar 27, 7:25 am, "olivier.k" <[EMAIL PROTECTED]> wrote: > Hi all, > here is my problem. > > My parent layout is displaying the menu (classic).

[android-developers] Re: Filesystem - Photos ?

2008-03-27 Thread hackbod
An application does not have free reign to read or write other application's data. For the most part, you need to go through content providers to access shared data. In particular, the contacts provider for the contacts data, and the media provider for images, music, etc. The main exception to

[android-developers] Re: How to associate my App with a file extension in the Browser

2008-03-27 Thread Jean-Baptiste Queru
To be perfectly honest here, I'm not familiar with Java Web Start (I had never heard of it before), and therefore I'll have a hard time comparing it to the capabilities I'm working on. Because of that, and because it's not available yet, I'd rather not speculate on what might or might not happen.

[android-developers] Re: Graphics performance

2008-03-27 Thread David Given
David Given wrote: [...] > If we instead use GLES, displaying a single polygon > that fills the screen, we can change the image by uploading new textures > with glTexImage2d. I'm now doing this... and am getting 40-50fps full screen! Which I think is quite reasonable; frame locked to 20fps or so

[android-developers] Re: Good example for showing exchanging of data mostly arrays or non premitive data types,objects

2008-03-27 Thread hackbod
On Mar 27, 8:28 am, Raja Nagendra Kumar <[EMAIL PROTECTED]> wrote: > Is this not very close to how O.S manage the memory swapping to > database.. Uh... not sure I understand. There isn't really swapping to the database, SQLite just opens a file and commits changes to it as you perform transacti

[android-developers] Re: Are you satisfied or disappointed with the level of support from Google, for Android?

2008-03-27 Thread Peli
I for myself found the help given in this forum quite ample. For most of the questions I came across there were already useful answers in the forum. I tried not to work against Android, but tried to see what is possible and implement features based on that. (for example, I would not have tried to

[android-developers] Re: Are you satisfied or disappointed with the level of support from Google, for Android?

2008-03-27 Thread Harsh Jain
Well, I had never have to wait for more than a day. May be you are not asking the right questions, http://www.catb.org/~esr/faqs/smart-questions.html. Please read this. regards, harsh P.S:- 4 googlers is actually a lot :) On Thu, Mar 27, 2008 at 8:21 PM, Anil <[EMAIL PROTECTED]> wrote: > > Plea

[android-developers] Re: Another Local Service issue

2008-03-27 Thread Harsh Jain
I am using callbacks with service all the time and its working. You need to define the callback as an AIDL interface. If you can paste code samples, may be we can help. harsh On Thu, Mar 27, 2008 at 4:24 PM, sazilla <[EMAIL PROTECTED]> wrote: > > any suggestion? > > On 19 Mar, 13:17, sazilla <[E

[android-developers] the code for Contacts

2008-03-27 Thread a
Hi, I'm just wondering if I can edit the code for Contacts? I want to add an extra field in the Contacts. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email t

[android-developers] emulator without keyboard

2008-03-27 Thread Raja Nagendra Kumar
Hi, Is there a way to start the emulator with out the visual keyboard to its right. Regards, Raja Nagendra Kumar, C.T.O www.tejasoft.com --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. T

[android-developers] Re: Null pointer exception when finding views by Id

2008-03-27 Thread Peli
Sometimes R.java is corrupted. It helps to clean everything either from within Eclipse or manually (delete bin/ and R.java) and rebuild from scratch. Peli On Mar 27, 2:44 pm, kaiping <[EMAIL PROTECTED]> wrote: > I am sure, Actually the R.id.account_name was a type I forgot to fix. > But, even th

[android-developers] Re: Eclipse 19% BUG

2008-03-27 Thread Peli
Mine does not hang completely, but freezes for a very long time. Just recently I found the following: http://www.eclipsezone.com/eclipse/forums/t99988.html Following advice there and manually moving all the *mylin*.jar files from the eclipse/plugin folder to some dummy folder (thereby deactivatin

[android-developers] Re: Good example for showing exchanging of data mostly arrays or non premitive data types,objects

2008-03-27 Thread Raja Nagendra Kumar
My reply inline.. On Mar 26, 10:59 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > How would you want to make it more transparant? > > If you want to kill activities when they are in the background and > restore them when the user wants to see it again you have to save the > state of the obj

[android-developers] Re: PC Restarts

2008-03-27 Thread AMGG
Thanks, but that didn't solves the problem. When I set the SDK path in the Eclipse (at the first time, just when I open the "Android" tab) this messages appears: [2008-03-27 14:57:19 - adb] Failed to get the adb version: Cannot run program "\tools\adb.exe": CreateProcess error=3, The system can

[android-developers] Re: PC Restarts

2008-03-27 Thread AMGG
Thanks, but that didn't solves the problem. When I set the SDK path in the Eclipse (at the first time, just when I open the "Android" tab) this messages appears: [2008-03-27 14:57:19 - adb] Failed to get the adb version: Cannot run program "\tools\adb.exe": CreateProcess error=3, The system can

[android-developers] Are you satisfied or disappointed with the level of support from Google, for Android?

2008-03-27 Thread Anil
Please post your opinion: For me, I am disappointed. There must be scores of Google-Android employees dedicated to this project, but only a handful help out in the forums (digit, hackbod, megha, romain) in their free time. Sometimes I am stuck for days and have to create application workarounds.

[android-developers] Re: Any workaround for the touch mode vs key mode dilemma?

2008-03-27 Thread Anil
I wasted several days on the same problem. In the end, my fix was to put the up-down dpad arrows as buttons on the screen widget. If you look at earlier posts, there are problems with these two calls. http://code.google.com/p/android/issues/detail?id=478&can=4&colspec=ID%20Type%20Version%20Securit

[android-developers] Can I save a Serializable object to SQLite datastorage.

2008-03-27 Thread Android-Berry
As title, I want to save an serializable object to datastore? is it possible? Is there any example for me? Thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group,

[android-developers] Re: Eclipse 19% BUG

2008-03-27 Thread Android-Berry
I have this issue too, now I am using relaunch on debug perspective. it works a little better. On Mar 27, 6:02 am, David Given <[EMAIL PROTECTED]> wrote: > GUS wrote: > > [...] > > > Sometimes when I'm compiling an application to run it on the emulator, > > something crashes. > > The Launching pr

  1   2   >