[android-developers] Unable to open or create cache for system/app/test.apk

2010-10-12 Thread Raj
Hi All, When I am trying to build my application as a part of image I am getting the following error : E/dalvikvm( 1334): Can't open dex cache '/data/dalvik-cache/ sys...@app@test@classes.dex': No such file or directory I/dalvikvm( 1334): Unable to open or create cache for /system/app/

[android-developers] How to develop a android app store

2010-10-12 Thread Nitin Mahajan
Hello, How can we develop an Android app store, to distribute apps/upgrades specific to a product, which is a non mobile device? Any pointers towards this would be very helpful. thanks and regards -Nitin -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: Why is my application suspended

2010-10-12 Thread Zsolt Vasvari
Maybe they refuse to list your app until Lotto 30 Tickets is released. On Oct 12, 1:43 pm, Top Android Developer khurram.sa...@gmail.com wrote: Hi Thanks for your response but shouldn't Google tell us as oppose to we guessing :) I have serious issues with ugly policies for refunds /

[android-developers] Re: Differences between Android Button and JAVA buttons

2010-10-12 Thread Zsolt Vasvari
The only difference between a button and a text label is that its default style properties enables it to be clicked on, get focused and (as Mark said it) change its appearence based on the click. Otherwise Button==Label On Oct 12, 7:01 am, Dancing Fingers batym...@gmail.com wrote: Hi guys, I'm

Re: [android-developers] System_server Crash,Provider Signature issue

2010-10-12 Thread Dianne Hackborn
You have signed it with a different cert than the system. Post further questions to a group like android-porting. On Mon, Oct 11, 2010 at 10:07 PM, GPU gopuraj...@gmail.com wrote: Hi , Any body knows why this signature issue is coming,Because of this the system_server not publishing the

[android-developers] Re: Unable to open or create cache for system/app/test.apk

2010-10-12 Thread FrankG
a) I would go with this kind of questions to android-platform b) I would not put my own apps under system/app instead provide them as a vendor extension ( look for the vendor dir ) Good luck ! Frank On 12 Okt., 08:23, Raj raaju.pra...@gmail.com wrote: Hi All, When I am trying to build my

[android-developers] Re: USB communication

2010-10-12 Thread FrankG
Hi Andrew, You mean with the default mass storage usb implementation ? IMHO no . Good luck ! Frank On 12 Okt., 05:57, Andrew Whalen the.awh...@gmail.com wrote: Is there anyway to communicate with a PC application over the USB connection? (Without using adb, I would rather not have to rely on

[android-developers] Re: FileObserver not returning file changes within subfolders?

2010-10-12 Thread FrankG
Hi Freddy, strange .. I thought the FileObserver uses Linux native call inotify , which is able to send events for directories too, What definitly will not work is FileObserver for sysfs entries. Good luck ! Frank On 12 Okt., 00:41, Freddy f...@charter.net wrote: ok.  I found more info.  

[android-developers] Re: Click on Home icon need to start application from beginning

2010-10-12 Thread vikram kadam
Hi, When you click on home button you have to create intent object and have to start home activity. but before starting activity set intent flag as follow. Intent intent=new Intent(context,HomeActivity.class); intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);

[android-developers] Why the compile task in the Ant scripts is defined to compile with debug information?

2010-10-12 Thread GDroid
Hi, I took some time and imported all the new rules from sdk-location\tools \ant\ant_rules_r3.xml During the import I have noticed that in the compiler target, where the javac task is defined the debug property is set to true (debug=true). It doesn't use the manifest debuggable flag or has any

[android-developers] Re: writing Events into Google Calendar in Android failed

2010-10-12 Thread M. Dodd
If you intend to use the provider directly you should not hard code the calendar_id value to 1 - and instead determine this value each time you create an event. On 11 Okt, 17:31, Kapuddi kapu...@gmail.com wrote: Cool. Mr. Jens, you're right. First, I checked the content_id, then I set the

[android-developers] Re: Keeping the monkey out of the preferences

2010-10-12 Thread joebowbeer
The DeviceAdminSample tests if the user is a monkey: http://developer.android.com/resources/samples/ApiDemos/src/com/example/android/apis/app/DeviceAdminSample.html http://developer.android.com/reference/android/app/ActivityManager.html#isUserAMonkey() I'd override onPreferenceTreeClick and/or

Re: [android-developers] Re: writing Events into Google Calendar in Android failed

