[android-developers] Re: bitmap prob

2011-04-08 Thread Doug
Why are you even trying to recycle a Bitmap? Do you know exactly what you're doing with that method? Did you read the javadoc for that method? The only instance of recycle in your code is commented out, so you should never even have the problem you're describing. Doug On Apr 7, 6:11 am, vani r

[android-developers] Re: Start Activity from non-activity class

2011-04-08 Thread Doug
All you need is an instance of a Context (Application, Service, or Activity) to start an activity. If it's not an Activity, the intent that launches the activity needs to have the flag FLAG_ACTIVITY_NEW_TASK set on it. Any class and any thread can use the Context to start the activity. Doug On

Re: [android-developers] Regarding PreferenceFragment

2011-04-08 Thread Dianne Hackborn
Sorry there is no easy way to make a compatibility version of PreferenceActivity and PreferenceFragment. They still take the same preference XML definition and APIs, though, so I suspect that have code that uses one or the other depending on the platform version could share a very large amount of

Re: [android-developers] Smoothing out Handler sent repaint events

2011-04-08 Thread Dianne Hackborn
Posting a message won't cause a stack overflow -- messages aren't handled until you return back to the main message loop. On Fri, Apr 8, 2011 at 8:51 PM, Numeron wrote: > Sorry for above post, I hit the wrong button... > > > > > On Saturday, April 9, 2011 1:18:09 PM UTC+9:30, Numeron wrote: > >>

Re: [android-developers] Smoothing out Handler sent repaint events

2011-04-08 Thread Numeron
Sorry for above post, I hit the wrong button... On Saturday, April 9, 2011 1:18:09 PM UTC+9:30, Numeron wrote: > > > > On Saturday, April 9, 2011 1:53:36 AM UTC+9:30, Dianne Hackborn wrote: >> >> On Fri, Apr 8, 2011 at 1:16 AM, Numeron wrote: >> >>> I wouldnt have thought it would work like a b

Re: [android-developers] Smoothing out Handler sent repaint events

2011-04-08 Thread Numeron
On Saturday, April 9, 2011 1:53:36 AM UTC+9:30, Dianne Hackborn wrote: > > On Fri, Apr 8, 2011 at 1:16 AM, Numeron wrote: > >> I wouldnt have thought it would work like a busy method if its adding >> itself to something like an event queue or whatever, but I'll take your word >> on it. >> > >

[android-developers] Re: In-app billing problem

2011-04-08 Thread Seba
Hi, I am having the same exact issue here. I am getting the RESULT_OK response code, but after that we are supposed to get a PURCHASE_STATE_CHANGED, but that one never gets called. The description of the issue is the same, I wonder if there is something we are missing or something wrong with the

[android-developers] Facedetector issue

2011-04-08 Thread Ian Menzies
Hey guys, I have a problem here, I used the facedetector tutorial provided by Google and got it working. Once I did this I tried creating a menu that allows a user to take a picture and then once taken, choose an image to be recognized. The problem arises with the face detection. I can display the

[android-developers] Android in ARM926EJ CPU

2011-04-08 Thread m@o
Hola tengo un miniPC con las siguientes caracteristicas: Samsung S3C2416X 400MHz - 32 bit RISC architecture ARM926EJ CPU core 16-bit 64MB/133MHz DDR2 memory - 512K Byte SRAM 2GB NAND Flash 7” 800x480 TFT Host USB x 1 Device USB x 1 SD/MMC card port 2-wire RS232 x 2 8-wire RS232 x 1 GPIO x 8 GPS GS

[android-developers] android nfc tech API help

