[android-developers] Re: Camera.getNumberOfCameras() not working

2011-04-05 Thread lbendlin
I don't think any 2.2 device or older has more than one camera. So you only need to test for the existence of that one camera, possibly with Intent cameraIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: Continuously running service.

2011-04-05 Thread lbendlin
If you were a user would you like such an application on your phone? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

[android-developers] Re: Activity without GUI - Activity

2011-04-05 Thread Gorka Hernando
Hi, The thing is, if I create an Activity it always will show something on the screen, rigth? Even if I do not set any view, like in this code, it always appear the black screen of the activity. I can call to finish as soon as I read the tag and I show the toast, but it is not nice. protected

[android-developers] Dispatch KeyDown on Listview

2011-04-05 Thread mihoelzl
Hi, I want to manually dispatch a key down event in a listactivity. This works when I just add the Event to the Activity by: this.dispatchKeyEvent(new KeyEvent(KeyEvent.ACTION_DOWN, KeyEvent.KEYCODE_DPAD_DOWN)); this.dispatchKeyEvent(new KeyEvent(KeyEvent.ACTION_UP, KeyEvent.KEYCODE_DPAD_DOWN));

Re: [android-developers] Re: Continuously running service.

2011-04-05 Thread Mahavir Jain
Positively and productively, use of this application is to monitor the kids action by parent or to track the sales man or employee (who is daily on field/site) action.. Some may make the misuse of such application. And there are many such spy applications in android market. But my question is

Re: [android-developers] Re: Continuously running service.

2011-04-05 Thread TreKing
On Tue, Apr 5, 2011 at 10:10 AM, Mahavir Jain vir.j...@gmail.com wrote: But my question is related to continuosly running service in the background. I want to know if something like daemon process (continuously running process) is possible in android? No. Android can and will kill your

[android-developers] Re: Android Layouts Are Horrible

2011-04-05 Thread nation-x
I lol'd... On Apr 5, 8:25 am, Craigbtx craig...@austin.rr.com wrote: I agree with Dirk and others. After using Microsofts development environment, Visual Studio and asp.net for me, there is no reason to code database connections, html tables of data etc., sql update, delete and insert

Re: [android-developers] Re: Android Layouts Are Horrible

2011-04-05 Thread Chris Stewart
I lol'd... +1 -- Chris Stewart http://chriswstewart.com On Tue, Apr 5, 2011 at 11:30 AM, nation-x shawn.payme...@gmail.com wrote: I lol'd... On Apr 5, 8:25 am, Craigbtx craig...@austin.rr.com wrote: I agree with Dirk and others. After using Microsofts development environment, Visual

Re: [android-developers] Problem with activity group

2011-04-05 Thread TreKing
On Tue, Apr 5, 2011 at 12:20 AM, Laxmi Verma laxmiverma.andr...@gmail.comwrote: Is there any other option available instead of ActivityGroup to change the views in the tab. Yes, use Views or Fragments, as I said. If yes, then please provide some link or some code example on it. Look

Re: [android-developers] Re: Android Layouts Are Horrible

2011-04-05 Thread Chris Stewart
At the end of the day, it comes down to an allocation of resources on Google's part. I'd much rather have them spending time innovating Android, it's APIs, the Android Market, and so forth, rather than building a better GUI editor because people don't want to put in the time to learn how to do

[android-developers] Response time for web app on android

2011-04-05 Thread cipher_neo
I have a small javascript keypad which is used for loggin into a web application. It is very responsive on the desktop, but when I view the web app through the browser in the android tablet, the response is sluggish. I need to be able to make the keypad very responsive, it will serve as a kind

[android-developers] Re: Response time for web app on android

2011-04-05 Thread Maps.Huge.Info (Maps API Guru)
Is it slow on the emulator only? What device are you testing with? -John Coryat -- 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

[android-developers] Replace ADBD on emulator

