Re: [android-developers] compiler compliance problem

2012-10-04 Thread Narendra Singh Rathore
On Thu, Oct 4, 2012 at 3:06 PM, Narendra Singh Rathore < nsr.curi...@gmail.com> wrote: > > http://stackoverflow.com/questions/7637144/android-requires-compiler-compliance-level-5-0-or-6-0-found-1-7-instead-plea > > Try this. It will help you out. > > Thanks and Regards > NSR > > -- You rece

Re: [android-developers] compiler compliance problem

2012-10-04 Thread Narendra Singh Rathore
Try this. It will help you out. Thanks and Regards NSR -- 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-developer

[android-developers] ccc..

2012-10-04 Thread Ibrahim Sada
Hello friends... Can any one help me out how to retrive the image and text from sqlite db...and that image and text i should insert in listview... Thanks in Advance -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this

Re: [android-developers] Consume POJO based web services

2012-10-04 Thread giles ian
So you are trying to say that the java clients (1 ,2) which consumes those web services will run fine on android as well On Thu, Oct 4, 2012 at 2:26 PM, TreKing wrote: > On Thu

Re: [android-developers] Re: Country selection and app update

2012-10-04 Thread TreKing
On Thu, Oct 4, 2012 at 3:49 AM, groups.mh wrote: > I hope there is someone who knows how the app updates are handled in the > Play Store. There probably is. The question is "will they read your questions and answer it if they do?" The answer to that is "no". ---

Re: [android-developers] Consume POJO based web services

2012-10-04 Thread TreKing
On Thu, Oct 4, 2012 at 3:50 AM, giles ian wrote: > How can i consume POJO based web services i Write some code. This has nothing to do with Android specifically. - TreKing

[android-developers] Consume POJO based web services

2012-10-04 Thread giles ian
How can i consume POJO based web services i -- 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] Re: Country selection and app update

2012-10-04 Thread groups.mh
Thanks for the answer. Publishing the apps (10) anew would be a solution to make sure that previous users from the excluded counties won't get the updates, but that is alot of work and I would lose the downloads and ratings. I hope there is someone who knows how the app updates are handled in t

Re: [android-developers] Any pointers?

2012-10-04 Thread Amit
Can you please share the whole project ? On Thu, Oct 4, 2012 at 2:02 PM, Fabien R wrote: > On 03/10/2012 03:56, Brian wrote: > > Hi guys and gals! > > > > I would appreciate any pointers as to what I'm doing wrong. I'm learning > > Android development and am a newbie. > > > > I'm doing the onli

[android-developers] Re: VideoView, Flash integration and PopupWindow

2012-10-04 Thread Jean-Luc TRESSET
Hi. I finally found how to do that and build an native video player as a native extension for AIR (the solution was the first one, but adding a setZOrderOnTop on the right place ;o) ). Le mercredi 3 octobre 2012 12:08:56 UTC+2, Jean-Luc TRESSET a écrit : > > Hi. > I'm currently trying to integr

Re: [android-developers] Any pointers?

2012-10-04 Thread Fabien R
On 03/10/2012 03:56, Brian wrote: > Hi guys and gals! > > I would appreciate any pointers as to what I'm doing wrong. I'm learning > Android development and am a newbie. > > I'm doing the online tutorials in the developers section and have hit a > snag. > > I have two files :*activity_main.xml *a

[android-developers] Re: When will releaseYoutube Android Player API

2012-10-04 Thread Martin
The recent You Tube change that broke the OpenYouTubeActivity has been identified and a fix is posted here: http://code.google.com/p/android-youtube-player/issues/detail?id=14 Martin. On Wednesday, October 3, 2012 10:38:17 PM UTC+1, Viktor Vologzanin wrote: > > Hi guys, > > I would like to kno

Re: [android-developers] Multiple layout / pages for my android app!

2012-10-04 Thread TreKing
On Wed, Oct 3, 2012 at 11:56 AM, Ahmad Ardal wrote: > How can I do this? Read the documentation and review the samples. This is as basic as it gets in Android. - TreKing

Re: [android-developers] android based robot

2012-10-04 Thread TreKing
On Tue, Oct 2, 2012 at 3:26 AM, Rajat Trivedi wrote: > hey..i want to develop a android based mobile robot..so can some body tell > me from whr i hav to strt...i m just confused.. Start by working on your English grammar and spelling. Then go to Google and start doing some research. Then, if

[android-developers] How to get the layout / views info from activity name or package name.

