[android-developers] Re: Amazon Web Services (AWS) from Android

2009-02-22 Thread Al Sutton
You can already get a couple of AWS for Android http://andappstore.com/AndroidPhoneApplications/apps/30261 and http://andappstore.com/AndroidPhoneApplications/apps/8799 I would suggest you might need to look at how you're trying to do what you want to do and see if there are any Android based

[android-developers] Re: 2d background image on a 3d OpenGL game

2009-02-22 Thread quakeboy
Actually I need 3d on 2d... I mean the background image (320 x 480) is the performance bottleneck and I need to speed up that part I get 3x frame rate without the background picture alone On Feb 21, 3:27 pm, suhas wrote: > hi quakeboy, > if u want to render 2d on 3d then just use views like te

[android-developers] Re: How to get a region which is not a standard rect area

2009-02-22 Thread David Hu
I've found the key point is the path. Here are two cases: 1) Use Path.transform(Matrix) top = 150; bottom = top + resizedBitmap.getHeight(); left = 0; right = left + resizedBitmap.getWidth(); mPath = new Path(); mPath.addRect(left, top, right, bottom, Path.Direction.C

[android-developers] Re: Yes/No Dialog

2009-02-22 Thread dillirao malipeddi
int DIALOG_YES_NO_MESSAGE = 999; protected Dialog onCreateDialog(int id) { switch (id) { case DIALOG_YES_NO_MESSAGE: return new AlertDialog.Builder(Visited_channels.this) .setTitle("title") .setPositiveButton("OK", new Dia

[android-developers] Yes/No Dialog

2009-02-22 Thread Bob
Hi, How do I display a simple yes/no or ok/cancel dialog with a title and react to the user choice? Thanks, Bob --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send e

[android-developers] Re: Layout question

2009-02-22 Thread kozak
Hi, Would suggest to use a horizontal linear layout (android:orientation="horizontal") and for the side columns have suitable padding so as to corner the small images. For the image in the center use a gravity center. Something like that should work. Check this link out for more details on linear

[android-developers] Re: Solved Preferences Reset Problem

2009-02-22 Thread Eric B
Is the code generalized for any preferences? Either way, I'd like to see how you've done it as I've had problems using a database for preferences. Thanks, Eric On Sun, Feb 22, 2009 at 4:35 PM, JP wrote: > I removed it after storing a copy of the preferences in a SQLITE > database table now. >

[android-developers] Tab view exception

2009-02-22 Thread Dilli
Hi all, I am implementing a application which contains tab view in tab view there is two tabs( two views) 1) Expandable ListView 2) ListView All goes well but when i switch from portraite to landscape mode it gives me exception --" java.lang.ClassCastException: " W/dalvikvm( 1505)

[android-developers] Re: help with my implementation of mediaplayer

2009-02-22 Thread susanner
Oh, i guess i need to put .apk somewhere on my board -- 高翟辉 北京力扬科技有限公司 上地5街昊海大厦 100085 在2009-02-23,susanner 写道: Hi all, I have run mediaplayer in SDK which can play media in res/raw folder successfully on emulator , but now I wanted to run it on my hardware which have already successful

[android-developers] pvplayer_engine_test: not found

2009-02-22 Thread susanner
Hi all, I am running opencore test following opencore readme, but it keeps reminding me pvplayer_engine_test: not found anybody know why? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" grou

[android-developers] Re: How to enable ALSA on Android?

2009-02-22 Thread Nimit Manglick
You need to integrate alsa-libs into the android filesystem. Follow the instructions from :- http://labs.embinux.org/index.php/Android_Porting_Guide_to_Beagle_Board On Mon, Feb 23, 2009 at 11:12 AM, Jerry Zhang wrote: > Hi, > >I am porting Android to a real hardware device. I have written

[android-developers] Re: ListView issue- getchildat()

2009-02-22 Thread Anonymous Anonymous
Thanks Romain,But is there anyway i can set for those items which are outside the screen? or while scrolling down or something? On Mon, Feb 23, 2009 at 10:57 AM, Romain Guy wrote: > > This is working correctly. ListView contains only the number of views > needed to fill the screen. Therefore you

[android-developers] How to enable ALSA on Android?

2009-02-22 Thread Jerry Zhang
Hi, I am porting Android to a real hardware device. I have written an ALSA driver and it works well. But I don't know how to add it to Android. Can you give me some suggestions? Thanks very much.( I can not endure the muted world any more[?]) BR Jerry --~--~-~--~~~---

[android-developers] Re: ListView issue- getchildat()

2009-02-22 Thread Romain Guy
This is working correctly. ListView contains only the number of views needed to fill the screen. Therefore you cannot access the views outside of the screen since they do not exist. On Sun, Feb 22, 2009 at 9:16 PM, Anonymous Anonymous wrote: > Hi All, > > I m having problem in setting soem item

[android-developers] ListView issue- getchildat()

2009-02-22 Thread Anonymous Anonymous
Hi All, I m having problem in setting soem items in list. getChildAt() returns null if its not in the visible area :(, is there any workaround for this? for (int i = 1; i < getListView().getCount(); i++) { mCheckBox = getListView().getChildAt(i).findViewBy

[android-developers] align title in center

2009-02-22 Thread Munish
Hi I want to allign the TITLE of my application in center. I had done the same by giving spaces in the string that i want to set in title. but if the UI size changes then the alignment also changes. So i want to know that is there any method by which we can set the title in center irrespective

[android-developers] Layout question

2009-02-22 Thread Doughy
I would like to create an application that has 5 images, 4 of which are small, and one is larger. The 4 small images I would like to place in the corners of the screen, and the big image I want to be right in the center. Like this: http://www.eng.utah.edu/~jwilson/files/layout.png What is the

[android-developers] Re: How to compile G1 apps code

2009-02-22 Thread Sunil . Maharana
Yes i changed the package name. Josh Dobbs Sent by: android-developers@googlegroups.com 02/20/2009 11:15 PM Please respond to android-developers@googlegroups.com To android-developers@googlegroups.com cc Subject [android-developers] Re: How to compile G1 apps code Im just guessing bu

[android-developers] Re: Amazon Web Services (AWS) from Android

2009-02-22 Thread jjbunn
On Feb 22, 2:55 pm, "Mark Murphy" wrote: > > Many thanks ... this sounds like a good plan. However, there are quite > > a few > > of them, ten in total. > > 10 JARs? > > Which AWS service are you using? There has to be some Java client for it > less pudgy than 10 JARs' worth. > > > Is there a w

[android-developers] help with my implementation of mediaplayer

2009-02-22 Thread susanner
Hi all, I have run mediaplayer in SDK which can play media in res/raw folder successfully on emulator , but now I wanted to run it on my hardware which have already successfully implemented the android kernal and file system and audio, video drivers etc. I have no experience to implement JAVA ap

[android-developers] Re: using intents/intent filters and mime types

2009-02-22 Thread Dianne Hackborn
Just write an activity that supports the VIEW action of whatever MIME type a torrent is. On Sun, Feb 22, 2009 at 12:49 PM, Alec wrote: > > Hi > > I've been grappling with an issue all day. > > I am trying to create a program to deal with .torrent files that are > clicked on and/or downloaded by

[android-developers] Re: Install .odex + .apk

2009-02-22 Thread Dianne Hackborn
You never need to do anything with the .odex, it is created for you when needed (when the app is installed or updated or the system updated). Also it is not just a copy of the .dex, but actually the version of your code linked against the actual system it is running on. On Sun, Feb 22, 2009 at 10

[android-developers] Re: a question about gallery

2009-02-22 Thread quill
Hi, Jim, Thank you for your help. Maybe I hadn't explain my question clearly (my English is poor:( ). The images I loaded are from hard disk, and they are large. Every time I select an image in the gallery, it displays a bigger one in the ImageSwitcher, I wrote another thread to do this. The foll

[android-developers] why returns "Couldn't get connection factory client" when access gmap on emulator

2009-02-22 Thread shine
guys: I guess it is a old issue, and I have googled the related message in the group, and I think I do not miss anything: 1. I made the MD5 fingerprint of the SDK debug dertificate by keytool, and I applied the maps api key, refer to //code.google.com/ android/ toolbox/apis/mapkey.htm 2. I adde

[android-developers] Re: Using my own SQLite database

2009-02-22 Thread 冰咖啡不加糖
i know the reason. there is max size 1048576bytes 02-23 11:11:55.037: DEBUG/asset(16273): Data exceeds UNCOMPRESS_DATA_MAX (37623808 vs 1048576) it's too small. On 2月23日, 上午11时00分, 冰咖啡不加糖 wrote: > hi,gus. > let me tell you the db path. > /data/data/YOUR_PACKAGE/databases/ > just copy your db f

[android-developers] Re: Using my own SQLite database

2009-02-22 Thread 冰咖啡不加糖
hi,gus. let me tell you the db path. /data/data/YOUR_PACKAGE/databases/ just copy your db file to that directory. i successly copy note_pad.db to that dir, and successly read the data in note_pad.db using SQLiteDatabase API. but ,when i copy another db file which is larger (about 16Mb), i encoun

[android-developers] Re: "Could be better"?!?!

2009-02-22 Thread Aaron
I am not sure how you are getting so confused. It was clearly stated that charges are not *charged* until the refund period is over. When there is a charge back, which can only occur after the refund period since users are not charged yet otherwise, it's handled by Google Checkout which has a us

[android-developers] can not visit maps on emulator because of "Couldn't get connection factory client"

2009-02-22 Thread shine
guys: I guess it is a old issue, and I have googled the related message in the group, and I think I do not miss anything: 1. I made the MD5 fingerprint of the SDK debug dertificate by keytool, and I applied the maps api key, refer to //code.google.com/ android/ toolbox/apis/mapkey.htm 2. I adde

[android-developers] Re: Current Percentage of Refunds on Android Market?

2009-02-22 Thread Jon Colverson
On Feb 23, 1:04 am, Shane Isbell wrote: > What kind of current percentage of refunds are developers typically seeing > on the market? More than a 5%? For my $0.99 game (which does not have a free demo version available yet), the current refund rate for orders that are passed the refund deadline

[android-developers] Re: Think twice before turning on the "Copy Protection" option! -- there's a serious bug in Market

2009-02-22 Thread Mark Murphy
focuser wrote: > I created three. :) > > http://code.google.com/p/android/issues/detail?id=2063 > http://code.google.com/p/android/issues/detail?id=2064 > http://code.google.com/p/android/issues/detail?id=2066 I can definitely reproduce them. I've posted comments on the first and last -- I don't

[android-developers] Re: "Could be better"?!?!

2009-02-22 Thread Java Developer
Hi Stoyan, Agreed! 10 bucks for a Pinger is WY too much, that's why we removed it from the Market (we increased the price of a different app which took months to build). I found the $10 chargeback listed on another post (sorry, I don't have the link to that now). What is obvious here is NOTH

[android-developers] Current Percentage of Refunds on Android Market?

2009-02-22 Thread Shane Isbell
What kind of current percentage of refunds are developers typically seeing on the market? More than a 5%? Thanks, Shane --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group

[android-developers] Re: Solved Preferences Reset Problem

2009-02-22 Thread JP
On Feb 22, 9:40 am, Jeffrey Yasskin wrote: > http://developer.android.com/guide/topics/manifest/application-elemen... > says that persistent=true means that the system will try to keep your > app running at all times. It doesn't seem to have anything to do with > preferences, although having fe

[android-developers] Re: Customers Unable to Download Upgrades

2009-02-22 Thread Stoyan Damov
On Mon, Feb 23, 2009 at 2:15 AM, Jon Colverson wrote: > > On Feb 22, 8:27 pm, Stoyan Damov wrote: >> Ask the users to reinstall. This always works - for hanging downloads, >> hanging installs, crashes on startup. >> I don't know if a re-install equals uninstall, cancel, install though >> - becau

[android-developers] Re: Customers Unable to Download Upgrades

2009-02-22 Thread Jon Colverson
On Feb 22, 8:27 pm, Stoyan Damov wrote: > Ask the users to reinstall. This always works - for hanging downloads, > hanging installs, crashes on startup. > I don't know if a re-install equals uninstall, cancel, install though > - because if it does, you might quickly start losing money because of

[android-developers] MobileCampBrighton UK Event - Feb 28th

2009-02-22 Thread Dan W
MobileCampBrighton is a free barcamp style unconference for mobile developers and designers to meet up and share their knowledge. It's taking place this Saturday 28th February at The Skiff in Brighton, only 5 minutes walk from the train station. MobileCamp is open to everyone who wishes to partic

[android-developers] Re: Is this group moderated?

2009-02-22 Thread E. Litwin
Given all the spam on this group, I assume your question is rhetorical? On Feb 21, 3:40 pm, "neil.young" wrote: > Is this group moderated?? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Dev

[android-developers] Re: Think twice before turning on the "Copy Protection" option! -- there's a serious bug in Market

2009-02-22 Thread N4Spd
I'm been tracking down this exact issue with my app and it matches what "focuser" describes. I turned on copy protection on a free app. People started getting crashes. The app starts with a help activity containing a webview. This web view is now throwing an exception trying to access a sqlite w

[android-developers] Re: Order Inbox - symbol meaning?

2009-02-22 Thread Stoyan Damov
When your "Charge" button is disabled it means that the user has been charged. But don't get very happy! :) They can cancel in the next *48* hours (this has been seen already by several devs). Once your "O" turns green then the user has been charged and he can't request a refund. On Sat, Feb 21,

android-developers@googlegroups.com

2009-02-22 Thread JP
On Feb 22, 1:23 pm, Java Developer wrote: > Al, > > We finally made the decision to pull the plug too. I wonder how pro's that build things from scratch (i.e. do not leverage existing back ends such as Weather Channel, Amazon etc.) would sign up to the platform in an effort to build innovative

[android-developers] UI question: AnimationSet on ImageView problem

2009-02-22 Thread j
For some reason, only the alpha transition was applied to my ImageView (no scaling effect at all). What am I doing wrong? My code: logo = (ImageView) findViewById(R.id.logo); logo.setAnimation(AnimationUtils.loadAnimation(this, R.anim.myanim)); myanim.xml: http://schemas.and

[android-developers] Re: UK developers can't read their own feedback for paid apps

2009-02-22 Thread aclelland
http://www.cyrket.com/ ;) Up to date info about your game. On Feb 21, 7:59 am, "pam.alex.dri...@googlemail.com" wrote: > Please help - I have published app but can't read my own feedback for > my app as I'm UK based and its in the paid app market. > > I can't read any of my own feedback. so hav

[android-developers] Re: "Could be better"?!?!

2009-02-22 Thread Stoyan Damov
Actually you're not talking about charge backs, right? I don't think that a cancellation means that the user disputes the payment - it's just that he wants a refund and Google will refund her the money they've spent (the same amount). I don't see any fee for that here - http://market.android.com/s

android-developers@googlegroups.com

2009-02-22 Thread aclelland
We (59Pixels) are considering stopping android development in the near futures for about 10 reasons the main being 1. The 24hour return policy - http://tinyurl.com/atcou3 shows that people tend to play low cost games a few times before stopping, this is meaning that people will play the games a f

[android-developers] Re: Customers Unable to Download Upgrades

2009-02-22 Thread Shane Isbell
Hi Stoyan, We've checked with our lawyers and they said there is nothing in the Android Market T&C that would preclude developers from stocking applications on both the Android Market and alternative markets such as SlideME. Basically, it's simple. You just register at https://slideme.org/user/re

[android-developers] Re: Amazon Web Services (AWS) from Android

2009-02-22 Thread Mark Murphy
> Many thanks ... this sounds like a good plan. However, there are quite > a few > of them, ten in total. 10 JARs? Which AWS service are you using? There has to be some Java client for it less pudgy than 10 JARs' worth. > Is there a way of converting the jars directly > rather than finding all

[android-developers] Re: "Could be better"?!?!

2009-02-22 Thread Stoyan Damov
Hang on. I thought that a charge back is $3. Where did you read it's $10??? Thanks! On Mon, Feb 23, 2009 at 12:10 AM, Java Developer wrote: > > HA! > > If I didn't laugh at this I would cry. An individual bought our second > application today, a simple app which allows the user to Ping and > se

android-developers@googlegroups.com

2009-02-22 Thread Stoyan Damov
Wow. On Sun, Feb 22, 2009 at 11:23 PM, Java Developer wrote: > > Al, > > We finally made the decision to pull the plug too. There are about 10 > different reasons all related to how Google has handled everything > over the past year. From complete absence of communication, to the > lack of RC33

[android-developers] Re: Android 1.1_r1 SDK released and developer.android.com launched

2009-02-22 Thread Christine
Err, will there be an official firmware update for Dev Phone owners, or do I install from one of the sites that have been posting, like MobileCrunch? I did download the latter, but my phone says that the zip is unsigned. On Feb 9, 11:31 pm, "Justin (Google Employee)" wrote: > Hey developers, t

[android-developers] Re: Solved Preferences Reset Problem

2009-02-22 Thread Stoyan Damov
Thanks! On Sun, Feb 8, 2009 at 1:03 AM, Eric B wrote: > > A while ago, I posted (see links below) about a problem with my app. > Whenever the app was killed by the OS, either memory cleanup or device > restart, all the preferences were reset.  Since my app worked entirely > from those preference

[android-developers] Re: Paid Download Stats?

2009-02-22 Thread Stoyan Damov
Ignore. I assumed you had a demo/lite/beta/trial version of your app to see what would be the users' interest in it. On Mon, Feb 23, 2009 at 12:32 AM, Stoyan Damov wrote: > You had 11 downloads or 11 orders? > 11 downloads seem a very low number to me. > - Show quoted text - > On Sun, Feb 22, 20

[android-developers] Re: Paid Download Stats?

2009-02-22 Thread Stoyan Damov
You had 11 downloads or 11 orders? 11 downloads seem a very low number to me. On Sun, Feb 22, 2009 at 11:12 PM, tspree15 wrote: > > Is anyone having a lot of success with the market thus far? > I'm seeing about 5% of the "downloads" when compared to my same app on > the iTunes app store. > > I'm

[android-developers] Re: Amazon Web Services (AWS) from Android

2009-02-22 Thread jjbunn
On Feb 22, 1:18 pm, Mark Murphy wrote: > jjbunn wrote: > > but > > then external jars that appear to prevent the app from being built. > > For example: > > >  warning: Ignoring InnerClasses attribute for an anonymous inner class > > that doesn't come with an associated EnclosingMethod attribute.

[android-developers] Re: Customers Unable to Download Upgrades

2009-02-22 Thread Stoyan Damov
Shane, I don't know if we're allowed to sell our apps on sales channels different than Android Market. If you can elaborate on your proposal to sell on slideme I'd be more than happy to offer my app to more customers. I guess the customers themselves would be happy to have an option too, given the

[android-developers] Re: How to add transparent button to screen

2009-02-22 Thread cindy
I need to make the linear layout transparent. Other wise, I still could n't see the picture underneath. I have put the background to @android:drawable/gallery_thumb Still not working. http://schemas.android.com/apk/res/ android" android:layout_width="fill_parent" android:layout_height="f

[android-developers] Re: "Could be better"?!?!

2009-02-22 Thread Arron
I believe when the app is initially bought, it isn't charged until the 24 hours period is over. Once the refund period is over, then the opposing credit card is finally charged. During the refund period, you should not be given the burden of chargeback fees. If the user wants to charge back the

[android-developers] "Could be better"?!?!

2009-02-22 Thread Java Developer
HA! If I didn't laugh at this I would cry. An individual bought our second application today, a simple app which allows the user to Ping and search Whois information. It is called "Pinger" and cost $1.00. It was returned with the comment "Could be better". Um, of course it could be better! You o

[android-developers] Re: Refreshing sdcard from code after pushing file to sdcard

2009-02-22 Thread Ben Williamson
Excellent! Thank you... kind of hard to find something like this when you have no idea what it's called. On Feb 22, 2009 4:36 PM, "Marco Nelissen" wrote: See http://developer.android.com/reference/android/media/MediaScannerConnection.html On Sun, Feb 22, 2009 at 12:41 PM, Ben Williamson wrote

[android-developers] Re: Two questions

2009-02-22 Thread Raymond Rodgers
neil.young wrote: > Hi, > first: It seems to be impossible to post to this group using an > ordinary mailer!? I've tried to post to android- > develop...@googlegroups.com to no avail. Is this group moderated? > > second: I would like to know, whether Android is supporting JSR 177, > especially APD

[android-developers] displaying activity menu in ActivityGroup

2009-02-22 Thread kingkung
Hi, I have an ActivityGroup containing several activities in which the user can toggle among. When one activity window switches in, the other switches out. Usually, when I press the Menu button, the menu of the individual activity that is currently displayed pops up. The problem is, when the

[android-developers] Re: Refreshing sdcard from code after pushing file to sdcard

2009-02-22 Thread Marco Nelissen
See http://developer.android.com/reference/android/media/MediaScannerConnection.html On Sun, Feb 22, 2009 at 12:41 PM, Ben Williamson wrote: > > I've got some code that downloads mp3s remotely over a streaming url > connection... This all works fine but my problem is once the file is > complet

android-developers@googlegroups.com

2009-02-22 Thread Java Developer
Al, We finally made the decision to pull the plug too. There are about 10 different reasons all related to how Google has handled everything over the past year. From complete absence of communication, to the lack of RC33 on ADP1, and the terrible return/refund policy put us over the top. If we wa

[android-developers] Re: Android and JSR 177

2009-02-22 Thread Romain Guy
All your messages have been received on the mailing list, please stop posting again and again :) On Sat, Feb 21, 2009 at 10:08 AM, neil.young wrote: > > Hopefully this post will finally appear in this board. I made a couple > of attemtps to come through via mail, but for some stupid reasons it >