2011-04-05 Thread TheVirus
I am trying to debug some adbd stuff for an app I'm writing but I need more debug output. I've compiled adbd from AOSP source but cannot find out how to overwrite it on the emulator. I've copied it to /sdcard and tried copying it but when I restart the emulator, it reverts. It seems the emulator

[android-developers] FACEBOOK ANDROID SDK API Problem to get access token

2011-04-05 Thread elioncho
Hello, I've been using the Facebook class on the FACEBOOK ANDROID SDK to sign up users with Facebook on my Android app. The authorize method has an onComplete callback where I call the getAccessToken method and it just works. The problem that I encounter right now is when I call the dialog method

Re: [android-developers] Re: (File export) What's going on with my code?[NEED HELP]

2011-04-05 Thread Alaeddine Ghribi
So i just have this problem to solve now. I'm trying everything, followed this link(http://www.brighthub.com/mobile/google-android/articles/33240.aspx) as well, and always have the problem of sdcard not mounted!I verified with Settings-Storage and it indicated unavailable . Any idea ? Thank you.

Re: [android-developers] Re: Android Layouts Are Horrible

2011-04-05 Thread TreKing
Comparing ADT to Visual Studio is a little ridiculous. Using a .Net language like C# in VS to design a GUI is a thing of beauty, but it's gotten to its current point of sophistication after *a lot* of time, money, and engineering effort. This is one of Microsoft's premier products and they've been

[android-developers] OpenGL ES for Android tutorial

2011-04-05 Thread J
Hi, anybody can sugest a tutorial for OpenGL ES on Android? The official documentation is not very extensive... Thanks, J -- 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: Continuously running service.

2011-04-05 Thread Nick Kulikaev
Did you consider a bit different approach and use alarm manager to wake up your app after regular interval? If you only need to send device location to the server this should work just fine. -- You received this message because you are subscribed to the Google Groups Android Developers group.

[android-developers] Android Tutorial

2011-04-05 Thread Vikash
Hi Can any body tel give me any link og android tutorial. so that i can start Android application building?? Thanks -- 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

Re: [android-developers] Android Tutorial

2011-04-05 Thread TreKing
On Tue, Apr 5, 2011 at 11:49 AM, Vikash srivastava.vikash.bs...@gmail.comwrote: Can any body tel give me any link og android tutorial. so that i can start Android application building?? google.com

Re: [android-developers] Re: Activity lifecycle

2011-04-05 Thread TreKing
On Mon, Apr 4, 2011 at 9:29 AM, Gino ginolee...@gmail.com wrote: In my tests, it looks like onSavedInstanceState() does not get called when switching from portrait to landscape mode, or vice versa. Do you have any flags set to lock the orientation? Rotating the device always causes a destroy

Re: [android-developers] Layout and GraphicsView

2011-04-05 Thread TreKing
On Mon, Apr 4, 2011 at 11:20 AM, henry zhlu...@gmail.com wrote: I need to add two buttons and one textView with a Graphicsview. What is a Graphicsview? How do I do this? Read the documentation? I noticed an expert, Tony Obrien, has an code example, Could you share with me? If *you*

Re: [android-developers] Keycode EVENTs

2011-04-05 Thread TreKing
On Mon, Apr 4, 2011 at 12:41 PM, kiros88 ghui...@gmail.com wrote: Iono if it is KEYCODE_HOME cuz when i try to manipulate like small task while keeping it the same it won't do it. If you're trying to do what I think you're trying to do, you can't.

Re: [android-developers] Make Text View Editable upon longclick

2011-04-05 Thread TreKing
On Sat, Apr 2, 2011 at 11:00 PM, Srinivas VG srinivas.rvcegov...@gmail.comwrote: But I was unable to perform the function...plz let me know if there are any other approaches... Swap the TextView out with an EditText.

[android-developers] Re: Activity lifecycle

2011-04-05 Thread Hari Edo
On Apr 4, 10:29 am, Gino ginolee...@gmail.com wrote: In my tests, it looks like onSavedInstanceState() does not get called when switching from portrait to landscape mode, or vice versa. There is no 'onSavedInstanceState' method in Activity. Is that a typo in your question, or a typo in your

