[android-developers] Eclipse/ADT Builders configuration

2011-12-29 Thread Stefan Alder
Is there anyway to configure them? I need to insert a custom script between the step of compiling the java files, and creating the resource bundle with aapt (prior to apk), such that I can control what goes into the resource bundle. Can this be done? -- You received this message because you are

[android-developers] Re: Packing data onto socket stream ?

2011-12-29 Thread SL
I am thinking of adding another component, eg image, as follows: xxxThis is a greeting.iii... where: xxx - message type (3 bytes, text) - integer, 4 bytes, length of text 'This is a greeting.' - the actual text iii - image type (png, gif) - image length ... -

[android-developers] Re: Need simple code for C2DM

2011-12-29 Thread Zsolt Vasvari
> Hi i am a student doing projects based on C2DM technology.. What school do you go to? -- 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: AVD doesnt start with compiled ROM

2011-12-29 Thread Zsolt Vasvari
> I hope I am posting this in the right place.. Nope, not even close. -- 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 an

Re: [android-developers] Re: Re: Packing data onto socket stream ?

2011-12-29 Thread Kristopher Micinski
On Fri, Dec 30, 2011 at 5:36 PM, SL wrote: >> >> >>   xxxThis is a greeting. >>  where: >>  xxx  - message type (3 bytes, text) >> - integer, 4 bytes, length of text >> 'This is a greeting.' - the actual text >> >> >> >> >> There's no reason to use the NDK for this, >> >> The st

[android-developers] Android LAN messenger

2011-12-29 Thread Teanor Soprano
Dears, Hope you are great working. I'm search the Jabber LAN messenger in android OS(Galaxy tab). Same with pandion, spark. Help me -- 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@goo

[android-developers] Re: Packing data onto socket stream ?

2011-12-29 Thread JP
Use a byte buffer as Miguel suggested. Extract byte by byte (or long by long). You'll have to deal with the little endian / big endian problem regardless of the language/stack you chose. If you have the latitude, don't use binary... On Dec 30, 2:36 pm, SL wrote: > > > >    xxxThis is a

[android-developers] Re: Re: Packing data onto socket stream ?

2011-12-29 Thread SL
xxxThis is a greeting. where: xxx - message type (3 bytes, text) - integer, 4 bytes, length of text 'This is a greeting.' - the actual text There's no reason to use the NDK for this, The standard Java socket API can be used for this easily: http://docs.oracle.com/javas

[android-developers] Re: Configuring global proxy from code

2011-12-29 Thread Arka Sharma
On Dec 29, 9:38 am, kris wrote: > You cannot set a global proxy as you noticed that it is denied with > permission. Only apps that are signed with the same certificate of the > firmware can set the proxy(permission level 3). > > One thing that you can do is to set a per connection based proxy. Y

[android-developers] Re: Problem Loading CM7 on my SD Nook Tablet

2011-12-29 Thread hillgoo...@charter.net
> > You're asking in the wrong forum. > This is Android Developers Group, not Load CM7 On My Nook Group. > So what forum do u suggest? Mike -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-develo

[android-developers] How should one delete all of the table(but not the table itself) without making the thread using that database give an error?

2011-12-29 Thread Jeresam515
So I'm trying to have a menu button to clear my database when it is pressed, that works fine. However, as soon as new information is sent to the database the app force closes. How should i stop this? Here is the clear part: @Override public boolean onMenuItemSelected(int featureId, MenuItem item)

[android-developers] Re: Packing data onto socket stream ?

2011-12-29 Thread JP
Not so stellar advise. As Kristopher points out, the Java Socket API works just fine, and using the NDK introduces a bunch of unfavorable dependencies. For one, platform specific binaries for ARM, MIPS, x86 need to be considered... On Dec 29, 12:30 pm, Marcelo Henrique wrote: > Use NDK. for impl

[android-developers] Clarification on DPI