2010-10-12 Thread Dianne Hackborn
Please note that the calendar provider is *not* part of the SDK, it *does* change between platform releases, and you *will* have compatibility problems if you are using it. On Mon, Oct 11, 2010 at 8:31 AM, Kapuddi kapu...@gmail.com wrote: Cool. Mr. Jens, you're right. First, I checked the

[android-developers] Remote Detection of Touch Events

2010-10-12 Thread Florian Lettner
Hi guys, I'm currently working on a testing framework for usability purposes and wondered if I can record or detect touch events of an application's GUI although I do not modify the target application. Some sort of keyhook. However, I do not need to directly hook a target application. I just want

Re: [android-developers] Re: Keeping the monkey out of the preferences

2010-10-12 Thread /remymartin/ O
keep your pre ferrences off mon key svp On Tue, Oct 12, 2010 at 1:03 AM, joebowbeer joe.bowb...@gmail.com wrote: The DeviceAdminSample tests if the user is a monkey: http://developer.android.com/resources/samples/ApiDemos/src/com/example/android/apis/app/DeviceAdminSample.html

[android-developers] Re: Gapless Video Playback?

2010-10-12 Thread John Wang
Anyone know if this is just default behavior that cannot be changed? On Oct 6, 11:46 am, John Wang jwang...@gmail.com wrote: I just asked a similar question. Seems like we're running into the same problem. I haven't figured out how to deal with it yet either. Tried a bunch of different

[android-developers] Re: Menu and AlertDialog are not getting displayed on regaining the focus

2010-10-12 Thread Roj
Eventhough the menu/AlertDialog not getting displayed, if we click on that area, the correct menu/item is getting selected and execute the corresponing code. So somehow the menu/AlertDialog display is not happening. Any suggestions to resolve this issue? Thanks, Roj On Oct 11, 6:47 pm, Roj

[android-developers] Unusual Android Error

2010-10-12 Thread draf...@gmail.com
I have an Activity that uses a ListView to simply display a list of options for a user to select and when they select an option they are taken to a new Activity. However on occasion the Activity with the options freezes when I try to select one of the options, I get the ANR and in the log cat

[android-developers] Re: Can we send the data to usb port

2010-10-12 Thread pramod.deore
Nobody had any idea how to send data to UART? On Oct 11, 4:27 pm, pramod.deore deore.pramo...@gmail.com wrote: As I know we can create a file only in application or at under sdcard. And I think uart is detected at /dev/tty directory. So it is impossible to create file in uart. Is am I write?

[android-developers] Re: Unable to open or create cache for system/app/test.apk

2010-10-12 Thread Raj
Thanks Frank. But the app has to be made as part of image and while building it that way it gets installed in system/app. I am moving this query to android- platform. Thanks. On Oct 12, 12:06 pm, FrankG frankgru...@googlemail.com wrote: a) I would go with this kind of questions to

[android-developers] Service start in Turn on Device

2010-10-12 Thread MarcoCanali
How start my service when turn on my device in automatic mode ?? -- 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: Service start in Turn on Device

2010-10-12 Thread pramod.deore
You have to register for the BOOT_COMPLETED intent but also for the intent that will start the actual service.In manifest file use permission as uses-permission android:name=android.permission.RECEIVE_BOOT_COMPLETED / The broadcast action android.intent.action.BOOT_COMPLETED that is sent out

[android-developers] using long touch to set a seekbar

2010-10-12 Thread bagelboy
I have an app that uses seekbars with buttons on either side for fine adjustments. Right now I use simple onclick events for the buttons, every click changes the seekbar 1 unit. What I would like to do is use a long press to quickly scroll, so if a user holds down a button for say 800 millis it

[android-developers] Re: using long touch to set a seekbar

2010-10-12 Thread bagelboy
Actually, upon further review I think I misunderstood key events, I don't think that approach is right at all. It looks like I will need to use touch events. On Oct 12, 11:25 am, bagelboy greg.do...@gmail.com wrote: I have an app that uses seekbars with buttons on either side for fine

Re: [android-developers] queryBroadcastReceivers setup

2010-10-12 Thread Mark Murphy
For the Intent, use whatever Intent you want to see if somebody will receive. queryBroadcastReceivers() is not to find *all* receivers -- it is to find if anything will receive a broadcast of a specific Intent. For the flags, 0 or MATCH_DEFAULT_ONLY are the two most likely options. On Mon, Oct

Re: [android-developers] Remote Detection of Touch Events