Re: [android-developers] App shows up on PC search but not on mobile device search

2011-04-05 Thread TreKing
On Sat, Apr 2, 2011 at 4:22 AM, Godalot mze...@gmail.com wrote: Anybody know what's up? Android Market search is crap. - TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago transit

Re: [android-developers] FACEBOOK ANDROID SDK API Problem to get access token

2011-04-05 Thread TreKing
On Tue, Apr 5, 2011 at 11:30 AM, elioncho elion...@gmail.com wrote: Does anyone knows a workaround for this? Ask on a forum dedicated to the Facebook API. This group is for the Android SDK. -

Re: [android-developers] can't find my location through gps

2011-04-05 Thread TreKing
2011/4/2 henry12 henry12...@gmail.com Location location=locationManager.getLastKonwLocation(provider); i find that location==null; through my G4 i can find my location but int System 1.5 i find nothing,who can tell me why? If by System 1.5 you mean the emulator, there is no last known

[android-developers] Re: Android Layouts Are Horrible

2011-04-05 Thread Leo
I agree with the sentiment of the post.There is definitely a lot of scope for improvment in layouts. If layout designing was on par with other technologies it would make life easy for a lot of developers. It is not just a matter of learning xml. I know xml fully well, and haven't used the gui

Re: [android-developers] How to Position a android button properly?

2011-04-05 Thread TreKing
On Sun, Apr 3, 2011 at 2:18 PM, Ibrahim Khan phirebur...@gmail.com wrote: Does anyone know how to position a android button exactly where you want it? Yes. - TreKing

[android-developers] Blowfish encryption

2011-04-05 Thread madushanka
can i use the Blowfish encryption algorithm to encrypt and decrypt the files? i read that Android SDK not support to the Blowfish encryption. If so what is the good algorithm should i use? Please give me some detail description. -- You received this message because you are subscribed to the

Re: [android-developers] about unexpected behavior of android program

2011-04-05 Thread TreKing
On Sun, Apr 3, 2011 at 3:39 PM, Saurabh Patil hi5ranjits...@gmail.comwrote: some times it shows me message to force to close without any changes to code Debug your code - TreKing

[android-developers] Blowfish encryption

2011-04-05 Thread madushanka
can i use the Blowfish encryption algorithm to encrypt and decrypt the files? i read that Android SDK not support to the Blowfish encryption. If so what is the good algorithm should i use? Please give me some detail description. -- You received this message because you are subscribed to the

[android-developers] Using a 9 patch as a listSelector affects padding

2011-04-05 Thread jsera
I don't want this. How do I prevent the 9 patch from adding padding to the ListView. I have NO, repeat, NO pixels on the bottom, or the right hand side, which the docs say add padding. They are not there. -- You received this message because you are subscribed to the Google Groups Android

Re: [android-developers] How to Position a android button properly?

2011-04-05 Thread Cliff Davies
You can do this by setting the margins appropriately On Tue, Apr 5, 2011 at 6:16 PM, TreKing treking...@gmail.com wrote: On Sun, Apr 3, 2011 at 2:18 PM, Ibrahim Khan phirebur...@gmail.comwrote: Does anyone know how to position a android button exactly where you want it? Yes.

[android-developers] Re: Blowfish encryption

2011-04-05 Thread Sudhakar Chavali
You can always go with AES or 3DES algorithm. I would always prefer AES over 3DES when it meant for local storage and security is concerned. As a blackberry developer I would prefer using 3DES (Because it was one of the practice adopted by Blackberry world) when it is meant for data transfer over

Re: [android-developers] How to Position a android button properly?

2011-04-05 Thread Justin Anderson
* You can do this by setting the margins appropriately* It would probably be better to do this using layouts appropriately. But I like TreKing's answer... It answers the OP's question quite nicely. Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Tue,

Re: [android-developers] Using a 9 patch as a listSelector affects padding