2011-04-08 Thread fordeveloper
Hi, I am new to android development, and needed some urgent help for this API. Am trying to use the new library for nfc which was released in 2.3.3 I can get a NfcA object using the getTag(tag) method. NfcA myTag = NfcA.getTag(tag); I then do a try{ myTag.connect(); if (myTag.isConnected()) {

[android-developers] Re: Compare MonkeyImage

2011-04-08 Thread Peddi Kanumuri
Thanks Bill ! 'loadImageFromFile' API is working good if I call it as a method of MonkeyRunner. Would not it be good to make this (loadImageFromFile) part of MonkeyImage as 'writeToFile' is part of MonkeyImage (point: both APIs would be part of same parent)? Nonethless, It is working like charm.

[android-developers] info incorrect on http://developer.android.com WHICH COULD PREVENT ECLIPSE FROM RECOGNIZING YOUR DEVICE

2011-04-08 Thread scott
On the following page there is info that is incorrect (correct but missing an important piece) http://developer.android.com/guide/developing/device.html#setting-up It mentions if using Ubuntu Linux in order to run/debug ON your Android device (not virtual device) you must go into ubuntu and add a

[android-developers] Blank screen when running NativeActivity sample

2011-04-08 Thread Harold Wexler
I'm trying to run the NativeActivity sample that's part of the ndk distribution (r5). I can run the app, but all I see on the emulator is a blank screen. How can I diagnose the problem? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To pos

[android-developers] Re: Problems with ListView

2011-04-08 Thread Mohit Sharma
Ur code seems to much complicated.. Y not u code separate activity for shows and episode ??? On Mar 30, 10:49 am, Kevin Anthony wrote: > I have a nested listview to display information about TV shows > first the Root listview shows the TV show name > when you click on the show name, you get a

[android-developers] Re: Connecting Andrid Application to Sql Server Database

2011-04-08 Thread Mohit Sharma
If your java app is web app u can directly go to ur app using webview.In one of my project actually i created web service and then accesed those web services using Ksoap. On Apr 4, 12:05 am, ADAWi ADAWi wrote: > Hello > > I am new to Android application development and I am using Eclaps IDE > to

[android-developers] LVL Retry Count

2011-04-08 Thread miketra
Hello everyone, I need some clarification on some behavior regarding LVL. From the official LVL document, you will find the following statements regarding implementing a custom LVL policy: "The licensing server applies general request limits to guard against overuse of resources that could result

[android-developers] Regarding PreferenceFragment

2011-04-08 Thread Jay SB
Hello All, I'm looking to write preferences that can be applied to both 3.0 and pre-3.0 devices. Discovering that PreferenceActivity contains deprecated methods (although these are used in the accompanying sample code), I looked at PreferenceFragement and the compatibility package to solve my woes

[android-developers] Re: to implement a gallery getting resource from a webservice

2011-04-08 Thread Mohit Sharma
Add NotifyDataSetChangedMethod() method just before setting the content of image adapter. On Apr 4, 1:52 am, Pinkesh Gupta wrote: > hi > > i am new to android > > i am implementing  a gallery from  the imageurl  that > > i have obtained after parsing the .net web service using soap > > the code w

Re: [android-developers] In-app billing problem

2011-04-08 Thread Seba
Hi Ivan/Kostya, I am having the exact same problem, and yes I am seeing the same output regarding the GTalkService. I will keep looking into it and see what happens. Good luck Seba -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To pos

[android-developers] WebView not responding to KEYCODE_DPAD_CENTER the same way as a Touch

2011-04-08 Thread Dan
I am trying to implement a web browser within my app and using WebView for that. For playing youtube video I used the following resource to start playing the video: http://stackoverflow.com/questions/3815090/webview-and-html5-video This implements basically a webChromeClient and the function onShow

[android-developers] WebView not responding to KEYCODE_DPAD_CENTER the same way as a Touch

2011-04-08 Thread Dan
I am trying to implement a web browser within my app and using WebView for that. For playing youtube video I used the following resource to start playing the video: http://stackoverflow.com/questions/3815090/webview-and-html5-video This implements basically a webChromeClient and the function onShow

[android-developers] Re: EditText to filter a listview

2011-04-08 Thread Mohit Sharma
The xml file in which you defined the listview add one android property filtertext. You don't have to change anything in code. On Apr 2, 9:19 am, "Igor Nesralla Ribeiro" wrote: > Hi, > > i have a edittext and a listview ... I want to do thiswhen the users > type on a edittext  this will filte

[android-developers] How to Install Android SDK on a MacBook (Pro)

2011-04-08 Thread kevlangdo
I recently started developing android apps using a MacBook. The documentation didn't capture the different issues I was having. Anyway after a few hours of work, I got everything working ok. So I documented the whole procedure here: http://hubpages.com/hub/How-To-Install-Android-SDK-MacBook-Pro

[android-developers] Re: eclipse/sdk combo crash

2011-04-08 Thread Dustin
Tor, Thanks for the input. I was not aware of the "New Android XML File" wizard. I was just creating a new folder called "Menu" and then placing a new xml inside it called "menu.xml". After trying the wizard, everything seems to develop just fine. Thanks again! Dustin On Apr 8, 10:51 am, Tor

Re: [android-developers] In-app billing problem

2011-04-08 Thread Seba
Hi Ivan/Kostya, I am having the exact same problem, and I am also seeing the same output regarding the GTalkService. Seba -- 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@googlegroup

[android-developers] Re: Important: XmlPullParserException while accessing SOAP webservice in Android

2011-04-08 Thread Mohit Sharma
(1)Web Service is working or not. (2)Have u written the iternet permission in ur android manifest file. On Mar 31, 10:24 pm, Akshay Dave wrote: > Hello, >    I am trying to access webservice using KSOAP 2 ... I am having problem > with accessing webservice...Below are my parameters > > private s

[android-developers] Re: Remote access to phones

2011-04-08 Thread kypriakos
Sure thing. On Apr 8, 10:23 pm, Ashwin Kumar wrote: > Cool!! > > Also, I request you to update the result you get. It may help me and someone > as well following this thread.. > > Cheers, > > > > On Fri, Apr 8, 2011 at 11:16 PM, kypriakos wrote: > > > To which humble SDK users group I belong as

Re: [android-developers] Re: Remote access to phones

2011-04-08 Thread Ashwin Kumar
Cool!! Also, I request you to update the result you get. It may help me and someone as well following this thread.. Cheers, On Fri, Apr 8, 2011 at 11:16 PM, kypriakos wrote: > > To which humble SDK users group I belong as well ;) He he - thanks > Kostya > that's a good pointer, I will follow

[android-developers] Re: scale whole view

2011-04-08 Thread rukiman
I meant to say it doesn't draw the image button pressed states correctly. On Apr 9, 10:58 am, rukiman wrote: > I wrote a game using absolute positions for a specific device. I want > to target other resolutions however I want to minimize work. I just > want to scale the whole view down and mainta

[android-developers] scale whole view

2011-04-08 Thread rukiman
I wrote a game using absolute positions for a specific device. I want to target other resolutions however I want to minimize work. I just want to scale the whole view down and maintain aspect ratio. I can see in 3.0 there is a setScale function added that will do the job however I want to target 1.

[android-developers] Re: how do i devlope an android keybord

2011-04-08 Thread Spiral123
hi Ariel. can you rephrase your statement as a question please? When you say "it dont run like keybord" what do you mean? How did you try to run it? In what way did it not run like keybord? On Apr 8, 7:09 am, ariel wrote: > i try to dwonload SoftKeyboardLanguagePackTemplate but it dont run >

[android-developers] Re: Memory Leaks in application

2011-04-08 Thread Indicator Veritatis
A situation requiring the urgent but careful implementation of the RMI and XPR instructions http://www.physics.ohio-state.edu/~bcd/humor/instruction.set.html On Apr 7, 9:14 pm, TreKing wrote: > On Thu, Apr 7, 2011 at 5:16 AM, NURAIZ wrote: > > Why our native heap size is increased every time we

[android-developers] Re: Layout Buttons have no gradient on Droid X

2011-04-08 Thread lbendlin
Now that you have achieved your goal think about the people that have to use your app. Maybe they did actually like the device scheme, and they will now scratch their heads as to why your app behaves differently... Or maybe not. Just saying. -- You received this message because you are subscri

[android-developers] Re: Android InetAddress.isReachable always returns False

2011-04-08 Thread Indicator Veritatis
But why are you sure it is reachable? There may be a firewall between them, the phone may have the wrong IP address for it... we really cannot tell based on so little information. Did you check for exceptions? On Apr 8, 1:26 pm, David Tabernero wrote: > Hi, > > Whenever I use this method  InetAd

[android-developers] Re: Amazon Rejected My App - "Missing application identifier"?

2011-04-08 Thread Indicator Veritatis
I hope they gave you a more complete snippet from the log than that. And is this BlackListDecisionPoint something they put on it, or something you did? I have never seen it before, and I am using an HTC Android 2.2 device, too. Usually, "force close" means somebody threw a runtime exception (or ot

[android-developers] Re: Layout Buttons have no gradient on Droid X

2011-04-08 Thread Marke2112
Success. Using your guidance above I did the following: 1. Created a simple gif gradient image "sliver" (named button_bg.gif) to use as the button image background and stored it in the drawable folder(s). 2. Created a custom buttonstyle.xml file with the follow contents and stored in the dra

Re: [android-developers] Re: Compare MonkeyImage

2011-04-08 Thread Bill Napier
Hi Peddi, Here's an example of the usage of loadImageFromFile: from com.android.monkeyrunner import MonkeyRunner img = MonkeyRunner.loadImageFromFile(path='/home/napier/logo.png') Since loadImageFromFile is something that can be done at any time and really has nothing to do with a device, it di

Re: [android-developers] Re: Creator problem using location.

2011-04-08 Thread Filip Havlicek
Check out this tutorial http://developer.android.com/guide/developing/tools/aidl.html#PassingObjects You have to obtain an object from the creator first, then set its properties as needed. 2011/4/7 Sahil Verma > The documentation for createFromParcel suggests that the location object > should

Re: [android-developers] Re: Widgets: Lanscape vs Portrait

2011-04-08 Thread Kostya Vasilyev
[ below ] 09.04.2011 0:12, Jake Colman пишет: > "KV" == Kostya Vasilyev writes: KV> 08.04.2011 19:25, Jake Colman пишет: >> I have a 2x1 widget with two textviews, aligned top and bottom to >> the baseline, that display fine in Portrait. When I switch to >> landscape

[android-developers] Android InetAddress.isReachable always returns False

2011-04-08 Thread David Tabernero
Hi, Whenever I use this method InetAddress.isReachable to ping my pc it always returns false even if I'm sure that's pc reachable What can I use to ping my pc? Many thanks and sorry for my english! -- You received this message because you are subscribed to the Google Groups "Android Developers

[android-developers] Re: java.lang.IllegalAccessError: Class ref in pre-verified class resolved to unexpected implementation

2011-04-08 Thread fadden
On Apr 3, 3:09 am, Naresh Samba wrote: > " Class ref in pre-verified class resolved to unexpected > implementation" > > This i believe because the dex conversion of the class didn't match > with wat was available as a shared library on the device? If you look at the logcat output (via "adb logcat

[android-developers] Re: Widgets: Lanscape vs Portrait

2011-04-08 Thread Jake Colman
> "KV" == Kostya Vasilyev writes: KV> 08.04.2011 19:25, Jake Colman пишет: >> I have a 2x1 widget with two textviews, aligned top and bottom to >> the baseline, that display fine in Portrait. When I switch to >> landscape, there is insufficient room for the two textviews (the

[android-developers] Re: Layout Buttons have no gradient on Droid X

2011-04-08 Thread Marke2112
Thank you for the feedback. I would have expected the "setColorFilter()" call referenced above to have acomplished the color/ gradient override but clearly it did not. I will attempt to locate the standard button theme from the SDK and then use it to override the dark theme of the DroidX. Shoul

Re: [android-developers] Device Admin - Email account policy enforcement - pop and exchange

2011-04-08 Thread Dianne Hackborn
This generally wouldn't be under the control of the device policy manager, but up to the implementation of the exchange client. That is, it is pointless to have the device policy manager say that ssl is required for e-mail, since the user could just install an e-mail app that ignores this. Rather

[android-developers] Re: Layout Buttons dark and have no gradient on DroidX

2011-04-08 Thread Marke2112
Thanks. For some reason I was never able to locate my original post. Please consider this particular chain closed. On Apr 8, 2:42 pm, TreKing wrote: > On Fri, Apr 8, 2011 at 2:31 PM, Marke2112 wrote: > > Any advice??? > > Read the thread with the same question you posed that got some > resp

Re: [android-developers] Layout Buttons dark and have no gradient on DroidX

2011-04-08 Thread TreKing
On Fri, Apr 8, 2011 at 2:31 PM, Marke2112 wrote: > Any advice??? Read the thread with the same question you posed that got some response? http://groups.google.com/group/android-developers/browse_thread/thread/4dfddc4b5b8cc91d

[android-developers] Re: LVL does not work while testing

2011-04-08 Thread jtoolsdev
That should have read "It doesn't work with other versions." On Apr 7, 4:36 pm, jtoolsdev wrote: > I assume you are using a Froyo (Android 2.2) emulator?  It doesn't > work with versions.  What Google should have done with LVL is also to > have included a couple example Policy source files for th

[android-developers] Re: Device Admin - Email account policy enforcement - pop and exchange

2011-04-08 Thread progtad
Thank you for taking the time to reply. The tips are much appreciated and, make sense. On Apr 8, 5:25 am, String wrote: > On Friday, April 8, 2011 6:16:12 AM UTC+1, progtad wrote: > > I would still like to get confirmation that this is not possible if I could. > > > > > This is a corporate requi

[android-developers] Re: Parsing data from a calender on a website

2011-04-08 Thread Jens
Yeah.. that's not going to work for most/any sites. The output of the average brainless HTML-monkey will not parse with a proper XML parser - which is why Google themselves saw fit to use TagSoup internally for HTML rendering (its used for instance to "render" HTML in TextView:s). You can include

[android-developers] Layout Buttons dark and have no gradient on DroidX

2011-04-08 Thread Marke2112
I developed a simple app on my Droid (os v2.2.2). The homepage layout has 4 buttons on it that display the default gradient gray background. Everything looks great. When I install the app on any of our in-office Motorola DroidX phones (os v2.2 and v2.2.1), the buttons are dark with no gradient.

[android-developers] Smooth transition between scroll and fling

2011-04-08 Thread B Lyon
On 2.2, I've been playing with onFling to move a custom horizontal-based view (basically a visually infinitely looped marquee-type thing that is based on displaying the appropriate part of a bitmap). I've been using HorizontalScrollView as a reference, and the default implementation of android.wid

Re: [android-developers] Digest for android-developers@googlegroups.com - 25 Messages in 15 Topics

2011-04-08 Thread TreKing
On Fri, Apr 8, 2011 at 7:20 AM, syed sikandarpasha quadri < gitmcass...@gmail.com> wrote: > please let me how can implement this search option. Read the documentation on implementing Search into your app. --

[android-developers] executing code while screen is black because of power button

2011-04-08 Thread sotcha
I have a landscape game. So when I press power button, screen turns to black abd game's activity executed onPause() and onDestroy(). After a while it is executing onCreate(), onResume() and the game starts normally , but the screen is still black !!! How can I prevent starting the game with black

Re: [android-developers] local and remote database synchronization

2011-04-08 Thread TreKing
On Fri, Apr 8, 2011 at 3:13 AM, kamal g.c wrote: > so, I think about the database synchronization, but no idea that how to > implement it.. > http://www.catb.org/~esr/faqs/smart-questions.html Also try learning about database synchronization.

[android-developers] Disable "open" button after programmatic install?

2011-04-08 Thread kl4232
I'm installing a bunch of apps programmatically, using: Intent intent = new Intent(Intent.ACTION_VIEW); intent.setDataAndType(Uri.fromFile(fileToCopy), "application/ vnd.android.package-archive"); startActivityForResult(intent, requestCode); I dont want the user to launch these apps until I''m fi

Re: [android-developers] Re: eclipse/sdk combo crash

2011-04-08 Thread Tor Norbye
How are you creating the XML file -- using the "New Android XML File" wizard, selecting "Menu" among the type radio buttons? What name are you choosing? Also, which version of Eclipse and ADT? If you can generate a thread dump of the frozen IDE, that would help. For example, use "jstack ". Here ar

[android-developers] Re: Remote access to phones

2011-04-08 Thread kypriakos
To which humble SDK users group I belong as well ;) He he - thanks Kostya that's a good pointer, I will follow up with them. On Apr 8, 9:37 am, Kostya Vasilyev wrote: > I haven't, but you may want to ask on android-porting. > > Those folks deal with setprop and ports much more than us humble SDK

Re: [android-developers] Eclipse linux error

2011-04-08 Thread luiX_
You're welcomed, I'm glad it worked for you! :D 2011/4/8 Raghav Sood > Hi, > > Thanks luiX_ works perfectly now. > > Thanks > > > On Fri, Apr 8, 2011 at 9:50 PM, luiX_ wrote: > >> Yep, it worked for me :) >> >> >> 2011/4/8 Raghav Sood >> >>> Hi, >>> >>> Thanks luiX_ >>> >>> I am using Helios.

[android-developers] Re: change icon notification when we drag

2011-04-08 Thread roberto
So you want the icon in the status bar different from the icon in the notification area? You can do that with a custom notification layout. I'm using the BuzzBox SDK for notifications and it provides an easy way to stylize notifications. Check this out: http://hub.buzzbox.com/android-sdk/notifica

Re: [android-developers] How to use xml

2011-04-08 Thread Mark Murphy
On Fri, Apr 8, 2011 at 8:32 AM, amey bura wrote: > I am trying to search how to pass values from activity to  xml file > which is used for displaying charts.. anyone know how to do this?? > plz  send me a link.. any suggestions are welcome...! XML files are a non-executable sequence of bytes. The

Re: [android-developers] Do I need to make an app for each Brand?

2011-04-08 Thread Mark Murphy
On Fri, Apr 8, 2011 at 2:50 AM, dwrune wrote: > We are looking intop make some apps for internal use. Our developer > claims that andriod mobilephone solution needs to be developed for > each brand. It would help if your "developer" would clarify that comment. > I'm a bit amazed that the most co

Re: [android-developers] zxing library in my application

2011-04-08 Thread Mark Murphy
You might try asking the ZXing project, since they have their own Google Group. On Fri, Apr 8, 2011 at 8:52 AM, nikvaf wrote: > Hi all, > i have some questions as far as the zxing library is concerned. > > I have already integrated the zxing library on my project but i can't > configure the way t

Re: [android-developers] Eclipse linux error

2011-04-08 Thread Raghav Sood
Hi, Thanks luiX_ works perfectly now. Thanks On Fri, Apr 8, 2011 at 9:50 PM, luiX_ wrote: > Yep, it worked for me :) > > > 2011/4/8 Raghav Sood > >> Hi, >> >> Thanks luiX_ >> >> I am using Helios. So are you saying that I download the previous version >> configur it and then Helios will work?