2010-10-12 Thread Mark Murphy
On Tue, Oct 12, 2010 at 4:13 AM, Florian Lettner fl.lett...@gmail.com wrote: I'm currently working on a testing framework for usability purposes and wondered if I can record or detect touch events of an application's GUI although I do not modify the target application. No, sorry, not from the

Re: [android-developers] Unusual Android Error

2010-10-12 Thread Mark Murphy
ANRs are because you are spending too much time on the main application thread. If you are doing network I/O, a lot of flash writes, or things like that, move that work to a background thread. On Tue, Oct 12, 2010 at 5:41 AM, draf...@gmail.com draf...@gmail.com wrote: I have an Activity that

[android-developers] Custom ListView Contain ImageView + TextView + CheckBox for selected Row

2010-10-12 Thread Ahmed Shoeib
hi all , the first Question : --- i tried to make this using normal listView and this is the pic http://www8.0zz0.com/2010/10/12/10/511032679.png i can't add image to it how i can Add image At The beginning of the listView in each Row ??? the Seconed

Re: [android-developers] Unusual Android Error

2010-10-12 Thread Donal Rafferty
Hi Mark, There are two things I do in onCreate that may be the cause. Firstly I retrive some data from a Content Provider as follows: ContentResolver cr = getContentResolver(); Cursor c = null; try{ c = cr.query(MySettings.CONTENT_URI, null, null, null, null); }

[android-developers] location receiver

2010-10-12 Thread A N K ! T
i have created a broadcast receiver registered it statically.. it is not get called on location changed have a look on code snippet and help me out to solve the issu.. public class LocationReceiver extends BroadcastReceiver{ @Override public void onReceive(Context context, Intent intent)

Re: [android-developers] location receiver

2010-10-12 Thread Mark Murphy
There is no android.intent.action.LOCATION_CHANGED in Android. Use requestLocationUpdates() to arrange to have location updates delivered to your BroadcastReceiver. On Tue, Oct 12, 2010 at 7:18 AM, A N K ! T ankit.awasth...@gmail.com wrote: i have created a broadcast receiver registered it

Re: [android-developers] location receiver

2010-10-12 Thread A N K ! T
so should i send a broadcast from activity .. but i want to send broadcast every time a gps location changed not only when my app in background and i dont want to service running in background. how to do it. On Tue, Oct 12, 2010 at 4:53 PM, Mark Murphy mmur...@commonsware.comwrote: There is no

[android-developers] Re: how to debug APK in emulator with maven dependency

2010-10-12 Thread Hugo Josefson (Jayway)
Hi Mohammad, I have now documented this on the maven-android-plugin wiki: http://code.google.com/p/maven-android-plugin/wiki/Debug Thanks, Hugo On Oct 8, 11:49 am, Mohammad Haque shumi...@gmail.com wrote: Hi I'm using maven-android-plugin in my android application. I'm a dependency which

Re: [android-developers] location receiver

2010-10-12 Thread Mark Murphy
On Tue, Oct 12, 2010 at 7:35 AM, A N K ! T ankit.awasth...@gmail.com wrote: so should i send a broadcast from activity .. No. but i want to send broadcast every time a gps location changed not only when my app in background and i dont want to service running in background. how to do it. As

[android-developers] Can I use ext2 or ext3 formatted external SD card in Android 2.1

2010-10-12 Thread Sarwar Erfan
Hi, If I insert an external sd card formatted in ext2 or ext3, will it be treated as a normal sd card (FAT32)? The device is Samsung Galaxy S (Korean) running Android 2.1 I need the answer before I get the device tomorrow, because by the time I get the device, I will not have any option to change

Re: [android-developers] location receiver

2010-10-12 Thread A N K ! T
ya i know it is the method in LocationManager. but how to use it that it listen everytime a location change occur.. can u give a example here it will be very helpful. On Tue, Oct 12, 2010 at 5:15 PM, Mark Murphy mmur...@commonsware.comwrote: On Tue, Oct 12, 2010 at 7:35 AM, A N K ! T

[android-developers] Re: queryBroadcastReceivers setup

2010-10-12 Thread zachariahyoung
What should the prefix class be for MATCH_DEFAULT_ONLY? On Oct 12, 5:36 am, Mark Murphy mmur...@commonsware.com wrote: For the Intent, use whatever Intent you want to see if somebody will receive. queryBroadcastReceivers() is not to find *all* receivers -- it is to find if anything will

Re: [android-developers] location receiver

2010-10-12 Thread guru sagar
keep that method in @Overide public void onStart(){ } in Your activity On 10/12/10, A N K ! T ankit.awasth...@gmail.com wrote: ya i know it is the method in LocationManager. but how to use it that it listen everytime a location change occur.. can u give a example here it will be very

Re: [android-developers] Re: queryBroadcastReceivers setup

2010-10-12 Thread Mark Murphy
On Tue, Oct 12, 2010 at 8:03 AM, zachariahyoung zpyo...@gmail.com wrote: What should the prefix class be for MATCH_DEFAULT_ONLY? MATCH_DEFAULT_ONLY is defined on PackageManager. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog |

Re: [android-developers] location receiver

2010-10-12 Thread A N K ! T
hey sorry i dint read the documentation of that method... it is working fine... thank a lot for help... On Tue, Oct 12, 2010 at 5:34 PM, guru sagar gurusagar...@gmail.com wrote: keep that method in @Overide public void onStart(){ } in Your activity On 10/12/10, A N K ! T

[android-developers] Is there a time limit I must wait between uploading updates to a single app?

2010-10-12 Thread Rich
I uploaded an update to one of my apps. I caught a bug in testing shortly after. I noticed that the Upload Upgrade link had disappeared, and I only have the ability to completely remove the application. I uploaded the last update yesterday, so it has been about 15 hours. I'm guessing there is

[android-developers] Is the database SQLite available on all android devices and versions ?

2010-10-12 Thread Lidia
Hello Developers, I have a question for those who has some experience with android SQLite database. I have to use an internal data base for my android application,and need to know if SQLite database is available on all devices and versions ? and if it uses additional CPU and memory resources of

Re: [android-developers] location receiver

2010-10-12 Thread A N K ! T
i have one more problem...actually i am creating an app that have two task 1) first is it just send current location to server after each location change occur.. it is working fine now. 2) if location change and user open my app it shud show him current location like google maps shows.. but i am