2011-04-05 Thread Justin Anderson
Without showing us what you are doing exactly (i.e. some code), you aren't going to get a good answer. Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Tue, Apr 5, 2011 at 11:37 AM, jsera gall.blad...@gmail.com wrote: I don't want this. How do I

[android-developers] Bluetooth connection refused

2011-04-05 Thread social hub
Hi I am trying to connect over bluetooth. after initiating connection through the app the system prompts for pairing request and it takes 1 0r 3 seconds to get to that prompt. Finally I select pair The other device also prompts for pairing request and I selected pair After these things I

Re: [android-developers] Bluetooth connection refused

2011-04-05 Thread Kristopher Micinski
This has also happened to me, where even after you accept the pairing request you still get a connection refused error. I'm not sure why it happens, but to fix it in my code I've always just used some strategy to try again if this happens. However, when I try it the next time it (usually) works,

Re: [android-developers] Code Needed.

2011-04-05 Thread Kristopher Micinski
On Tue, Apr 5, 2011 at 7:29 AM, Marcin Orlowski webnet.andr...@gmail.com wrote: On 5 April 2011 12:32, Kirti Joshi joshikirti...@gmail.com wrote: i wanna code for same application,  can any one help me https://market.android.com/details?id=br.com.android.appointments.otavio.massard.mendes

Re: [android-developers] How to Position a android button properly?

2011-04-05 Thread Cliff Davies
I assumed he was looking to do precise positioning but otherwise I totally agree. And also with TreKing who, as always, puts the answer very succinctly :) On Tue, Apr 5, 2011 at 8:00 PM, Justin Anderson magouyaw...@gmail.comwrote: * You can do this by setting the margins appropriately* It

Re: [android-developers] Passing data with Intent problem

2011-04-05 Thread Kristopher Micinski
On Tue, Apr 5, 2011 at 5:07 AM, Filip Havlicek havlicek.fi...@gmail.com wrote: Then it should work just fine. 2011/4/5 Brad Stintson geek.bin...@gmail.com Firstly, I send data using putExtra from A to B. Then I store data in variable and then I send again from B to C. On Tue, Apr 5, 2011

[android-developers] Re: Blowfish encryption

2011-04-05 Thread madushanka
Thank you very much for your support. -- 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] Shortcut

2011-04-05 Thread b_t
Hi, In my app there is a possibility to add a shortcut to my widget. It works well for almost every shortcut type. But doesn't work well for shortcuts of a specific application. When I add this shortcut to my home screen by the launcher and click on it the following intent will be executed:

[android-developers] Re: Shortcut

2011-04-05 Thread b_t
Maybe it depends on the Launcher. I just tried Launcher Pro, and it creates the same wrong shortcut intent as created from my app. I wish I knew what Launcher is the default launcher in my device ... On ápr. 5, 21:38, b_t bartata...@gmail.com wrote: Hi, In my app there is a possibility to add

[android-developers] Remote access to phones