2011-12-29 Thread Jonathan
This quote was taken from an official Android blog post ( http://android-developers.blogspot.com/2011/07/new-tools-for-managing-screen-sizes.html ): "The original Samsung Galaxy Tab is an interesting case. Physically it is a 1024x600 7” screen and thus classified as “large”. However the device con

Re: [android-developers] JMS

2011-12-29 Thread Nikolay Elenkov
On Thu, Dec 29, 2011 at 5:45 AM, Mario Giammarco wrote: > So I need that my android app can use JMS or openwire, or AMQP (if I find a > java broker for it). > > Get the client jars for your JMS implementation, build an Android app, test if it works. If they are not using JDK API's not included i

[android-developers] Re: How to receive UDP packet on real device.

2011-12-29 Thread KiyoKiyo
I've solved my problem. I use TCP socket insted of UDP. I could make 2 TCP packet bridge tunnels for one android device. I misunderstood that it is impossible. just type adb forward tcp: tcp: adb forward tcp: tcp: It makes two tunnels from PC to Android. That establish two commu

[android-developers] "Full bleed, no border in art"

2011-12-29 Thread Jonathan
So would these be examples of *not* following the screenshot specs? https://market.android.com/details?id=com.halfbrick.fruitninja&hl=en https://market.android.com/details?id=com.zeptolab.ctr.paid&feature=search_result#?t=W251bGwsMSwxLDEsImNvbS56ZXB0b2xhYi5jdHIucGFpZCJd -- You received this mes

[android-developers] [Q] AVD doesnt start with compiled ROM

2011-12-29 Thread victor marcano
I hope I am posting this in the right place.. I have compiled the stock Gingerbread Android system.img, and ramdisk.img. I did not make any changes to the source download before i compiled. Unfortunately, AVD doesn't load the images. I just get a blank screen. I tired adb but it tells me the devic

[android-developers] outofmemory error for Videoview.i.e.how to release videoview objects??

2011-12-29 Thread Kishor Nirbhavane
Hi, i am using one activity and videoview inside it, and playing 2 videos. on start it plays first video and then an activity containing text- view will come, then on tap it will play the 2nd video. i m pssing the name of the videofile2, from the text activity,and playing the video. but i m gettin

[android-developers] Expandedlistview

2011-12-29 Thread Sean751
Hi I want to use onGroupClick to detect when a group item is clicked and do something but I also want the list view to expand or collapse as needed. How can I make use of onGroupclick or can I detect a group click in another part of the code? I have seen the example context menu code which works bu

[android-developers] Layout control for onscreen input method

2011-12-29 Thread Dreamtrove
Okay, I'm just beginning this project. I've been programming for many years but I'm new to Android. I did the hello world and a few other test apps and now I want to start my first real app, which is going to be an input method. I've got some Android books stacked up here and am holding an animal b

[android-developers] net install accuracy

2011-12-29 Thread FiltrSoft
How accurate are the number of "net installs" in my developer console? The only reason I ask is that I have both AdMob and Flurry analytics integrated into my apps and I'm seeing very low usage stats from those, but my developer console shows counts for "net installs". All total, I have only arou

[android-developers] latitude / longitude / altitude / direction of photo/image-taken in metadata of android-camera ?

2011-12-29 Thread henke54
Can it be possible that a Android camera can 'capture' the correct 4 'dimensions' : latitude / longitude / altitude / direction of photo/ image-taken , so that everybody can 'reproduce' the exact place-and- direction-of-taken-photo to share with somebody else in streetview or google maps ??? -- Y

[android-developers] How to receive UDP packet on real device.

2011-12-29 Thread KiyoKiyo
Hi. I'm trying to make simple android App that receives UDP packet from PC via USB(not WiFi). First, I tried it on emulator. I used port redirection setup as below. 1/ telnet localhost 5554 (i.e. go to the emulator control console) 2/ type "redir add udp::" (create a UDP redirection)

[android-developers] Can Android apps access both the Wi-Fi and cellular data networks at the same time?

2011-12-29 Thread DigiGuy
I'm working on an application that will run on a phone where the phone will be a station on a private Wi-Fi network. The phone will be a station, not an access point, and the private Wi-Fi network does not route to the Internet. My application needs to communicate with servers on the Internet as

[android-developers] Emulator problem - HELP!

2011-12-29 Thread markmeld
Anybody seen this message? Emulator] Xlib: sequence lost (0x1 > 0xfff9) in reply type 0x1! Next line is Emulator disconnects... -- 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@goo

[android-developers] How to invoke sim unlock pin screen