Re: [android-developers] Is the database SQLite available on all android devices and versions ?

2010-10-12 Thread Mark Murphy
On Tue, Oct 12, 2010 at 8:26 AM, Lidia lidyp...@yahoo.com wrote: I have a question for those who has some experience with android SQLite database. I have to use an internal data base for my android application,and need to know if  SQLite database is available on all devices and versions ?

[android-developers] Re: Is there a time limit I must wait between uploading updates to a single app?

2010-10-12 Thread Kumar Bibek
There's no time limit. You can update your app technically, every second/milisecond :) -Kumar Bibek http://techdroid.kbeanie.com On Oct 12, 5:26 pm, Rich aguynamedr...@gmail.com wrote: I uploaded an update to one of my apps.  I caught a bug in testing shortly after.  I noticed that the Upload

Re: [android-developers] location receiver

2010-10-12 Thread Mark Murphy
On Tue, Oct 12, 2010 at 8:29 AM, A N K ! T ankit.awasth...@gmail.com wrote: 2) if location change and user open my app it shud show him current location like google maps shows.. but i am not getting how to make zoom till that label.. Call setCenter() and setZoom() on your MapController,

[android-developers] How To Recover A Lost Administrator Password

2010-10-12 Thread Sami
http://softsami.blogspot.com/2010/10/how-to-recover-lost-administrator.html -- 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

[android-developers] adjustResize with Landscape Mode.

2010-10-12 Thread Ram
Hello All, I have an application which has the main layout(main.xml) as given below. RelativeLayout xmlns:android=http://schemas.android.com/apk/res/ android android:id=@+id/main android:orientation=vertical android:layout_width=fill_parent android:layout_height=fill_parent

[android-developers] getting sensor information from native code (C or C++)

2010-10-12 Thread Kimi
Hello, Is this possible to access a sensor data form native code without using Java at all? I need to access to the sensor as fast as possible, but it seems like the DELAY_FASTEST parameter when registering an event change is not fast enough. Thanks Kimi -- You received this message because

[android-developers] Re: Is the database SQLite available on all android devices and versions ?

2010-10-12 Thread Lidia
Thank You ;) Mark Murphy -- 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+unsubscr...@googlegroups.com

Re: [android-porting] Re: [android-developers] KeyCharacterMap problem and Bluetooth Headset

2010-10-12 Thread Ajith Kamath
Hi Dianne Thanks for info.. I found out the problem was in Avrcp.kl , Its file my system is using for scancode -keycode generation. I added following in avrcp.kl after i found that 164,128 and 159 has no entry at all: key 164 MEDIA_PLAY_PAUSEWAKE key 128 MEDIA_STOP WAKE key