[android-developers] Re: Amazon Web Services (AWS) from Android

2009-02-22 Thread Mark Murphy
jjbunn wrote: > but > then external jars that appear to prevent the app from being built. > For example: > > warning: Ignoring InnerClasses attribute for an anonymous inner class > that doesn't come with an associated EnclosingMethod attribute. (This > class was probably produced by a broken com

[android-developers] Install .odex + .apk

2009-02-22 Thread Isaac Waller
Hello, I have a .odex and a .apk file. I understand that the .odex is just the classes.dex file extracted, so if there is some way I can put it back in so I can install it on the emulator? I am getting errors about classes.dex without that. Thanks, Isaac --~--~-~--~~~-

[android-developers] This is a message

2009-02-22 Thread neil.young
This is a message. --~--~-~--~~~---~--~~ 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 e

[android-developers] Re: using intents/intent filters and mime types

2009-02-22 Thread Alec
Hi I've been grappling with an issue all day. I am trying to create a program to deal with .torrent files that are clicked on and/or downloaded by the browser. Currently the downloader reports "Cannot download. the content being downloaded is not supported on the phone" Im fairly sure this is d

[android-developers] Re: Nice Settings Management?

2009-02-22 Thread neha toor
visit here for all free stuff and check out our other free sites. http://tinyurl.com/d2t3sh http://tinyurl.com/aej94c http://tinyurl.com/c7khum http://tinyurl.com/aznmhq http://tinyurl.com/bempdf Pastikan Supervisor Anda hadir dalam workshop ini !! Introduction Dalam konteks struktur organisasi po