2011-12-29 Thread Giacomo Federici
As the title, how can I invoke programmatically the default screen to unlock the sim card? (The one that appears at the boot of the phone if the sim PIN is required). Thank you very much!! -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To

[android-developers] Advanced Touch Control: passing touch event from one view to another

2011-12-29 Thread Sky
I have one custom made view that I can drag across the screen horizontally. Within this view is a ScrollView. I already have it so I can decide whether the user is dragging across the screen horizontally or vertically, enabling/disabling the onTouchEvent() for the appropriate views. However the new

[android-developers] Animation Trail while using Rotate Animation

2011-12-29 Thread sunil bhatia
Hi, I am trying to rotate a framelayout at orientation change. Layout is getting rotated but it shows trail on device , Like some spots remain on the screen while roatating. Can anyone help in this regard, How to remove those animation trails? Any help on this would be highly appreciated. Thanks a

[android-developers] Guide Me please Guys I am from pakistan Asp.net c# Developer And Database developer in Microsoft Sqlserver

2011-12-29 Thread Asif Nazeer Shaikh
Please Give Me Basic Tutorials I am New Beginner To Work On Android Application So can Any one guide me I will be thankful and remain remember in my prays -- 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] Need simple code for C2DM

2011-12-29 Thread Kishore
Hi i am a student doing projects based on C2DM technology.. I dont know where to start at first.. Pls send me sample codes and mention how to run that application.. I have registered for C2DM!.. i tried to run programs given at http://code.google.com/eclipse/docs/appeng_android_run_debug.html

[android-developers] MultiTouch Zoom in ImageSwitcher

2011-12-29 Thread senthil.manickavel
How to do zoom operation in ImageSwuitcher? -- 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..

[android-developers] HelloWorld Application

2011-12-29 Thread alan4100
HelloWorld Application My first posting is at OTN Discussions Forum (under Oracle). Somebody recommended to this forum; faster responses. 99.9% Solved. I am not sure which one I am in because I am just a complete beginner. I was getting the android SDK to work from Android3 SDK Programming by Ram

[android-developers] ICS Hardware Acceleration steals my OpenGL textures?

2011-12-29 Thread carlrice
I have an Android app which uses a bit of OpenGL running on a Galaxy Nexus with ICS. After turning on hardware acceleration and using my OpenGL activity some of those textures are stolen by the system and now in my listviews and other UI elements. Its as if my GL pointers obtained via GLES20.glGenT

[android-developers] Could not find hello-world.apk

2011-12-29 Thread Francisco M. Marzoa Alonso
Hello, I'm starting writting android games with a book called Beginning Android Games, of Mario Zechner. I've written the first Hello World application after installing everything on my Ubuntu 11.10 laptop, and I doublechecked that I have followed the instructions on the book, but when I try to ru

[android-developers] How to stream .wmav2 format in Android 2.2+ ?