Re: [android-developers] getting sensor information from native code (C or C++)

2010-10-12 Thread Mark Murphy
On Tue, Oct 12, 2010 at 8:52 AM, Kimi ezequiel.ac...@gmail.com wrote: Is this possible to access a sensor data form native code without using Java at all? I do not believe so. I need to access to the sensor as fast as possible, but it seems like the DELAY_FASTEST parameter when registering

[android-developers] Re: getting sensor information from native code (C or C++)

2010-10-12 Thread Kimi
So if I see that the event does not arrive so quickly it's a hardware or software (¿May be Android version?) problem. I'm trying to get light sensor information as far as possible in order to do an app. for my physics class at university. Thanks On Oct 12, 10:00 am, Mark Murphy

[android-developers] Re: Is there a time limit I must wait between uploading updates to a single app?

2010-10-12 Thread Rich
Any idea why I would only see a [ remove ] link where the Upload Upgrade link was yesterday? My other app, that I haven't updated in a while has the Upload Upgrade link still. On Oct 12, 8:42 am, Kumar Bibek coomar@gmail.com wrote: There's no time limit. You can update your app technically,

[android-developers] Re: Custom ListView Contain ImageView + TextView + CheckBox for selected Row

2010-10-12 Thread karteek
You first declare a special layout file with all your ImageView,TextView and checkbox. and use that layout file while setting array adapter On Oct 12, 3:41 pm, Ahmed Shoeib ahmedelsayed.sho...@gmail.com wrote: hi all , the first Question : --- i tried to make

Re: [android-developers] location receiver

2010-10-12 Thread A N K ! T
not workingi just want to do the thingmenu item my location do on google map.. is there any example for that On Tue, Oct 12, 2010 at 6:13 PM, Mark Murphy mmur...@commonsware.comwrote: On Tue, Oct 12, 2010 at 8:29 AM, A N K ! T ankit.awasth...@gmail.com wrote: 2) if location change

Re: [android-developers] location receiver

2010-10-12 Thread Mark Murphy
Use MyLocationOverlay. On Tue, Oct 12, 2010 at 9:28 AM, A N K ! T ankit.awasth...@gmail.com wrote: not workingi just want to do the thingmenu item my location do on google map.. is there any example for that On Tue, Oct 12, 2010 at 6:13 PM, Mark Murphy mmur...@commonsware.com

[android-developers] multiple images in a one single image

2010-10-12 Thread ntimesc
i want to create a bitmap / image which has many images like Collage which has more then one images in a single picture. I have stored all my images in a grid view but now i want to create a single image from all those images. And even i want to make few images click able so what can be the

[android-developers] Re: multiple images in a one single image

2010-10-12 Thread Yahel
Well the collage part is easy and tough : Just use one of the many flavor of drawBitmap and matrices(if you want rotation and/or scale randomness) from your source image into your big destination image. What I found difficult and did not solve that properly, is how to layout the pictures nicely so

[android-developers] Re: Amazon | xxx - Business Opportunity

2010-10-12 Thread Lance Nanek
I use the Android Market to offer paid upgrade apps from free apps myself. It doesn't work well. For one thing, you are never sure if launching a Market intent for a paid app will even work. The user might be in a country or on a carrier that doesn't support it. Checking against a country list

[android-developers] Re: Stolen app on market

2010-10-12 Thread Nightwolf
Thank you for the answers. We reported about infringement to adMob and Google. AdMob advised to file CD to Google and we did so. On 4 окт, 21:44, { Devdroid } webnet.andr...@gmail.com wrote: On 4 October 2010 19:14, Nightwolf mikh...@gmail.com wrote: Recently I've discovered that our app

Re: [android-developers] Re: External Storage File Creation Problem

2010-10-12 Thread TreKing
On Mon, Oct 11, 2010 at 11:13 PM, Goutham P N pn.gowt...@gmail.com wrote: I will explain u clearly, I created a folder in Gallary, then in that folder I created a text file and wrote some text in it and closed it. No pictures in it. I repeat: I don't think folders without images show up in

[android-developers] Write data into SDCard while mounted

2010-10-12 Thread perumal316
Hi All, Is it possible to mount/unmount the SDCard through an Android application? I am writing my own desktop application which needs to to pass some data into the Android phone which will be used by an Android application and at the same time copy some data from the phone into the desktop

Re: [android-developers] Re: Is Samsung Galaxy Tab NOT a large screen from application developer's point of view?