[android-developers] Re: Long click on list activity item

2009-02-22 Thread anon8
Try looking at: AdapterView.onItemLongClick() ListView implements AdapterView, so you'll have access to that juicy method, which will pass the id of the item clicked as well as the item's view the same as with onListItemClick(). {begin code} // ListActivity has a ListView, which you can get wi

[android-developers] Re: Think twice before turning on the "Copy Protection" option! -- there's a serious bug in Market

2009-02-22 Thread neha toor
visit here for all free stuff and check out our other free sites. http://tinyurl.com/d2t3sh http://tinyurl.com/aej94c http://tinyurl.com/c7khum http://tinyurl.com/aznmhq http://tinyurl.com/bempdf Pastikan Supervisor Anda hadir dalam workshop ini !! Introduction Dalam konteks struktur organisasi po

[android-developers] using intents/intent filters and mime types

2009-02-22 Thread Alec
Hi I've been grappling with an issue all day. I am trying to create a program to deal with .torrent files that are clicked on and/or downloaded by the browser. Currently the downloader reports "Cannot download. the content being downloaded is not supported on the phone" Im fairly sure this is d

[android-developers] Setting a new WebViewClient

2009-02-22 Thread marmor
Hi, I'm trying to set my own progress bar to my WebView, I successfully tried creating my own class "MyWebView" which creates a progress bar in the constructor and then sets a new WebViewClient which has an overriden "onPageFinished" to terminate the progress bar. The problem is that using that