2011-12-29 Thread Dimitrios Makris
Hey all, I would like to ask if it possible to stream .wmav2 format in Android 2.2+. It is related to radio streaming which most links I have found is for .asf formats. (An example of a Greek radio station mms://94.75.220.129/best1222?MSWMExt=.asf). I have found some Android apps (TuneIn or Greek

[android-developers] [Urgent] [In-app Billing] Need clarification on Anroid Market application version requirements in supporting In-app Billing

2011-12-29 Thread Tim Guo
I am confused with the statement in "In-app Billing Overview": *"If your device is running Android 3.0, in-app billing requires version 5.0.12 (or higher) of the MyApps application. If your device is running any other version of Android, in-app billing requires version 2.3.4 (or higher) of the

[android-developers] single_apk_On_multiple_devices

2011-12-29 Thread Teena sharma
Hello Please give suggestion that how can i install single .apk file on different configuration devices. I am using Android 3.2 and API level 13. when i run this apk on emulator(Android 3.2) images become starched. In drawable i have four folders hdpi,large,ldpi,mdpi,xhdpi. stil its not work

[android-developers] JMS

2011-12-29 Thread Mario Giammarco
Hello, I am building an android app that need to communicate to a queue broker. I can choose any broker that can run under tomcat, I have a preference for activemq. So I need that my android app can use JMS or openwire, or AMQP (if I find a java broker for it). At the end I will use activemq

[android-developers] Flash player in background

2011-12-29 Thread asxz8722
Hi, dear I want to build a live video chating system. In my design, there are two activities: 1. chat People can chat in this activity. There should be a list of TextView, dynamic changing when someone is talking. 2. Live video player In this activity, a WebView embed a flash player to

[android-developers] Re: Disable beam on-screen confirmation

2011-12-29 Thread oavon
thanks for your post I have the exact same pb On Dec 24, 3:55 pm, Banjoo78 wrote: > Hi, I'm developing an app that will use AndroidBeamto send messages > between Android's phones. Until Gingerbread I was capable to send and > receive messages without confirmation but, with Ice Cream Sandwich the

[android-developers] Re: Disable beam on-screen confirmation

2011-12-29 Thread oavon
Thanks for your post i have the same pb On Dec 24, 3:55 pm, Banjoo78 wrote: > Hi, I'm developing an app that will use Android Beam to send messages > between Android's phones. Until Gingerbread I was capable to send and > receive messages without confirmation but, with Ice Cream Sandwich the > sy

[android-developers] Tamil App to learn Tamil Quickly now Available for Android

2011-12-29 Thread jude
Tamil is a beautiful and ancient language spoken in various parts of the World, predominantly in South India, Sri Lanka, Singapore and Malaysia. It has so many alphabets (247 to be precise) and hard to learn.Tamil alphabets application provides information about basic letters and example words appr

[android-developers] About full disk encryption

2011-12-29 Thread Qin Ding
Hi, I'm trying out Android full disk encryption feature now but not sure how to verify that the device is encrypted. What I've done is : [Test 1] 1) Push test.txt to /mnt/sdcard 2) Do full disk encryption 3) Pull the test.txt to my local [Test 2] 1) Embed test.txt into an apk as raw data 2) The

[android-developers] Can't see my device, need help

2011-12-29 Thread James Tan
Currently, I'm developing an Android's application for my Sony Tablet S but I'm having problem with the device which can't be discovered by Eclipse SDK with my device application's USB debugging mode "ON". I've tried to change windows inf file for my device driver as suggested by few forum from se

[android-developers] Re: Could not find hello-world.apk

2011-12-29 Thread Francisco M. Marzoa Alonso
My first message has not been published yet, but I answer it anyway to say that I solved the problem just by restarting Eclipse... O_o On 28/12/11 20:21, Francisco M. Marzoa Alonso wrote: > Hello, > > I'm starting writting android games with a book called Beginning Android > Games, of Mario Zechne

[android-developers] Adult themed games

2011-12-29 Thread Southern California
Where to put an adult themed game, (no nudity) to include adult ads. I have found Mikandi, but wondered if there were some DIY sites available yet? Thanks, Serene -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send

[android-developers] single_apk_On_Multiple_devices

2011-12-29 Thread Teena sharma
Hello Please give suggestion that how can i install single .apk file on different configuration devices. I am using Android 3.2 and API level 13. when i run this apk on emulator(Android 3.2) images become starched. In drawable i have four folders hdpi,large,ldpi,mdpi,xhdpi. stil its not work

[android-developers] how to capture http request and response in webview

2011-12-29 Thread RK
Hi, I need add a custom header to each http request ,which is going though webview. for this how can read http response in webview and add header to http request Thanks, RK -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To po

[android-developers] Translation exchange: we need Chinese, Japanese and Russian - we offer Spanish, Italian, English

2011-12-29 Thread Limon Solutions
Hi everyone, we are developing our app and we need to implement new languages. Chinese, Japanese and Russian are high priority. We are offering to translate one to one (app resources) from English to Spanish or Italian. Anyone?! Please if you need translation exchange please respond this message

[android-developers] [In-app Billing] Need clarification on Android Market application version requirements in supporting In-app Billing

2011-12-29 Thread Tim Guo
I am confused by one statement in Google’s official document: *“If your device is running Android 3.0, in-app billing requires version 5.0.12 (or higher) of the MyApps application. If your device is running any other version of Android, in-app billing requires version 2.3.4 (or higher) of the A

[android-developers] How to receive UDP packet on real device.