2010-10-12 Thread dan raaka
For all the folks who were waiting for it .. http://innovator.samsungmobile.com/galaxyTab.do -Dan 2010/10/6 Argon Konay haluk.tufe...@gmail.com Thanks a lot for your quick replies. I will generate an hardcoded demo specific to Galaxy Tab. Argon On Oct 6, 2:17 am, Dianne Hackborn

Re: [android-developers] Re: Is Samsung Galaxy Tab NOT a large screen from application developer's point of view?

2010-10-12 Thread YuviDroid
Thanks for the link! :) 2010/10/12 dan raaka danra...@gmail.com For all the folks who were waiting for it .. http://innovator.samsungmobile.com/galaxyTab.do -Dan 2010/10/6 Argon Konay haluk.tufe...@gmail.com Thanks a lot for your quick replies. I will generate an hardcoded demo

[android-developers] Re: Stolen app on market

2010-10-12 Thread Yahel
Ok, this is getting ridiculous !! We are on theft issue here, not just spam or something dull. GOOGLE should not just remove the app. This is a big, huge, and the worst infringement you can find in the whole history of market crapiness : The account of this guy should be deleted. period. As

[android-developers] Re: Write data into SDCard while mounted

2010-10-12 Thread Alessandro Pellizzari
Il Tue, 12 Oct 2010 07:08:55 -0700, perumal316 ha scritto: Is it possible to mount/unmount the SDCard through an Android application? No. Bye. -- 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: HTC auto zoom on HTML input fields

2010-10-12 Thread Andy
Anyone an idea? -- 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+unsubscr...@googlegroups.com For more

[android-developers] Re: Setting up Eclipse to build NDK using Sequoyah

2010-10-12 Thread John Gaby
Drat, I posted this to the wrong group. Sorry On Oct 12, 7:58 am, John Gaby jg...@gabysoft.com wrote: I am trying to set up Eclipse so that it can build my NDK piece.  I have installed Sequoyah, and added the Native Support.  However, when I build the project I get the error: Build of

[android-developers] Game grid images

2010-10-12 Thread acr
I'm in the beginning process of creating my first 2d game and it's a puzzle game (sort of like bejeweled) where I would have 7 different images randomly spread out across in a 7x7 grid totaling 49 images total. Basically there would be a way to match pieces and make them disappear, then the pieces

Re: [android-developers] How to develop a android app store

2010-10-12 Thread TreKing
On Tue, Oct 12, 2010 at 1:25 AM, Nitin Mahajan np.maha...@gmail.com wrote: How can we develop an Android app store, to distribute apps/upgrades specific to a product, which is a non mobile device? Your question is ridiculously broad and generic. I doubt anyone is going to give you an adequate

Re: [android-developers] Re: Stolen app on market

2010-10-12 Thread Kumar Bibek
Yeah, that should be straightforward. I guess, they just don't look at these issues seriously as yet. Or may be the legal procedures just take too long. BTW, have you got a reply? 2010/10/12 Yahel kaye...@gmail.com Ok, this is getting ridiculous !! We are on theft issue here, not just spam or

Re: [android-developers] How to develop a android app store

2010-10-12 Thread Kumar Bibek
:) Can anyone buy the Android Market? On Tue, Oct 12, 2010 at 9:04 PM, TreKing treking...@gmail.com wrote: On Tue, Oct 12, 2010 at 1:25 AM, Nitin Mahajan np.maha...@gmail.comwrote: How can we develop an Android app store, to distribute apps/upgrades specific to a product, which is a non

[android-developers] Re: Stolen app on market

2010-10-12 Thread Yahel
Atually there is no legal issue here. Against the TOS + theft : Account terminated ! I can admit although with difficulty, 32 spammers with 10 000 apps(actual numbers) and 14 years old, made-in-5-minutes crapps, to artificially increase the count of apps in the market for marketing purpose. But

Re: [android-developers] Re: using long touch to set a seekbar

2010-10-12 Thread Kumar Bibek
ACTION_CANCEL might help you to exit your custom event. On Tue, Oct 12, 2010 at 9:51 PM, bagelboy greg.do...@gmail.com wrote: OK, I solved this myself by attaching an onTouchListener to each button and listening for ACTION_DOWN and ACTION_UP events. the only problem is that if a user moves

[android-developers] Re: Question For All Android Developer

2010-10-12 Thread Kumar Bibek
Well, I suspect you can do that. Normal browsers play media files with the help of the installed plugin. If the browser doesn't support it, then you can't. As for the apk files, I suppose that you want to download the apk when the user clicks on the link. That's simple I guess. Put it as a normal