[android-developers] Re: Think twice before turning on the "Copy Protection" option! -- there's a serious bug in Market

2009-02-22 Thread neha toor
visit here for all free stuff and check out our other free sites. http://tinyurl.com/d2t3sh http://tinyurl.com/aej94c http://tinyurl.com/c7khum http://tinyurl.com/aznmhq http://tinyurl.com/bempdf Pastikan Supervisor Anda hadir dalam workshop ini !! Introduction Dalam konteks struktur organisasi po

[android-developers] Re: How to make my screen :1 momentarily appear before switching to sceren:2

2009-02-22 Thread Jeffrey Yasskin
I'm fairly new at this, so take the following with a grain of salt. Android has a UI thread, which is the only place things render. While Screen1.onStart() is running, it's occupying the UI thread, so nothing, including screen1, can be displayed to the user. Thread.sleep () just keeps the UI occu

[android-developers] Re: Nice Settings Management?

2009-02-22 Thread neha toor
visit here for all free stuff and check out our other free sites. http://tinyurl.com/d2t3sh http://tinyurl.com/aej94c http://tinyurl.com/c7khum http://tinyurl.com/aznmhq http://tinyurl.com/bempdf Pastikan Supervisor Anda hadir dalam workshop ini !! Introduction Dalam konteks struktur organisasi po