2011-04-05 Thread kypriakos
Hi all, I am trying to figure out a way to access the htc phones (running Android 1.6 and 2.2) over ssh. I used the following I found from a posting: setprop service.adb.tcp.port stop adbd (by the way this means reboot unless you have a terminal on the

Re: [android-developers] Keycode EVENTs

2011-04-05 Thread Justin Anderson
The Android OS does not allow an application to intercept the home button key... Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Tue, Apr 5, 2011 at 11:02 AM, TreKing treking...@gmail.com wrote: On Mon, Apr 4, 2011 at 12:41 PM, kiros88

[android-developers] Re: Using a 9 patch as a listSelector affects padding

2011-04-05 Thread jsera
ListView android:id=@+id/mainList android:layout_width=fill_parent android:layout_height=fill_parent android:layout_below=@+id/topNav android:layout_above=@+id/zgallery android:cacheColorHint=#FFF

[android-developers] Promotional Graphic in PNG gets converted to _very lossy_ JPEG in Android Market?

2011-04-05 Thread Marc Reichelt
Hi! I have a problem with the Android Market. I uploaded a promotional graphic (180w x 120h) as PNG. However, the Android Market seems to apply a _very_ lossy JPEG compression on it - it just looks ugly. Here is the image I uploaded to the Android Market:

Re: [android-developers] socket is not connected

2011-04-05 Thread TreKing
On Sun, Apr 3, 2011 at 9:21 PM, adri adrianadalto...@gmail.com wrote: it alwayd says socket is not connected what does thay mean? http://tinyurl.com/3wpmd4v :/ - TreKing

[android-developers] When to set android:anyDensity to what value?

2011-04-05 Thread MarcoAndroid
Hello there, I've read http://developer.android.com/guide/practices/screens_support.html and http://groups.google.com/group/android-developers/browse_thread/thread/ed305e5d08f11202/6b8feb7a05d9ef6b and http://groups.google.com/group/android-developers/browse_frm/thread/518ee3894af29650 and more

[android-developers] Re: JUnit test case blocking main UI thread for AsyncTask

2011-04-05 Thread Jason
Hi, Missed your response. This didn't work for me unfortunately. Interestingly if I mark the test with @UiThreadTest I get the same deadlock behavior, which makes me wonder whether there is some sort of JUnit test state being re-used when the test is run in a suite? As it stands I have a bunch

Re: [android-developers] Re: Using a 9 patch as a listSelector affects padding

2011-04-05 Thread Justin Anderson
What does your 9 patch look like? Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Tue, Apr 5, 2011 at 2:27 PM, jsera gall.blad...@gmail.com wrote: ListView android:id=@+id/mainList android:layout_width=fill_parent

Re: [android-developers] Re: Android Layouts Are Horrible

2011-04-05 Thread Dianne Hackborn
On Tue, Apr 5, 2011 at 10:15 AM, Leo allway...@gmail.com wrote: It is not just a matter of learning xml. I know xml fully well, and haven't used the gui tool yet. I only create layouts with handwritten xml. But when you encounter two attributes like gravity and layout_gravity you scratch your

Re: [android-developers] When to set android:anyDensity to what value?

2011-04-05 Thread Dianne Hackborn
Always set it to true... or better, just make android:targetSdkVersion = 4. Having it false is only for compatibility with old apps that were written before there was a concept of density in the APIs. Using this compatibility mode can cause some undesirable artifacts such as text metrics being

[android-developers] Re: Honeycomb Preview SDK: HTTP Live Streaming support validation

2011-04-05 Thread Mrid
referring to the solution in bug report, I tried to play a .m3u8 format file by using httplive:// instead of http:// in the url. I was able to play the sample video from apple but I am not able to play .m3u8 files which I have. These are directly from inlet and I am able to play them on iphones

Re: [android-developers] Passing member variables from AsyncTask

2011-04-05 Thread TreKing
On Mon, Apr 4, 2011 at 10:43 AM, Narinder Beri narinderb...@gmail.comwrote: I am passing a member variable of AsyncTask from onPostExecute method to a method of the UI thread as below - is it safe OR am I doing something very wrong here? Have you stepped through the code? Can you confirm the

[android-developers] Re: JUnit test case blocking main UI thread for AsyncTask

2011-04-05 Thread Jason
OK.. So after re-thinking this I realized why the problem is occurring, although I still do not have a solution. When the test is running it seems to be treating itself as the main UI thread, which would make sense since it's an ActivityInstrumentationTestCase2. The AsyncTask performs the

[android-developers] Re: Using a 9 patch as a listSelector affects padding

2011-04-05 Thread jsera
It looks like this: http://www.yourmomsa.com/misc/screenshot.png On Apr 5, 2:03 pm, Justin Anderson magouyaw...@gmail.com wrote: What does your 9 patch look like? Thanks, Justin Anderson MagouyaWare Developerhttp://sites.google.com/site/magouyaware On Tue, Apr 5, 2011 at 2:27 PM, jsera

[android-developers] Java Developer Needed in TN -- F2F required --

2011-04-05 Thread Leon Parker
Hello Folks, Please go through the below requirements and let me know if you have any consultant for the below position? *Job Title : Java Developer Location: Nashville, TN. Duration: 3+ months contract Bill rate is max 45hr/hr on C2C* I have a client who wants someone to get started Monday.

Re: [android-developers] Java Developer Needed in TN -- F2F required --

2011-04-05 Thread TreKing
On Tue, Apr 5, 2011 at 4:42 PM, Leon Parker leon.pan...@gmail.com wrote: and they have to be very solid. Will you accept highly viscous? - TreKing http://sites.google.com/site/rezmobileapps/treking

[android-developers] Re: Android Layouts Are Horrible

2011-04-05 Thread jsera
Having developed for Android since the launch of the G1, and having spent the last 10-11 months writing Android apps full-time, the layouts aren't actually that bad. Actually, RelativeLayout isn't that bad. I've never had a layout simple enough for LinearLayout or FrameLayout, and having spent a

Re: [android-developers] Re: Android Layouts Are Horrible

2011-04-05 Thread Xavier Ducrohet
Our layout editors in Eclipse have been somewhat low priority for a long time but we are now focusing some effort on it. You may have seen that ADT 10 includes a lot of new features and we have more coming for the next versions. We are working on: - better interactivity in the editor itself. -

Re: [android-developers] Re: Using a 9 patch as a listSelector affects padding

2011-04-05 Thread Justin Anderson
From the Dev Guide on 9-Patch drawables ( http://developer.android.com/guide/topics/graphics/2d-graphics.html#nine-patch ): *A NinePatch drawable is a standard PNG image that includes an extra 1-pixel-wide border. It must be saved with the extension .9.png, and saved into the res/drawable/

[android-developers] Re: Promotional Graphic in PNG gets converted to _very lossy_ JPEG in Android Market?

2011-04-05 Thread Marc Reichelt
Hi again, by the way, the app (German language) can be viewed here: https://market.android.com/details?id=de.nichtlustig.android All other images apart from the Promotional Graphic look ok. Regards Marc Reichelt || http://www.marcreichelt.de/ On 5 Apr., 22:31, Marc Reichelt

Re: [android-developers] Fade in animation is not getting displayed?

2011-04-05 Thread Justin Anderson
Where is the code for actually running the animation? Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Tue, Apr 5, 2011 at 5:47 AM, Pink sivareddy.j...@gmail.com wrote: Hi, I am using fade in animation in my application. When i try to play

Re: [android-developers] Facade Support

2011-04-05 Thread Justin Anderson
huh? Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Tue, Apr 5, 2011 at 4:04 AM, rahul katoc...@gmail.com wrote: I m using ase_r25_2.1_04-02-2011.apk for android SDK. From where I will get the supported facade? -- You received this message

Re: [android-developers] how to make timetable in android.

2011-04-05 Thread Justin Anderson
http://www.catb.org/~esr/faqs/smart-questions.html Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Tue, Apr 5, 2011 at 1:43 AM, Kirti Joshi joshikirti...@gmail.com wrote: how to make timetable and schedule for a day, week and month. in android

[android-developers] Httposter could not be resolved

2011-04-05 Thread Sarath Krishna
Hello every one, This is the code I wrote a code for uploading data from android phone to a server String url = http://www.orsas.com/ServiceMatalan.php;; MapString, String kvPairs = new HashMapString, String(); kvPairs.put(vehicle, dataRecord.toString());

Re: [android-developers] MediaPlayer

2011-04-05 Thread Justin Anderson
What problem are you having? Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Sat, Apr 2, 2011 at 4:16 PM, pharaoh edelcides.goncal...@gmail.comwrote: Can anyone tell me what is wrong with this code? package infinite.fenix.android; import

Re: [android-developers] Still having issues.

2011-04-05 Thread Justin Anderson
Gee... that's nice. Thanks for sharing. Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Sat, Apr 2, 2011 at 4:51 PM, penfoldcrumbs vortex.planetar...@gmail.comwrote: Still unable to upload and intermittent page load issues as of 22.50 GMT, April

[android-developers] Re: Using a 9 patch as a listSelector affects padding

2011-04-05 Thread jsera
That extra area is transparent pixels, and they are there by design. They do not define stretchable areas, and the framework pays no attention to them. I'm using the draw9patch app that comes with the Android tools. I'm dragging a completely standard png into the tool, which is outputting a 9

Re: [android-developers] help

2011-04-05 Thread Justin Anderson
What? Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Sun, Apr 3, 2011 at 8:14 AM, nainfanta nainfa...@gmail.com wrote: Can not account registration, who can help me upload an application? From Robin 2011-04-03 22:13:01 -- You received this

[android-developers] Re: Honeycomb Preview SDK: HTTP Live Streaming support validation

2011-04-05 Thread Mrid
can anyone tell me what can be the problem? I am stuck on this !! On Apr 5, 2:15 pm, Mrid mrid@gmail.com wrote: referring to the solution in bug report, I tried to play a .m3u8 format file by using httplive:// instead of http:// in the url. I was able to play the sample video from apple

[android-developers] Gallary Scroll and click event

2011-04-05 Thread SImplyG2010
Good evening, I have a Gallery view in which each item consists of a table view with two rows of three cells. Each time someone clicks on the image in one of these cells I would like to launch a image specific intent however if I set an on click listener for each of the image views then the

Re: [android-developers] Re: Start Dialer with delay

2011-04-05 Thread TreKing
On Tue, Apr 5, 2011 at 2:28 AM, viktor victor.scherb...@gmail.com wrote: Have any ideas? Clarify your question? - TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago transit

[android-developers] Re: PreferenceActivity.Header -- is there a better way

2011-04-05 Thread Zsolt Vasvari
Dianne, could you perhaps comment on this, since you seem to be the person who actually developed this fragment stuff. Thanks. On Apr 5, 2:27 pm, Zsolt Vasvari zvasv...@gmail.com wrote: I am trying to replace the setPreferenceScreen() functionality to switch to a particular header of my new

[android-developers] Re: help

2011-04-05 Thread Spiral123
I can. Assuming its a paid app I'll give you 20% of any sales. If its free, you will need to pay me $1,000 USD upfront. On Apr 3, 10:14 am, nainfanta nainfa...@gmail.com wrote:  Can not account registration, who can help me upload an application?   From Robin 2011-04-03 22:13:01 -- You

[android-developers] ListViews inside TableLayout...

2011-04-05 Thread droid-stricken
Hi All, I have a TableLayout with one TableRow. The first column/cell is a ListView. The second cell/column is a TableLayout again which consists of 2 ListViews. When i inflate the xml layout, everything looks fine and i have set of adapters for each of the 3 ListViews. I have added dummy

[android-developers] Re: Replace ADBD on emulator

2011-04-05 Thread TheVirus
Do I need to recompile from AOSP source and replace my default .img files (if those are re-created)? On Apr 5, 12:26 pm, TheVirus thevi...@gmail.com wrote: I am trying to debug some adbd stuff for an app I'm writing but I need more debug output. I've compiled adbd from AOSP source but cannot

[android-developers] Google Music

2011-04-05 Thread imsopov
Does anybody know if Google are planning to sell music with Google Music, and more importantly are they going to have a commission scheme like Amazon or Apple? or is it going to just be a service which hosts peoples MP3s they already have? -- You received this message because you are subscribed

Re: [android-developers] Google Music

2011-04-05 Thread Mark Murphy
This has nothing to do with this list. On Tue, Apr 5, 2011 at 8:49 PM, imsopov imso...@gmail.com wrote: Does anybody know if Google are planning to sell music with Google Music, and more importantly are they going to have a commission scheme like Amazon or Apple? or is it going to just be a

Re: [android-developers] Re: Using a 9 patch as a listSelector affects padding

2011-04-05 Thread Dianne Hackborn
I believe ListView just uses whatever padding the selector drawable reports. The first thing, then, is to verify there isn't a problem in your drawable. Write a little code that retrieves the resource, calls Drawable.getPadding() to retrieve the padding, and see what you get. That will isolate

[android-developers] Re: Android Layouts Are Horrible

2011-04-05 Thread Leo
Is it possible to address the lack of examples in samples section on layouts in future releases? I spent two days trying to figure how to put 4 large images into a 2x2 grid for option selection in my first app that I am working on. Granted my UI experience is next to NIL but such things should be

Re: [android-developers] Re: Android Layouts Are Horrible

2011-04-05 Thread Xavier Ducrohet
I'm sure this is possible. We would also like have templates in Eclipse so that you can create a new layout with some pre-built items arranged in different ways. We know that sometimes it's not easy to make the layouts do what you want and we are working on making this easier. Xav On Tue, Apr

[android-developers] Re: Google Music

2011-04-05 Thread imsopov
nothing to do with this group? I want to know because I am thinking of making a android app that has the ability to let a user buy music from Google music if it is going to be selling music one the API becomes available or if not I will use the amazon API On Apr 6, 9:55 am, Mark Murphy

[android-developers] Re: Google Music

2011-04-05 Thread Zsolt Vasvari
nothing to do with this group? No, it doesn't. This is not a market research group. -- 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,

[android-developers] Re: Android App Tracker - market rank tool

2011-04-05 Thread Corey Ledin, LLC
We have really pushed to get the site in perfect owrking order and after todays hard work the site seems bug free and working better the expected new features and more go check it out and any feedback would be great. also ranks by country coming soon. On Mar 22, 9:23 am, Jake Colman

[android-developers] Re: Android App Tracker - market rank tool

2011-04-05 Thread Corey Ledin, LLC
We have really pushed to get the site in perfect working order and after today's hard work the site seems bug free and working better the expected pro app tracking available which updates by the hour plus new features and more go check it out and any feedback would be great! also ranks by country

Re: [android-developers] Re: help

2011-04-05 Thread nainfanta
Too expensive 2011-04-06 nainfanta 发件人: Spiral123 发送时间: 2011-04-06 08:00:20 收件人: Android Developers 抄送: 主题: [android-developers] Re: help I can. Assuming its a paid app I'll give you 20% of any sales. If its free, you will need to pay me $1,000 USD upfront. On Apr 3, 10:14 am,

Re: [android-developers] Gallary Scroll and click event

2011-04-05 Thread Justin Anderson
Seems odd to me that setting the onItemClickListener would cause your Gallery to lose its ability to scroll... I have used Gallery views extensively and have never seen this behavior. What does the code look like when you set the listener? Thanks, Justin Anderson MagouyaWare Developer

Re: [android-developers] Re: openGL texture render size

2011-04-05 Thread a a
After two days thinking your explanation, i have understand very well now, thanks very much! There are two point with my acquaintance: 1. --x at the first, it advoid next power of two is double with the power of two, like 1000(dec is 8), it will became 16. 2. i=1 (doing i++ in the for loop), it

[android-developers] Re: encrypt/decrypt the data from content provider

2011-04-05 Thread rashmi
I want to encrypt the data before insertion through content provider and decrypt while reading the data. So that encrypted data will be saved in database. Please provide me the information On Apr 5, 6:20 pm, Marcin Orlowski webnet.andr...@gmail.com wrote: On 5 April 2011 15:00, rashmi

[android-developers] How to pass configuration parameters to custom views during construction

2011-04-05 Thread android.xi...@gmail.com
Hello Guys, I defined a customer view, e.g. MyView, which need to be constructed with some own parameter, e.g. line number in the view, an integer. The view will be employed by my activity, MyActivity. It seems that the View's constructors are fixed and will be called by the system, and I can do

<    1   2