[android-developers] Re: Can I use the linux built system.img file in windos sdk

2010-10-12 Thread Kumar Bibek
I am quite sure you can. Did that image run on Ubuntu? On Oct 11, 8:01 pm, Giri sesha_giri_n...@yahoo.co.in wrote: I had built the system.img file in linux ubuntu OS for Android. I copied the system.img file in the widows SDK at /out/packagees/ target/generic directory. But when i am trying

Re: [android-developers] Re: Is there a time limit I must wait between uploading updates to a single app?

2010-10-12 Thread TreKing
On Tue, Oct 12, 2010 at 8:21 AM, Rich aguynamedr...@gmail.com wrote: Any idea why I would only see a [ remove ] link where the Upload Upgrade link was yesterday? It's possible you never submitted the original update. If you select a new version to upload, that button switches to Remove so you

[android-developers] update view when AsyncTask finished in a service

2010-10-12 Thread rrd
Hari I have an activity which starts a service. In the service there is a network lookup in an AsyncTask. Results from the lookup are saved to a database. The activity queries to database and shows the newest entries. But at the very first run the database is empty, so there is nothing to show.

[android-developers] Re: Stolen app on market

2010-10-12 Thread Nightwolf
I guess it'll take some time to get answer from Google. Hope they'll do something this year. In CD we mentioned that this particular Developer is a repeat infringer. So now there are at least 3 cases with this guy - the first is mentioned in the link above, the second is developer who has his app

Re: [android-developers] Game grid images

2010-10-12 Thread TreKing
On Tue, Oct 12, 2010 at 10:05 AM, acr acr...@gmail.com wrote: I cant seem to wrap my head around getting the basic getting this basic structure set up where it's actually usable. I cannot find any tutorials etc that cover this sort of thing. If someone could give me any pointers, or point me

[android-developers] Re: Is there a time limit I must wait between uploading updates to a single app?

2010-10-12 Thread Rich
Thanks. That's exactly what happened. On Oct 12, 12:49 pm, TreKing treking...@gmail.com wrote: On Tue, Oct 12, 2010 at 8:21 AM, Rich aguynamedr...@gmail.com wrote: Any idea why I would only see a [ remove ] link where the Upload Upgrade link was yesterday? It's possible you never

Re: [android-developers] update view when AsyncTask finished in a service

2010-10-12 Thread TreKing
On Tue, Oct 12, 2010 at 12:03 PM, rrd r...@1108.cc wrote: Is there a way to access the progress dialog created in the activity from the service? Don't think so - Service is not meant to do UI operations (besides posting notifications). Or how to do it? Ideas: a) Bind to the Service b) Send

Re: [android-developers] how to pass an application from computer to mobile device

2010-10-12 Thread gerardo rojas
Thanks, I'm gonna check and follow the document. Gerardo 2010/10/6 TreKing treking...@gmail.com On Wed, Oct 6, 2010 at 2:15 PM, gerardo gerardo.roja...@gmail.com wrote: I want to know what are the files or file that I have to export to the mobile device(sony xperia x10 mini android) , what

Re: [android-developers] Re: Can I use the linux built system.img file in windos sdk

2010-10-12 Thread J Handal
On Oct 12, 2010 12:38 PM, Kumar Bibek coomar@gmail.com wrote: I am quite sure you can. Did that image run on Ubuntu? On Oct 11, 8:01 pm, Giri sesha_giri_n...@yahoo.co.in wrote: I had built the system.img file in linux ubuntu OS for Android. I copied the system.img file in the widows SDK

[android-developers] uses-feature for groups of items

2010-10-12 Thread Craigo
The latest blog post http://android-developers.blogspot.com/2010/10/five-steps-to-future-hardware-happiness.html talks about using the uses-feature to future proof your apps. However, say you have a game that is controlled either by the accelerometer, or by a physical keyboard. I can't see

[android-developers] Re: Is there a time limit I must wait between uploading updates to a single app?

2010-10-12 Thread Pent
Welcome to the Android Market Developer Tools. You havn't been feeling very positive lately have you :-) Pent -- 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] Intent Filter by protocol specifier

2010-10-12 Thread Carlos Silva
Hi guys, are there any docs covering the filtering of the protocol specifier? Something like the market application does with market://, i'd like to make with my application. Thanks in advance. -- You received this message because you are subscribed to the Google Groups Android Developers

Re: [android-developers] Intent Filter by protocol specifier