[android-developers] Delay in sound playback????

2009-02-22 Thread jakobsboer...@gmail.com
Hello I've been working on a soundboard type device that plays various mp3 files on screen taps, but the problem i'm stuck with right now is there is a delay after the screeen is touched... --~--~-~--~~~---~--~~ You received this message because you are subscribed

[android-developers] Does Android support APDUConnection as known from JSR 177?

2009-02-22 Thread Neil.Young
Simple question. More answers? Regards --~--~-~--~~~---~--~~ 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 gr

[android-developers] Re: Context.startService - The service does not stay running...

2009-02-22 Thread Rahim Sonawalla
I just started working with Android recently, so I don't know for sure, but I think this might be because the timer used by Handlers is only incremented when the CPU is running. When your phone becomes inactive, the Android OS might shut down the CPU (this was mentioned in one of the Google I/0 20

[android-developers] Android and JSR 177

2009-02-22 Thread neil.young
Hopefully this post will finally appear in this board. I made a couple of attemtps to come through via mail, but for some stupid reasons it doesn't work... Here the question: Does Android support JSR 177 now, especially APDUConnection? Regards --~--~-~--~~~---~--~--

[android-developers] Strange problem with this board

2009-02-22 Thread neil.young
I cannot post via email. How are you participating here? Regards --~--~-~--~~~---~--~~ 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 T