2011-12-29 Thread KiyoKiyo
Hi. I'm trying to make simple android App that receives UDP packet from PC via USB(not WiFi). First, I tried it on emulator. I used port redirection setup as below. 1/ telnet localhost 5554 (i.e. go to the emulator control console) 2/ type "redir add udp::" (create a UDP redirection)

[android-developers] Setting children of GridLayout dynamically

2011-12-29 Thread Reese Chappuis
I'm using the GridLayout to be able to define a complete grid of the same image. However, the exact dimensions of the grid will be changeable in the settings, so I was wondering- is there a simple way to just add the same image to the entire grid in the Java? -- Reese Chappuis -- You received t

[android-developers] Re: How to get pressed Unicode characters

2011-12-29 Thread lbendlin
you probably want to monitor the keyUp event rather than keyDown -- 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-

Re: [android-developers] Re: Packing data onto socket stream ?

2011-12-29 Thread Kristopher Micinski
On Thu, Dec 29, 2011 at 3:30 PM, Marcelo Henrique wrote: > Use NDK. for implements you aplication in C/C++ > There's no reason to use the NDK for this, The standard Java socket API can be used for this easily: http://docs.oracle.com/javase/tutorial/networking/sockets/ kris -- You received th

[android-developers] Re: How do I access my Views when using ViewPager/PagerAdapter?