2010-10-12 Thread Kumar Bibek
Sure http://developer.android.com/guide/topics/intents/intents-filters.html#ifs Look at android:schemes On Tue, Oct 12, 2010 at 11:33 PM, Carlos Silva r3...@r3pek.org wrote: Hi guys, are there any docs covering the filtering of the protocol specifier? Something like the market application

[android-developers] mediaplayer's onCompletionListener never called on playing 3gpp/amr audio files

2010-10-12 Thread Anil
In order to be notified when the clip finishes playing, I use the callback: player.setOnCompletionListener(new OnCompletionListener() { @Override public void onCompletion(MediaPlayer mp) {

Re: [android-developers] Intent Filter by protocol specifier

2010-10-12 Thread Carlos Silva
Thanks :) Was missing the scheme part :) On Tue, Oct 12, 2010 at 19:07, Kumar Bibek coomar@gmail.com wrote: Sure http://developer.android.com/guide/topics/intents/intents-filters.html#ifs Look at android:schemes On Tue, Oct 12, 2010 at 11:33 PM, Carlos Silva r3...@r3pek.org wrote:

[android-developers] Re: using long touch to set a seekbar

2010-10-12 Thread bagelboy
@Kumar, many thanks for that useful suggestion, I'll have a look. -BB On Oct 12, 5:23 pm, Kumar Bibek coomar@gmail.com wrote: ACTION_CANCEL might help you to exit your custom event. On Tue, Oct 12, 2010 at 9:51 PM, bagelboy greg.do...@gmail.com wrote: OK, I solved this myself by

[android-developers] Re: Singleton object with context?

2010-10-12 Thread Chuck Lega
Thanks for great input! I guess the Application object may be a simple way to store some common data, but when implementing an Util/Mgr-like class with state and context I think a separate class is to prefer. Passing context with each call may be clean, but does not cover all cases. For instance,

[android-developers] Re: Spinner. disabling does not provide any visual indication

2010-10-12 Thread Anil
ok, thanks. My workaround was to simply grab the panel containing the spinner and make it disappear. final TableRow s1Row = (TableRow) findViewById(R.id.spinner1_row); isRepeatedCheckBox .setOnCheckedChangeListener(new

[android-developers] Re: Why is my application suspended

2010-10-12 Thread Top Android Developer
I doubt this could be because of Lotto 30 ; Can someone from Google please respond / Update ? The applications are Lotto Lite Lotto 10 Tickets Lotto 40 Tickets Lotto 120 Tickets On Oct 12, 11:28 am, Zsolt Vasvari zvasv...@gmail.com wrote: Maybe they refuse to list your app until Lotto 30

[android-developers] Custom title bar with TextView and id @android:id/title does not inherit/use android:label from manifest!

2010-10-12 Thread Dimitris
I have a custom title bar that I would like to apply to all my activities. I have searched online and found a few ways of doing that however I have ran into a problem. It seems that despite the fact I have a TextView in my titlebar with id @android:id/title, Android will not use the value defined

[android-developers] Re: mediaplayer's onCompletionListener never called on playing 3gpp/amr audio files

2010-10-12 Thread Anil
I also tried player.setLooping(false); On Oct 12, 1:11 pm, Anil anil.r...@gmail.com wrote: In order to be notified when the clip finishes playing, I use the callback:                 player.setOnCompletionListener(new OnCompletionListener() {                        

Re: [android-developers] Re: Is there a time limit I must wait between uploading updates to a single app?

2010-10-12 Thread TreKing
On Tue, Oct 12, 2010 at 12:41 PM, Pent tas...@dinglisch.net wrote: You havn't been feeling very positive lately have you :-) Not any less so than usual - which might not be saying much =P They just make it *really* easy to hate on the Developer Console.

Re: [android-developers] Re: Singleton object with context?

2010-10-12 Thread TreKing
On Tue, Oct 12, 2010 at 1:37 PM, Chuck Lega chuck.l...@gmail.com wrote: For instance, say I register a listener in the singleton. The callbacks to the listener does not contain a context, and I am back at square one again...So, I guess init-ing the singleton with a context is the simplest

Re: [android-developers] Re: Why is my application suspended

2010-10-12 Thread TreKing
On Tue, Oct 12, 2010 at 1:39 PM, Top Android Developer khurram.sa...@gmail.com wrote: I doubt this could be because of Lotto 30 ; I think that was a joke ... Can someone from Google please respond / Update ? That's not going to happen. This is probably your best bet:

  1   2   >