[android-developers] UK developers can't read their own feedback for paid apps

2009-02-22 Thread pam.alex.dri...@googlemail.com
Please help - I have published app but can't read my own feedback for my app as I'm UK based and its in the paid app market. I can't read any of my own feedback. so have no way of knowing what problems are should they exist. Also please can my purchase price be listed in dollars not pounds as th

[android-developers] Does Android support JSR 177 APDUConnection?

2009-02-22 Thread neil.young
Regards --~--~-~--~~~---~--~~ 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-develo

[android-developers] Specifying Android project dependencies (in Eclipse)

2009-02-22 Thread Henrik Gustafsson
Hi all! This was originally posted as a StackOverflow question ( http://stackoverflow.com/questions/549451 ), but following advice from #android I will also post the question here. I have two Android projects, a 'library project' containing a custom layout, and an 'application project'

[android-developers] Does Android support JSR 177 APDUConnection?

2009-02-22 Thread neil.young
Regards --~--~-~--~~~---~--~~ 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-develo

[android-developers] Checking whether the screen is locked

2009-02-22 Thread Bram Bonné
Hi, I'm writing a presence agent application for Android (that checks if you are 'available' or 'away'). For this I would like to check any activity on the phone. The easiest way to do this would be to check whether the screen is locked. Is there any way to do this? Alternatively, is there a way

[android-developers] Order Inbox - symbol meaning?

2009-02-22 Thread sdc2008
How do I know in the Order Inbox which items were charged properly? Where can I find what the symbols mean under the Charge column? Is a "-" a successful charge, or a "O"? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Grou

[android-developers] Checking whether the screen is locked

2009-02-22 Thread Bram Bonné
Hi, I'm writing a presence agent application for Android (that checks if you are 'available' or 'away'). For this I would like to check any activity on the phone. The easiest way to do this would be to check whether the screen is locked. Is there any way to do this? Alternatively, is there a way

[android-developers] Test

2009-02-22 Thread Neil.Young
Obviously it is not possible to post here using mail... Strange... --~--~-~--~~~---~--~~ 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 T

[android-developers] Re: MenuItems and Typefaces

2009-02-22 Thread G_man
I don't mean to let you down but as of now, android does not have an arabic font I have a g1 and I can view arabic (disconnected letters) but this is because I have root access and I replaced the default system font with one that supports arabic your application will not be readable for users. T

[android-developers] Context menus for TableRow?

2009-02-22 Thread jsdf
Hi all, I'm stumped. I have a table with data rows that are dynamically created. I am trying to map a context menu to each table row that shows "Delete item", and on click, lets me delete the item. Simple, right? The problem is that my onContextItemSelected(MenuItem item) handler always has a n

[android-developers] Re: what is difference between OnClickListener and OnTouchListener?

2009-02-22 Thread kamaraj
Check out here http://groups.google.com/group/android-beginners/browse_thread/thread/723395727d2ca8b8 http://developer.android.com/guide/topics/ui/ui-events.html bye kamaraj.s On Feb 21, 6:06 pm, jj wrote: > Hello folk > what is difference between OnClickListener and OnTouchListener? >  I don

[android-developers] Is this group moderated?

2009-02-22 Thread neil.young
Is this group moderated?? --~--~-~--~~~---~--~~ 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 g

[android-developers] Re: Solved Preferences Reset Problem

2009-02-22 Thread Jeffrey Yasskin
http://developer.android.com/guide/topics/manifest/application-element.html#persistent says that persistent=true means that the system will try to keep your app running at all times. It doesn't seem to have anything to do with preferences, although having fewer restarts could easily make any nonde

[android-developers] Two questions

2009-02-22 Thread neil.young
Hi, first: It seems to be impossible to post to this group using an ordinary mailer!? I've tried to post to android- develop...@googlegroups.com to no avail. Is this group moderated? second: I would like to know, whether Android is supporting JSR 177, especially APDUConnection, meanwhile. Regard

[android-developers] Active Calendar app on Android Emulator?

2009-02-22 Thread Tim Bao
Hi, all, I am sorry to bring this into such a board audience but seems nobody has posted similar problem or solution on the internet. I am trying to use Calendar.apk in the emulator on a windows xp system. The SDK version I am using is 1.1r1. However, the calendar app will always go away with a

[android-developers] writing into sd card falling

2009-02-22 Thread jaimin
hi . i have created one apllication in that i have download images and stored into my sd card but while downloading my images are not stored in my sd card folder so any help here is my code class DThread extends Thread { public void run() { // Get a Connectio

[android-developers] Re: Android - next attempt

2009-02-22 Thread Neil.Young
This is just a PING, because I have the impression, my posts do not come through... --~--~-~--~~~---~--~~ 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@

[android-developers] New or Existing Application.

2009-02-22 Thread Kizz-Ann
Is their an Application that records Incoming/Outgoing calls. & The name of the app that reminds you of missed messages. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this grou

[android-developers] Does Android support JSR 177 APDUConnection?

2009-02-22 Thread Neil.Young
Regards --~--~-~--~~~---~--~~ 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-devel

[android-developers] Get application ID of my app on the market

2009-02-22 Thread Wah
Hi: I hope to figure out the direct URL link to my application on the market like http://market:blahblah I was able to find the application ID previously by going to the UI interface to upload application, and looking at the URL link that can edit the app. However, this method doesn't seem to w

  1   2   >