2012-10-04 Thread ShwetaK
I am creating an android application where I want to access the views/layouts info. I know the package name and the Activity name of the application. Suppose the package is "com.hello" and the activity is "com.hello.HelloWorldActivity". Now based on this information I need to find the layo

[android-developers] HTTP server in Android

2012-10-04 Thread Archana
Hi, I want to develop HTTP server in Android. I used the link https://gist.github.com/1893396#gistcomment-582451 NanoHTTPD. But when I open the page http://10.0.2.15:8080, I am getting WebPage not found. In the logs, I am getting 10-04 05:55:39.106: E/Tab(499): onReceivedError -6 http://10.0.2

[android-developers] Custom drawables in xml

2012-10-04 Thread Nimer
Hi, I just have a really uncommon question. Is there a way to implement custom drawable (like you implement custom drawables, and then reference them by fully qualified class name in xmls)? I would like to implement "AlphaDrawable" that would change its alpha based on supplied level (setLevel m

Re: [android-developers] Using NFC on Android

2012-10-04 Thread Balesabu Godugu
Android API level 9 supports NFC functions but Android API level 10 has more functionalists in terms of NFC. So better to use API level 10. On Mon, Oct 1, 2012 at 6:27 PM, William Chan wrote: > Hi > > I'm working on a project for Uni and I was wondering which is the lowest > level of the Androi

[android-developers] Linkify EditText Android 4

2012-10-04 Thread Ondrej
I have tv = (EditText)findViewById(R.id.someid); tv.setLinksClickable(linkify); if(linkify) { tv.setAutoLinkMask(Linkify.ALL); } else { tv.setAutoLinkMask(0); } In Android 4 links are created but nothing happens when touching them. This works in Android 2 correctly. Does anybody k

[android-developers] Multiple layout / pages for my android app!

2012-10-04 Thread Ahmad Ardal
Hello! I have a button in my app. When I press that button, I want it to open a new page or layout as you call it, for that button. Then you should be able to go back somehow. How can I do this? -- You received this message because you are subscribed to the Google Groups "Android Developers"

[android-developers] android based robot

2012-10-04 Thread Rajat Trivedi
hey..i want to develop a android based mobile robot..so can some body tell me from whr i hav to strt...i m just confused.. -- 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@googlegr

[android-developers] How to get pictures & save selected pictures as a preference?

2012-10-04 Thread James Anderson
I was make an XML file full of my app's settings, and I became stuck on how to get the user to select pictures (or take one from the camera). I figured it would be DialogPreference, but I am not sure how to set it up to give the user an option to select photos from. Basically I want to know how

[android-developers] Android Beam: Beam did not complete

2012-10-04 Thread raviteja
I was trying to transfer a file(about 3 mb) using android beam, using the setPushBeamUris(). The transfer seems to be initiated but I am getting the "Beam did not complete" notification on the receiving device. Both the devices are running jelly bean(Nexus 7 tabs). Dont know what I am not doing

[android-developers] it doesn't fire, setOnLongClickListener on AppWidgetHostView

2012-10-04 Thread Wing Fung Chow
i set OnLongClickListner, but it doesn't fire. Can anybody help me? i just follow [url]http://www.anddev.org/appwidgethost_tutorial-t10329.html[/url], and change some, as it is posted in 2010. Some part of code: //declare under class private AppWidgetHostView widgets[] = new AppWidgetHostView[16

[android-developers] Multiple MapActivity instances in a task

2012-10-04 Thread Partho Bhowmick
I have an app with a number of activities, one of which subclasses MapActivity. It has a single MapView. For reasons I won't go into, I have situations where I may need more than instance of this MapActivity to be launched. I know the Maps API docs says "Only one MapActivity is supported per pr

Re: [android-developers] Using NFC on Android

2012-10-04 Thread shiva pendem
Hi Min sdk version should be of *9* to use nfc Thanks shiva shankar On Thu, Oct 4, 2012 at 12:29 PM, TreKing wrote: > On Mon, Oct 1, 2012 at 7:57 AM, William Chan wrote: > >> I'm working on a project for Uni and I was wondering which is the lowest >> level of the Android API I would need to u

[android-developers] Problem in the map display (gray pixels appear on the map)

2012-10-04 Thread Pegun
[Problem] Problem in the map display (gray pixels appear on the map) [Devices we are experiencing the problem and how to reproduce the problem] With large-screen tablets (e.g. 1280 x 800), display MapView in full-screen or equivalent size. When MapView is updated* (invalidate()) in the following

[android-developers] Google play

2012-10-04 Thread shiva pendem
Hi i would like to use google play app in android application to show all the applictions, i am using intent.setComponent(new ComponentName("com.android.browser", "com.android.browser.BrowserActivity")); to open it in browser and i need the setcomponent to open in the google play app Thank

Re: [android-developers] how to implement ffmpeg video codec for video player +android

2012-10-04 Thread shiva pendem
Hi, i am trying to change the bit-rate of a audio file(mp3 format) but i am unable to do it as i don't know native android so, can any one tell me the solution to change the bit-rate of a audio file(mp3 format) , i will be more help full if you send me an example which can change the bitrate

[android-developers] Re: My First App

2012-10-04 Thread ALAN IVAN AYALA NAVA
El viernes, 17 de agosto de 2012 12:13:11 UTC-5, Divya escribió: > > Hi, > > I had the smae problem. I could install the support library when I ran SDK > Manager as an administrator by right click on SDK manager.exe > > Thanks > Thanks Divya, it works -- You received this message bec

[android-developers] Android Memory Management

2012-10-04 Thread Md Shanewaj Rahman
I am working on an Android project for last few months. This is my first android project. Basically we have to create a form to fill. Problems forms are long ... very very long ... Client use to use paper form before and each form was normally 10 to 12 page. So we are putting all those large for

[android-developers] how to get the images in int the form of pixels or matrix, like we have in matlab...

2012-10-04 Thread Bhargav Solanki
how do i get an image in the form of a array of pixels , just like we have images stored in matlab.like x(i,j).. pleas ehelp.. if not that way, is there any other way to compare two images, and how? -- You received this message because you are subscribed to the Google Groups "Android Developers

[android-developers] image processing in android

2012-10-04 Thread Bhargav Solanki
i am making an app where i need the phone to automatically click pictures,atleast 10 photos in 2 seconds. also the photos should be clicked in the background ,where the current activity,say my net browser, will be on the screen, and the phots will be contunuasly clicked, also please help me with

Re: [android-developers] Any pointers?

2012-10-04 Thread TreKing
On Tue, Oct 2, 2012 at 8:56 PM, Brian wrote: > When I co to compile and run the "activity_main.xml" file An xml file is not something you "compile and build". - TreKing

[android-developers] Re: Like facebook message notification on Android

2012-10-04 Thread amit
If any body have any suggestion or source code for it please provide me. Thanks On Thursday, October 4, 2012 12:40:54 AM UTC-7, amit wrote: > > Hi friends , i want to ask how to develop facebook type incoming message > notification on Android. Please see attach image file. > > Thanks > -- Yo

[android-developers] Like facebook message notification on Android

2012-10-04 Thread amit
Hi friends , i want to ask how to develop facebook type incoming message notification on Android. Please see attach image file. 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-developer

Re: [android-developers] Re: Sudden Drop in App Usage and New Users

2012-10-04 Thread TreKing
Questions about Google Play should be directed towards the Google Play "support" channels: http://support.google.com/googleplay/android-developer/bin/answer.py?hl=en&answer=136601 - TreKing

Re: [android-developers] Sudden drop in Daily User Install since Sept 23rd...

2012-10-04 Thread TreKing
On Tue, Oct 2, 2012 at 12:57 PM, YS wrote: > Is Google making any changes in Google Play that we need to be aware of? I'm not sure if you're seriously expecting an answer about Google Play issues here, but you're not going to get one. Questions about Google Play should be directed towards the

Re: [android-developers] Accessing a database hosted on a server

2012-10-04 Thread TreKing
On Mon, Oct 1, 2012 at 3:38 PM, Leandro Rodrigues wrote: > Is it possible to connect me to a database and insert and delete data? > Yes, this is possible. - TreKing

Re: [android-developers] Using NFC on Android

2012-10-04 Thread yogendra G
I would think Gingerbread would be fine for NFC. Br, Yogi On Thu, Oct 4, 2012 at 12:29 PM, TreKing wrote: > On Mon, Oct 1, 2012 at 7:57 AM, William Chan wrote: > >> I'm working on a project for Uni and I was wondering which is the lowest >> level of the Android API I would need to use for acce

Re: [android-developers] Using NFC on Android

2012-10-04 Thread TreKing
On Mon, Oct 1, 2012 at 7:57 AM, William Chan wrote: > I'm working on a project for Uni and I was wondering which is the lowest > level of the Android API I would need to use for accessing NFC functions > etc. > Can't you answer this for yourself by reading the documentation on NFC?

<    1   2