2011-12-29 Thread Ricardo Amaral
I've come up with a solution that solves the problem as easily as I wanted. Everything is working as expected... I just want to understand if this is a good solution or there's something wrong doing it this way... Every ViewPager tutorial/document (for instance, an official one: http://android-

[android-developers] Re: How to get pressed Unicode characters

2011-12-29 Thread Felipe Monteiro de Carvalho
Hello, thanks, this moves me a bit closer. But I still have one problem. When I do a long press in the virtual keyboard to select for example "4" from the items inside the key "r", I get first a "r" key and then a "4" key. How can I detect that this first "r" should be ignored in my character pro

[android-developers] How do I access my Views when using ViewPager/PagerAdapter?

2011-12-29 Thread Ricardo Amaral
I've started using a ViewPager on my app but I am not find the migration from the current layout easy. I'm looking for a better way than to rewrite most of my Activity's code... Currently I have most of initialization code on the Activity's onCreate(), for instance, stuff like findViewbyId() fo

[android-developers] Re: Native SIP Supported on all ICS Devices?

2011-12-29 Thread Shaun
Thanks for the reply, that's the direction I am looking at going now, CSipSimple has an API as well so that might make things easy, but I would much rather use the native SIP stack Google built in, I think this is all a carrier issue. On Dec 29, 6:06 am, Mukesh Srivastav wrote: > Hi Shaun, > > I

Re: [android-developers] Re: OpenGLES Double Buffer malfunctions

2011-12-29 Thread Abraham Stolk
thx, yes I am checking all gl calls with glGetError, but more importantly: I check for matching configs, and do get a match back for my test device (Acer Iconia). I'll try 565 but I will be surprised if that fixes double buffering. Bram On 2011-12-29, at 12:43 PM, Indicator Veritatis wrote:

[android-developers] IMMED INTERVIEW - Database Architect (IMMED NEED)

2011-12-29 Thread Steven Smith
Dear Business Partner, Hope you are doing well today, Please review the requirement and let me know if you have any one available for the below position, Please send me your consultant updated resume with the contact detail ASAP Job Title: Database Architect Location: Augusta, ME Duration: 6 Month

Re: [android-developers] Re: uploading to the "google cloud" service

2011-12-29 Thread John Goche
Hi Studio! What a great service this appengine seems to be. Just a shame that MySQL is not going to be available for free it seems, so that users will have to stick with Java Persistence APIs and Java Data Objects (JPA and JDO) in order to save their data. The other thing I was wondering was, if

[android-developers] Re: OpenGLES Double Buffer malfunctions

2011-12-29 Thread Indicator Veritatis
Do you have to use 8 bits for each of RGB? Surfaces and textures on many Android devices only support 565, as has often been reported in this group. What has not been so clearly reported is what goes wrong if you specify the wrong (unsupported) values. Are you checking for EGL error codes after set

Re: [android-developers] Re: Packing data onto socket stream ?

2011-12-29 Thread Marcelo Henrique
Use NDK. for implements you aplication in C/C++ 2011/12/29 JP > > Works in Java just like it does in C, with some added convenience > functions that cut down on the amount of code you have to lay down. > Just don't apply a Java Reader to your binary stream; it may hang up > the Reader. > > > On

[android-developers] Re: Packing data onto socket stream ?

2011-12-29 Thread JP
Works in Java just like it does in C, with some added convenience functions that cut down on the amount of code you have to lay down. Just don't apply a Java Reader to your binary stream; it may hang up the Reader. On Dec 29, 6:47 am, "SL@maxis" wrote: > I am sorry, I think this is not strictly

Re: [android-developers] Problem Loading CM7 on my SD Nook Tablet

2011-12-29 Thread TreKing
On Tue, Dec 27, 2011 at 9:01 AM, hillgoo...@charter.net < hillgoo...@charter.net> wrote: > Do you guys know what is amiss in my process? You're asking in the wrong forum. This is Android Developers Group, not Load CM7 On My Nook Group. ---

Re: [android-developers] Packing data onto socket stream ?

2011-12-29 Thread Miguel Morales
Just use a tcp socket and a bytebuffer. On Thu, Dec 29, 2011 at 6:47 AM, SL@maxis wrote: > > I am sorry, I think this is not strictly an android question. > > From an android device, I want to a message to a PC via a socket. > > I am going to pack my data as follows: > > xxxThis is a greeti

[android-developers] Re: Android custom ImageView fade animation

2011-12-29 Thread Seb
Just to clarify, if I change view.clock.startAnimation(AnimationUtils.loadAnimation( MainActivity.this, R.anim.rotate)); to: view.startAnimation(AnimationUtils.loadAnimation( MainActivity.this, R.anim

[android-developers] Re: Mobile app discovery

2011-12-29 Thread Jose_GD
Hi, Kenneth Are you still researching about the discoverability / trial feature of Android apps? I personally would love to know any progress you have made in this area. Best regards, José -- You received this message because you are subscribed to the Google Groups "Android Developers" group.

Re: [android-developers] Re: Found solutions

2011-12-29 Thread Jim Graham
On Thu, Dec 29, 2011 at 07:28:10AM -0800, Lew wrote: > > > On Wednesday, December 28, 2011 8:13:31 PM UTC-8, Spooky wrote: > > > > On Wed, Dec 28, 2011 at 03:27:24PM -0800, Indicator Veritatis wrote: > > > Well, Jim tnx fr the amusement, bt it is more fruitful to refer the OP > > > to http://catb

[android-developers] Re: Nullsoft WinAmp UI question

2011-12-29 Thread Jona
They are using a view component called SlidingDrawer: http://developer.android.com/reference/android/widget/SlidingDrawer.html They than place the layout design of their player inside it. I would say fairly simple design approach. On Dec 18, 5:25 pm, TreKing wrote: > On Sun, Dec 18, 2011 at 7:3

[android-developers] Re: Why is my program not correctly writing to my database?

2011-12-29 Thread Jeresam515
Thanks so much On Dec 29, 11:43 am, James Black wrote: > Change your database version to recreate the table. > On Dec 29, 2011 1:14 PM, "Jeresam515" wrote: > > > > > > > > > Thanks, I fixed that still have the same error though, here's my new > > code. > > package com.drawing; > > > import andro

[android-developers] Re: Streaming link not working?

2011-12-29 Thread Jona
Android doesn't support mms streaming. I use XiiaLive to stream that type of content. On Dec 22, 8:05 pm, Thomas wrote: > SORRY MMS STREAM!!! Maybe thats why theres no reply :-) -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to

[android-developers] Moving & shifting

2011-12-29 Thread unionmoversuae
Welcome Enjoy world-class moving services at local rates! www.unionmoversuae.com Union Mover Dubai is the moving company created to make your moving experience a stress free one. Our focus is on top notch customer service, and fast, professional moving services. We aim to offer our customers the qu

[android-developers] Re: Android custom ImageView fade animation

2011-12-29 Thread Seb
Hi, I tried it but it doesn't seem to work :( Here's my code in the view that triggers the thread code in the activity: case MotionEvent.ACTION_DOWN: currentTouchIndex = checkForSquareTouch(X, Y); if (currentTouchIndex >= 0)

Re: [android-developers] Re: Why is my program not correctly writing to my database?

2011-12-29 Thread James Black
Change your database version to recreate the table. On Dec 29, 2011 1:14 PM, "Jeresam515" wrote: > Thanks, I fixed that still have the same error though, here's my new > code. > package com.drawing; > > import android.content.ContentValues; > import android.content.Context; > import android.datab

[android-developers] [Bluetooth] Creating an insecure RFCOMM socket still requires pairing

2011-12-29 Thread smichak
I am using the listenUsingInsecureRfcommWithServiceRecord and createInsecureRfcommSocketToServiceRecord calls in order to connect one Android device to another. On the first setting I had a Nexus One and a Nexus S both running Android 2.3.6 - on this setting, connecting did not pop "Pairing Reques

[android-developers] Re: Map Not working

2011-12-29 Thread Znaz
Here is the link to the Android Tutorial: http://wing-linux.sourceforge.net/guide/tutorials/views/hello-mapview.html Here is another link to a similar tutorial, but one that also gives you code:http://mobiforge.com/developing/story/using-google-maps- android These can help you get the map to disp

[android-developers] Re: Why is my program not correctly writing to my database?

2011-12-29 Thread Jeresam515
Thanks, I fixed that still have the same error though, here's my new code. package com.drawing; import android.content.ContentValues; import android.content.Context; import android.database.Cursor; import android.database.SQLException; import android.database.sqlite.SQLiteDatabase; import android.

[android-developers] Re: ICS Listview Selector

2011-12-29 Thread authorwjf
One solution I've come across is not to use: for the default state but rather a solid color such as white. This effectively "fixes" the demo code, however it still causes issues in my production environment because the background of the listview itself is a custom graphic and thus I wanted it to

Re: [android-developers] SVGs

2011-12-29 Thread Mark Murphy
On Thu, Dec 29, 2011 at 12:34 PM, bob wrote: > Sure, Android has support for bitmaps, but does it have support for > SVGs (Scalable Vector Graphics)? Not natively. You are welcome to try third-party libraries: http://code.google.com/p/svg-android/ -- Mark Murphy (a Commons Guy) http://commonsw

[android-developers] SVGs

2011-12-29 Thread bob
Sure, Android has support for bitmaps, but does it have support for SVGs (Scalable Vector Graphics)? That would be great if you could load some clip art easily into your app or game. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post

Re: [android-developers] How to embed a MapActivity into another Activity with content on the top and the bottom?

2011-12-29 Thread TreKing
On Thu, Dec 29, 2011 at 9:50 AM, saex wrote: > I have the Activity ONE with a header and some content on the top of > the activity, and some content on the bottom of the activity. > > I want to embed a MapActivity TWO on the Middle part of the Activity > ONE. > > It is possible? How to do it? >

Re: [android-developers] Re: Auto Answer

2011-12-29 Thread Desu Vinod Kumar
we can access acceptCall from .adil. its possible. On Thu, Aug 20, 2009 at 2:18 AM, Mr Pinguin wrote: > > But acceptCall is in internal lib. so we can access it. or nor ? > We can only generate KEYCODE_CALL, but how ? > > On 18 Aug., 18:13, Mingli Wang wrote: > > There is some sort of acceptCal

Re: [android-developers] help on zoom

2011-12-29 Thread TreKing
On Wed, Dec 28, 2011 at 1:09 AM, chowdary nani wrote: > I need help on image zoom on touch http://www.catb.org/~esr/faqs/smart-questions.html - TreKing

[android-developers] Composing Key Up events into a Unicode Character

2011-12-29 Thread Felipe Monteiro de Carvalho
Hello, This is a repost because I don't see my original, so maybe it failed to send... I have an Activity with 1 single View inside it and I am writing my own customdrawn toolkit which has its own controls, so I am not using any Android controls except this View. So my challenge now is to obtain

Re: [android-developers] How to embed a MapActivity into another Activity with content on the top and the bottom?

2011-12-29 Thread James Black
I couldn't see how to do it, using mapactivity, as anything underneath isn't seen, just what is above it. On Dec 29, 2011 10:50 AM, "saex" wrote: > I have the Activity ONE with a header and some content on the top of > the activity, and some content on the bottom of the activity. > > I want to em

[android-developers] Re: Can't see "Hello World" on hello_avd screen ?????????

2011-12-29 Thread Albert Pi
OpaSmurf, I finally figured out and solved my issue. I can see "Hello, Android" on my emulator, also see another program "LinearLayout", too 1. I reinstall jdk 6.0 ,eclipse 3.6.1 and ADT 4.0.3 plugin. I think the issue iI had before is jdk 6.0 issue. I only had jre (6.0). 2. Created "Hello, Androi

[android-developers] How to embed a MapActivity into another Activity with content on the top and the bottom?

2011-12-29 Thread saex
I have the Activity ONE with a header and some content on the top of the activity, and some content on the bottom of the activity. I want to embed a MapActivity TWO on the Middle part of the Activity ONE. It is possible? How to do it? I'm checking ActivityGrup documentation and some questions bu

Re: [android-developers] Looking to hire a developer for an Android app

2011-12-29 Thread J Handal
Fine,shoot me @ jhand...@gmail.com with details. -- 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+u

[android-developers] HELP: Problem in Playing Avi files on Honeycomb Acer tab iconia 501

2011-12-29 Thread s.rawat
HI, I have acer iconia 501 tab and I am trying to browse the avi files from the sdcard and playing it using the media player using the video view but no success.It says "sorry cant play the video file" .Is it possible to install any avi player and on click if it can use the installed avi player or

Re: [android-developers] Re: Found solutions

2011-12-29 Thread Lew
On Wednesday, December 28, 2011 8:13:31 PM UTC-8, Spooky wrote: > > On Wed, Dec 28, 2011 at 03:27:24PM -0800, Indicator Veritatis wrote: > > Well, Jim tnx fr the amusement, bt it is more fruitful to refer the OP > > to http://catb.org/~esr/faqs/smart-questions.html > > I thought I WAS responding

[android-developers] Re: How to get picture path from camera capture, the known method is not working for all devices???

2011-12-29 Thread Lidia
Or, at least how to known which type of answer to expect? -- 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] view images in gallaery from SQLite database

2011-12-29 Thread Mohammed Mattar
i meed to view a set of images in gallery in my application, it's not suitable to load images using drawable folder because i have more than 50 images, so i need to save images as blob in my database and load it pragmatically in my gallery. i don't know how i can do that. -- You received this mes

[android-developers] Packing data onto socket stream ?

2011-12-29 Thread SL@maxis
I am sorry, I think this is not strictly an android question. From an android device, I want to a message to a PC via a socket. I am going to pack my data as follows: xxxThis is a greeting. where: xxx - message type (3 bytes, text) - integer, 4 bytes, length of text 'This is a gr

[android-developers] Re: In-App: get Product list

2011-12-29 Thread MG-DE
Hello everybody, are there no best practices which google advise? Best 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, sen

Re: [android-developers] Re: I want to go on my activity class from broadcastreceiver

2011-12-29 Thread Jitesh dedhiya
*The error explains as*:- Whenever our activity is in background and comes to foreground, called by a service or any broadcasts, at that time we don't have any context for that activity thus we have to specify FLAG_ACTIVITY_NEW_TASK. On Thu, Dec 29, 2011 at 11:15 AM, surabhi jain wrote: > thank y

[android-developers] Re: How to get picture path from camera capture, the known method is not working for all devices???

2011-12-29 Thread Lidia
Thank you Mukesh Kumar for your idea, but would you be so kind to tell me what conditions should i use? -- 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

[android-developers] Re: problems when creating files in android

2011-12-29 Thread guich
mkdir(path, S_IRWXU | S_IRWXG | S_IRWXO) -- 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...@g

Re: [android-developers] Re: ICS - checkbox style

2011-12-29 Thread Mark Murphy
On Thu, Dec 29, 2011 at 9:15 AM, dashman wrote: > just before release, i'll comment out the holo theme style and build > against api-4 - to make sure it's all good. That's certainly one strategy. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commons

[android-developers] Re: ICS - checkbox style

2011-12-29 Thread dashman
ok mark i think i've got it now. just before release, i'll comment out the holo theme style and build against api-4 - to make sure it's all good. then i'll release using api-11 sdk. good? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. T

  1   2   >