[android-developers] Re: Compare MonkeyImage

2011-04-08 Thread Peddi Kanumuri
Please check this issue @ http://code.google.com/p/android/issues/detail?id=16049 -Peddi. On Apr 7, 4:59 pm, Peddi Kanumuri wrote: > Bill, > > How to build just the monkeyrunner.jar with these changes? > We are in need of loadImageFromFile API. > > -Peddi. > > On Mar 7, 8:02 pm, Bill Napier wro

[android-developers] Re: Android Playing YouTube video in WebView

2011-04-08 Thread Dan
I am using webview client. shouldOverrideUrlLoading is a method of webview client. The issue I am having is the difference in response between KEYCODE_DPAD_CENTER and the touch event. On Apr 8, 2:16 am, Kapil Lokhande wrote: > Hi, > Use webview client. best example is on android developers | we

Re: [android-developers] Re: ListView + Activity change

2011-04-08 Thread Samson Akisanya
ListView l1 l1.setOnItemClickListener(new OnItemClickListener() { public void onItemClick(AdapterView arg0, View v,int arg2, long arg3) { xxxYourObject Type selectedObject = YourObjectList.get(arg2);/ Intent intent = new Intent(v.getContext(), YourActivity.class); intent.putExtras(YourObject.toBun

[android-developers] Urgent Requirement-----Ext JS- Web Developer,NY

2011-04-08 Thread junaid alam
Hello Hope you are doing well!! I have an urgent requirement with one of my client . If you are comfortable with the following requirement then please send me your updated resume along with contact details ASAP Ext JS- Web Developer Location: NYC Duration: 6 Months Start Date: ASAP BANKING CLI

Re: [android-developers] Thread and ProgressDialog

2011-04-08 Thread Samson Akisanya
new PersonnelLookUpTask();// start task..choose where u want to start it..oncreate or button click..ur choice. Input|Progress(u can ignore this parameter)|Output private class YourLookUpTask extends AsyncTask>{ @Override protected ArrayList doInBackground(String... params) { //put the stu

[android-developers] Superscripted Keys on Keyboard

2011-04-08 Thread Scott
I'm creating a custom keyboard and have been able to hack around sufficiently except for the following: Does anyone know how one would display superscript key labels in addition to the normal key labels on the keyboard keys? For example, on the qwerty keyboard, I would like to see "1" have a supe

Re: [android-developers] Problem with ListAdapters and Cursors

2011-04-08 Thread Samson Akisanya
I would use a hash map ...key value Map yourMap = new HashMap(>); populate your adapter from the list after identifying which key u are interested in On 8 April 2011 12:35, Duskox wrote: > Hello people, > > so I am trying to build a somewhat simple app where I am working with > an array of obj

[android-developers] how do i devlope an android keybord

2011-04-08 Thread ariel
i try to dwonload SoftKeyboardLanguagePackTemplate but it dont run like keybord -- 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 em

[android-developers] Re: Marquee is not worked when screen rotate

2011-04-08 Thread pramod.deore
Ok Abhilash thanks. I thought it work like HTML marquee. So it means If I want marquee like feel then it will worked only if String os not fit in container. On Apr 8, 1:16 pm, Abhilash baddam wrote: > Hi Pramod, > >                For small String its not working i am also using the same > versi

[android-developers] Streaming youtube video

2011-04-08 Thread Rahil Bolar
Hello I need an example source of streaming RTSP youtube video's inside a Video view -- 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, s

[android-developers] How Entry Uri 's are generated insides each plan in CTS?

2011-04-08 Thread ganga
We have Some plans in Android CTS.In each plan we have some Entry Uri's How these are generated.i.e in which file the code is written to generate that Entry uri's in each plan. Supose In Cts we have Android plan .we open that Android.xml plan we see like below::: Android.xml:

[android-developers] Possible to use bouncy castle package in android sdk

2011-04-08 Thread nivethaashree babu
Is is possible/ compatible to include bouncy castle jar file in android sdk thanks in advance With regards K.Nivethaa Shree -- 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@googlegrou

[android-developers] Do I need to make an app for each Brand?

2011-04-08 Thread dwrune
Hi, We are looking intop make some apps for internal use. Our developer claims that andriod mobilephone solution needs to be developed for each brand. I'm a bit amazed that the most common buttons aren't standardized. Further more inbuilt feautes like camera, speaker and microphone are they stan

[android-developers] How to use obtainStyledAttributes to get a String from a Theme

2011-04-08 Thread nobody
Hi, I have declared a styleable like this: I'm using this with the following java code in a constructor of a custom View class: TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.Test, defStyle, 0); String str = a.getString(R.styleable.Test_myString); int num = a.getIn

[android-developers] zxing library in my application

2011-04-08 Thread nikvaf
Hi all, i have some questions as far as the zxing library is concerned. I have already integrated the zxing library on my project but i can't configure the way that zxing handles the qr codes after scanned them. So, i want to decode something that i have encode and then do something, but my proble

[android-developers] Inserting batch of contact entries is slow

2011-04-08 Thread Anders
Hi, I'm developing an application where I need to insert a lot of contacts which potentially can have thousands of numbers. At the moment there is a total of 600 contacts with a total of 6000 numbers, where the biggest contact has 1300 phone numbers. I have created a custom account for these cont

[android-developers] Re: Marquee is not worked when screen rotate

2011-04-08 Thread pramod.deore
Ok. In HTML we can use marquee for small string so I thought in Android it also worked. Ok Thanks guys. On Apr 8, 1:16 pm, Abhilash baddam wrote: > Hi Pramod, > >                For small String its not working i am also using the same > version. > > On Fri, Apr 8, 2011 at 1:42 PM, pramod.deore w

Re: [android-developers] Digest for android-developers@googlegroups.com - 25 Messages in 15 Topics

2011-04-08 Thread syed sikandarpasha quadri
Hi , i'm doing my final year project and i am new to this technology. In my first UI i need a google map and i successfully integrated google map to my app,But i need a seach button on top of the UI and it should pop-up the particular location on that has entered in search option. please le

[android-developers] How to use xml

2011-04-08 Thread amey bura
I am trying to search how to pass values from activity to xml file which is used for displaying charts.. anyone know how to do this?? plz send me a link.. any suggestions are welcome...! -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To

[android-developers] Re: CallLog.Calls filter by date

2011-04-08 Thread tan
Hi. I'm facing the same issue. My requirement is to get calls from the call log after a certain date. The following statement does not give error, but always fetches the whole list: Cursor c = DirectoryListing.mainActivity.getContentResolver().query( android.provider.CallLog.Calls.CONTENT_

[android-developers] Share the theme among all the projects in android

2011-04-08 Thread judy
Hi,I want to share the theme among all the projects in android,which effect is like HTC skin.How can I implement this function? I study the AssetManager. Can I add the resource.arc(which is like the framework- res) to all the projects with AssetManager? I modify the ActivityThread as the following

[android-developers] deepan_android

2011-04-08 Thread Williams Deepan
Hi All, I have joined as new member. for your kind reference , I am android developer. Thanks, Williams Deepan -- 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 un

[android-developers] internet connection problem using emulator. can you help??

2011-04-08 Thread jay
Hi We have an issue when Android emulator runs for several hours or sometimes even when we star it up, the internet connection is breaks and does not come back on the emulator. In the server running the internet the internet is fine. In the log, there is two sorts of exception for internet Co

[android-developers] local and remote database synchronization

2011-04-08 Thread kamal g.c
I need to write the application where the application should be able to provide full functionality in offline mode(Internet dis- connection). so, I am going fetch the required data at once and use it for the offline mode.. and the save data from my application will be store in the local mobile data

[android-developers] Racoon is not initiating a connection with x509 L2TP/IPSec

2011-04-08 Thread Bart
Hello all, I am trying to setup a VPN connection on Android v2.2.2. I am currently unable to connect to my VPN server. The VPN server is Openswan which is running with xl2tpd. I am using X. 509 certificates to identify clients. Android does not seem to initiate a connection to the VPN server, th

[android-developers] Re: Honeycomb Sourcecode

2011-04-08 Thread Hari Edo
On Apr 7, 3:06 pm, "JAlexoid (Aleksandr Panzin)" wrote: > Why would you need Honeycomb source? I think the issue is not "need" vs "want." Yet. It's doing the right thing. If a network router uses some open-licensed code, but doesn't provide the sources, they are rightly brought to task for

Re: [android-developers] Getting a delay between starting current activity after returning from startActivityForResult()

2011-04-08 Thread TreKing
On Fri, Apr 8, 2011 at 5:44 AM, Kacee wrote: > Please help :( Try removing the Clear Top flag. - TreKing - Chicago transit tracking app for Andro

Re: [android-developers] Regarding Video Recording

2011-04-08 Thread TreKing
On Fri, Apr 8, 2011 at 7:39 AM, yogendra G wrote: > Require Proper Code for Video recording for my app so please some one help > me in this coding coz am android beginner so.. ... so RTFM. - TreKing

Re: [android-developers] How do i Download the Mp3 file from server

2011-04-08 Thread TreKing
On Fri, Apr 8, 2011 at 5:25 AM, Riyas wrote: > Am a newbie to android development Read the documentation. - TreKing - Chicago transit tracking ap

[android-developers] Re: HttpURLConnection responsecode 414-url too long issue

2011-04-08 Thread Hari Edo
As another poster was hinting, this is a job for HTTP POST, not HTTP GET. GET puts all arguments into the URL. POST puts a short URL, and then adds all of the arguments to the hidden handshaking conversation that follows the network connection. The good news is that many CGI programs don't even

Re: [android-developers] Smoothing out Handler sent repaint events

2011-04-08 Thread Dianne Hackborn
On Fri, Apr 8, 2011 at 1:16 AM, Numeron wrote: > I wouldnt have thought it would work like a busy method if its adding > itself to something like an event queue or whatever, but I'll take your word > on it. > Well it is going to continually execute messages, even if it isn't needed. That is, if

Re: [android-developers] ANR Problem with FLAG_NOT_TOUCHABLE

2011-04-08 Thread Dianne Hackborn
What is the stack reported for your app ANR? (You can find it in /data/anr/traces.txt). It's possible this is just a platform bug. Changing a window like this is probably not something anyone else has done. If it is a platform problem it could also vary significantly across platform releases --

Re: [android-developers] Eclipse linux error

2011-04-08 Thread luiX_
Yep, it worked for me :) 2011/4/8 Raghav Sood > Hi, > > Thanks luiX_ > > I am using Helios. So are you saying that I download the previous version > configur it and then Helios will work? > > Thanks > > > On Fri, Apr 8, 2011 at 9:29 PM, luiX_ wrote: > >> I had a similar problem, what eclipse ve

Re: [android-developers] Eclipse linux error

2011-04-08 Thread Raghav Sood
Hi, Thanks luiX_ I am using Helios. So are you saying that I download the previous version configur it and then Helios will work? Thanks On Fri, Apr 8, 2011 at 9:29 PM, luiX_ wrote: > I had a similar problem, what eclipse version are you using? I downloaded > Helios, and then had to download

Re: [android-developers] Widgets: Lanscape vs Portrait

2011-04-08 Thread Kostya Vasilyev
08.04.2011 19:25, Jake Colman пишет: I have a 2x1 widget with two textviews, aligned top and bottom to the baseline, that display fine in Portrait. When I switch to landscape, there is insufficient room for the two textviews (the widget becomes long and narrow) so the two textviews overlap each

Re: [android-developers] Eclipse linux error

2011-04-08 Thread luiX_
I had a similar problem, what eclipse version are you using? I downloaded Helios, and then had to download the provious version (the recommended one) to finalize the configuration and then I can use Helios as usually... 2011/4/8 Raghav Sood > Hi, > > I know that this question is better suited to

[android-developers] Re: Parsing data from a calender on a website

2011-04-08 Thread harsh chandel
hi you can use the saxparser or dom parser you can find example on android developer. to put the whole data in your application and then use it. On Apr 6, 8:52 pm, Neutron_boy wrote: > I am fairly new to Android, but have some experience reading and > understanding code, including Java. > My que

  1   2   >