Re: [android-developers] error NO SUCH TABLE FOUND

2011-02-18 Thread Justin Anderson
It would be very helpful if you posted some code... On Wed, Feb 16, 2011 at 12:23 AM, Nirav Parmar nirav.spa...@gmail.comwrote: hi all, i m new to android. i jst wrote query to insert data in database.bt i got error in logcat that No such table Table name found.i checked path also.m i

Re: [android-developers] SDK or some tool to develop a VERY simple Android game?

2011-02-18 Thread Justin Anderson
Well, you can't create the game in plain java because Android has its own UI classes... Really it depends on the type of game you are trying to create. On Wed, Feb 16, 2011 at 9:13 AM, musicgu7 music...@gmail.com wrote: Hey! I am decent in Java and now I want to make a very simple android

Re: [android-developers] Regarding Database

2011-02-18 Thread Justin Anderson
A couple links that you may find helpful: http://www.catb.org/~esr/faqs/smart-questions.html http://developer.android.com/guide/topics/data/data-storage.html#db On Wed, Feb 16, 2011 at 3:24 AM, yogendra G yogi2...@gmail.com wrote: hi, Am new to android please help me in my help query:

Re: [android-developers] Garbage collector hangs OpenGL on HTC Evo

2011-02-18 Thread Justin Anderson
This sounds like it is specific to HTC devices. Have you tried contacting HTC to see if they have any info? On Wed, Feb 16, 2011 at 9:07 AM, Bill Tschumy b...@otherwise.com wrote: I've been battling a hang (deadlock) in OpenGL for the past week. I've finally realized that the system hangs

Re: [android-developers] Help needed - Stopped by NoClassDefFoundError when using a java library - JmDNS

2011-02-18 Thread Justin Anderson
What is the class that you get the NoClassDefFoundError for? It may be that the jar is trying to use a class that is available with standard Java but is not available through Android. On Wed, Feb 16, 2011 at 6:15 PM, scott_ggle sch...@comcast.net wrote: I am writing a test application using

Re: [android-developers] Re: Activity inside TabActivity doesn't work properly

2011-02-19 Thread Justin Anderson
I have yet to hear of an example where someone was able to successfully put activities inside a TabActivity. Why it is allowed I'm not sure... The most success comes from having a single activity and having each tab be a different View... On Sat, Feb 19, 2011 at 8:51 AM, Kwok Chun Wing, Edwin

Re: [android-developers] Android SDK and AVD Manager shows already installed updates as Available

2011-02-19 Thread Justin Anderson
At the bottom of the dialog there is a checkbox that says Display updates only... Is that box checked? On Sat, Feb 19, 2011 at 3:36 AM, Marcin Orlowski webnet.andr...@gmail.comwrote: On 19 February 2011 07:39, Zsolt Vasvari zvasv...@gmail.com wrote: Google USB Driver Package, Revision 4

Re: [android-developers] ImageView hardcoded into layout referencing drawable resources

2011-02-19 Thread Justin Anderson
Drawables in the drawable-hdpi folder are only available on high-density devices. When you say you don't see it are you sure you are on a high-density device? See here for more info: http://developer.android.com/guide/topics/resources/providing-resources.html#AlternativeResources Hope that

Re: [android-developers] Re: ImageView hardcoded into layout referencing drawable resources

2011-02-19 Thread Justin Anderson
enough. My project has such a folder, but of course I suppose it is only accessed when the app is run on certain devices. Thanks. Cheers! On Feb 19, 4:25 pm, Justin Anderson magouyaw...@gmail.com wrote: Drawables in the drawable-hdpi folder are only available on high-density devices. When

Re: [android-developers] Deploying Application into Device

2011-02-21 Thread Justin Anderson
* Could you please pass me step-by-step procedure on how to deploy application into Android Device (my Phone)? * http://developer.android.com/guide/developing/eclipse-adt.html#RunningOnDevice * I believe multiple options should be there like from Eclipse and from Command Line (typically when we

Re: [android-developers] view animation

2011-02-21 Thread Justin Anderson
I'm not sure where the dimensions are set exactly, but have you tried putting it in onResume? I think dimensions are set at that point. On Sun, Feb 20, 2011 at 8:58 PM, dashman erjdri...@gmail.com wrote: i'd like to animate a view... but it's dependent on the dimensions of the view and

Re: [android-developers] Cannot fetch information from internet

2011-02-21 Thread Justin Anderson
Do you have a proxy setup? Are you testing this on an actual device or on an emulator? On Sun, Feb 20, 2011 at 10:50 AM, Boozel boozelcl...@gmail.com wrote: I'm trying to use a separate service to fetch tweets using twitters search API I have given permission in the android manifest file

Re: [android-developers] Cannot fetch information from internet

2011-02-21 Thread Justin Anderson
I'm not really sure... Doing a google search I came up with this URL: http://marakana.com/forums/android/examples/69.html There is a person on there who is having a similar problem with the emulator, and this is what someone posted as a reply: The answer is in the last line of the output you

Re: [android-developers] Re: Alert Dialog - Specified child already has a parent - on 2nd attempt

2011-02-21 Thread Justin Anderson
What method is this code in? On Mon, Feb 21, 2011 at 11:58 AM, Aaron Buckner nagm...@gmail.com wrote: Can anyone give me any ideas here this is really frustrating I can't think of any other way to implement this and I have to assume the user would mess up and need to reach this dialog again.

Re: [android-developers] Re: Alert Dialog - Specified child already has a parent - on 2nd attempt

2011-02-21 Thread Justin Anderson
Whenever I create dialogs, I use onCreateDialog() and let the Activity handle creation... http://developer.android.com/reference/android/app/Activity.html#onCreateDialog%28int,%20android.os.Bundle%29 To display the dialog use showDialog()...

Re: [android-developers] Re: How to delete...?

2011-02-22 Thread Justin Anderson
You will find the answer to your question if you do as Carlos suggested... Do a google search for SQL Injection Attack On Tue, Feb 22, 2011 at 5:47 AM, Abhilash baddam abhilash.androiddevelo...@gmail.com wrote: Hi Carlos, Means where exactly i am doing mistake means while

Re: [android-developers] any idea to get control for setting the default launcher app through programming

2011-02-22 Thread Justin Anderson
What do you mean by apps over market which has replaced the native launcher at Google's N1? On Tue, Feb 22, 2011 at 9:07 AM, Dev Android devandroid1...@gmail.comwrote: Yes, you're right.I also think so... but i have seen some apps over market which has replaced the native launcher at Google's

Re: [android-developers] Re: Theming an Activity as a Dialog

2011-02-22 Thread Justin Anderson
And I agree with Mark... it seems odd that you would want to launch a dialog without a title from a broadcast receiver. On Thu, Feb 17, 2011 at 8:40 AM, Justin Anderson magouyaw...@gmail.comwrote: What does the manifest for your activity look like where you are using your custom style/theme

Re: [android-developers] Re: Theming an Activity as a Dialog

2011-02-22 Thread Justin Anderson
What does the manifest for your activity look like where you are using your custom style/theme? On Thu, Feb 17, 2011 at 8:35 AM, Jake Colman col...@ppllc.com wrote: Kostya, Yes, that's exactly what I'm looking for. Odd that you cannot theme yourself to mimic that look. I don't think I

Re: [android-developers] Re: Theming an Activity as a Dialog

2011-02-22 Thread Justin Anderson
Or you can get it 100% by making two clickable areas on the widget... one for the settings and one for the other info. On Thu, Feb 17, 2011 at 11:21 AM, TreKing treking...@gmail.com wrote: On Thu, Feb 17, 2011 at 10:10 AM, Mark Murphy mmur...@commonsware.comwrote: Why not show one of them,

Re: [android-developers] Open another application with only the package name

2011-02-22 Thread Justin Anderson
http://developer.android.com/reference/android/content/pm/PackageManager.html#getLaunchIntentForPackage%28java.lang.String%29 This method returns null if no launch intent was found though... so you have to handle that. On Thu, Feb 17, 2011 at 2:00 PM, sharksoft android ma.buon...@gmail.comwrote:

Re: [android-developers] Calling all Android App Developers

2011-02-22 Thread Justin Anderson
The link no-worky... On Thu, Feb 17, 2011 at 4:26 PM, Justin Groden jus...@stampede.it wrote: We need your help! And we want to help you! Below is a link to our most recent blog post asking for your help. We are looking for application developers/companies who are interested in becoming

Re: [android-developers] [newbie] App crashes on phone but not on the emulator

2011-02-22 Thread Justin Anderson
What does the stack trace say? On Thu, Feb 17, 2011 at 7:25 AM, frapell frap...@gmail.com wrote: Hi all, i decided to start learning how to develop 3D apps for Android. I started reding a lot of documentation (the red book mainly) and experimenting a lot, copying code from the ApiDemos

Re: [android-developers] Problem with 9 patch image as background

2011-02-22 Thread Justin Anderson
What do you mean by all the elements get distorted? In this case a screenshot would be helpful... I'm trying to set the background drawable dynamically by calculating the position. Why are you doing this? And how? A 9 patch image automatically stretches to take up all available space... On

Re: [android-developers] Database Sync

2011-02-22 Thread Justin Anderson
Your server would have to have some sort of API that allows you to send data to it. On the Android side all you have to do is send the data. The complicated part would be on the server side, and that is really not in the scope of this group. On Thu, Feb 17, 2011 at 5:03 AM, dinesh

Re: [android-developers] Re: Theming an Activity as a Dialog

2011-02-22 Thread Justin Anderson
I'm not sure what your appwidget design looks like, but you could provide two different tappable areas... one that is for preferences and the other for the relevant information. On Thu, Feb 17, 2011 at 9:04 AM, Jake Colman col...@ppllc.com wrote: MM == Mark Murphy mmur...@commonsware.com

Re: [android-developers] LIST

2011-02-22 Thread Justin Anderson
There are several ways you could do this... You could implement it as an expandable listview that has the top-level item containing the type of car. When you click on that it expands and you have a list of the available models. When you click on one of the models you can have it display a

Re: [android-developers] Android not calling onDestory when service is killed using task manager

2011-02-22 Thread Justin Anderson
I'm assuming that the variable you change to true and false is for whether the service is currently running? If so, you could create a second variable in shared preferences called lastRunSuccessful. When you start your service you set it to false. When you finish your service you set it to

Re: [android-developers] Android not calling onDestory when service is killed using task manager

2011-02-22 Thread Justin Anderson
Don't wait until onDestroy() to update your flag. Update your flag when it finishes its work, which by definition will be sooner than -- and hopefully on a different thread than -- onDestroy(). That is a better place to put the flag but that would only work in some cases... If the service is

Re: [android-developers] Android not calling onDestory when service is killed using task manager

2011-02-22 Thread Justin Anderson
is set doesn't always accommodate that... On Tue, Feb 22, 2011 at 1:11 PM, Mark Murphy mmur...@commonsware.comwrote: On Tue, Feb 22, 2011 at 2:19 PM, Justin Anderson magouyaw...@gmail.com wrote: Don't wait until onDestroy() to update your flag. Update your flag when it finishes its work

Re: [android-developers] Android app download stats not updating

2011-02-22 Thread Justin Anderson
The stats page only updates once or twice a day... On Sun, Feb 20, 2011 at 4:53 PM, patrickq patrick.questemb...@gmail.comwrote: I just published a brand new app yesterday at midnight (Saturday, Feb 19) - com.scanbizcards - and within an hour of submitting the app it showed 20 downloads - and

Re: [android-developers] Regarding Home Screen

2011-02-22 Thread Justin Anderson
What? On Tue, Feb 22, 2011 at 6:42 AM, yogendra G yogi2...@gmail.com wrote: Hi, I Have and app created so i want how to arrange icons in home screen plz let me kw wit bit of coding... Regrad, Yogendra G -- You received this message because you are subscribed to the Google Groups

Re: [android-developers] ListView click events

2011-02-22 Thread Justin Anderson
This is a side-effect of view recycling... You have to create some sort of caching mechanism. When your adapter's getVIew() method you then consult the cache and set the checkbox state accordingly. It is a bit of a pain, but as you said in your post... if you don't use view recycling then the

Re: [android-developers] ListView click events

2011-02-22 Thread Justin Anderson
Hi Nguyen, Just wanted to point out that the problem was not mine. I was answering the question of the original poster in a very broad, high-level sense. It wasn't a question... ;-) On Feb 22, 2011 4:11 PM, Justin Anderson magouyaw...@gmail.com wrote: This is a side-effect of view recycling

Re: [android-developers] Looking for help with something

2011-02-23 Thread Justin Anderson
That's odd... I've never had to compile the SDK. I just downloaded it and started using it. On Tue, Feb 22, 2011 at 7:08 PM, TreKing treking...@gmail.com wrote: On Sat, Feb 19, 2011 at 6:10 PM, Mr. Wizard kashmonke...@gmail.comwrote: Please email me p...@parad1se.net I need help compiling

Re: [android-developers] i didnot get the path

2011-02-23 Thread Justin Anderson
What? On Fri, Feb 18, 2011 at 9:10 PM, basha sk bashaem...@gmail.com wrote: Hi, i am working on country adapation project ,actually problem is i need to change power on animation as a default one in my requirement basis . but i didn't get where i need to implement the code. please some

Re: [android-developers] Re: TextView adjusts, ImageView stays static when keyboard pops up - How To?

2011-02-23 Thread Justin Anderson
I would try waiting at least a day before bumping your post... On Wed, Feb 23, 2011 at 12:36 PM, Matt M matthew.mag...@gmail.com wrote: Any ideas?? On Feb 23, 1:04 am, Matt M matthew.mag...@gmail.com wrote: Hello, I have a TextView on top of an ImageView. When the keyboard pops up I

Re: [android-developers] Writing code for multiple APIs

2011-02-23 Thread Justin Anderson
Here is a link I found that shows how to use reflection in Java. I think this is for an earlier version of Java but the principles and most of the code should be relevant. http://java.sun.com/developer/technicalArticles/ALT/Reflection/ On Wed, Feb 23, 2011 at 2:04 PM, Justin Anderson magouyaw

Re: [android-developers] Writing code for multiple APIs

2011-02-23 Thread Justin Anderson
It can be done, but you have to use Reflection which can be quite slow sometimes On Wed, Feb 23, 2011 at 1:58 PM, dashman erjdri...@gmail.com wrote: Is it possible to write code for a certain API (e.g. 4) and at runtime determine what API the user is running and if a more advanced one, make

Re: [android-developers] User interaction with Background applications

2011-02-23 Thread Justin Anderson
Why does it need to stay running in the background? What is it supposed to do besides listen for key presses? If that is all it is doing you could write a receiver that will launch your app based on that. Quick Launch is an app in the Android Market that I wrote that essentially does just that.

Re: [android-developers] Re: Odd Gallery onFling() behavior...

2011-02-23 Thread Justin Anderson
I thought that it might be a conflict between my custom Gallery and the actual views in the Gallery so I tried setting this to no avail: setDescendantFocusability(ViewGroup.FOCUS_BEFORE_DESCENDANTS); I was thinking that if the Gallery is given focus first then perhaps the motion events would get

Re: [android-developers] Re: Writing code for multiple APIs

2011-02-23 Thread Justin Anderson
When you do that just be careful that you don't use any code from the higher API version without first checking the OS version at runtime... On Wed, Feb 23, 2011 at 3:45 PM, Mark Murphy mmur...@commonsware.comwrote: On Wed, Feb 23, 2011 at 5:42 PM, dashman erjdri...@gmail.com wrote: well the

Re: [android-developers] To Zoom A Image using Zoom Button and Zoom Controller

2011-02-23 Thread Justin Anderson
What have you tried so far? On Wed, Feb 23, 2011 at 3:04 AM, ASHI 01.as...@gmail.com wrote: Hi everyone, I need to zoom a image using zoom button. Can anyone help me. Thanks in advance -- You received this message because you are subscribed to the Google Groups Android Developers group.

Re: [android-developers] Problem with Cursor Adapter

2011-02-23 Thread Justin Anderson
* Please enlighten* Please post some code... On Tue, Feb 22, 2011 at 10:38 PM, abhishek sharma twinkling.b...@gmail.comwrote: I have a cursor adapter .The list which is getting populated from the cursor,has got an imageView in each of its item.Tapping that imageVIew updates a boolean field in

Re: [android-developers] Android not calling onDestory when service is killed using task manager

2011-02-23 Thread Justin Anderson
know that my service is not running .Then my condition become like this if ( pendingTask !isServiceRunning) { //do work } On Wed, Feb 23, 2011 at 2:00 AM, Justin Anderson magouyaw...@gmail.comwrote: So i m not able get state of service when application start. Right... My take

Re: [android-developers] Re: Custom List layout with checkbox selection problem

2011-02-23 Thread Justin Anderson
* but if i scroll list, android will show some of the row items as checked because of ListView recycling problem.* view recycling is not a problem... It is a feature. You technically don't HAVE to recycle views if you don't want to. Just ignore the convertView parameter. I can set and

Re: [android-developers] Re: To Zoom A Image using Zoom Button and Zoom Controller

2011-02-23 Thread Justin Anderson
new to android. I have wrote code to zoom a image using java in android but did not used any widgets On Feb 24, 4:27 am, Justin Anderson magouyaw...@gmail.com wrote: What have you tried so far? On Wed, Feb 23, 2011 at 3:04 AM, ASHI 01.as...@gmail.com wrote: Hi everyone, I need to zoom

Re: [android-developers] sqlite access

2011-02-24 Thread Justin Anderson
The way I do it is by creating an Application subclass with helper methods to access the db. That way access only happens at one spot and both activities and services should be able to access it just fine. Another thing I do (which works in my case because db access doesn't happen all that

Re: [android-developers] Re: Change Keyboard Key label at runtime

2011-02-24 Thread Justin Anderson
http://developer.android.com/reference/android/inputmethodservice/KeyboardView.html#invalidateKey%28int%29 So, here's a quick question... I'm not trying to be mean and this is supposed to be more of a gentle reminder, but did you even look at the SDK docs? I have never developed a keyboard app

Re: [android-developers] sqlite access

2011-02-24 Thread Justin Anderson
at 12:17 PM, Justin Anderson magouyaw...@gmail.com wrote: The way I do it is by creating an Application subclass with helper methods to access the db. That way access only happens at one spot and both activities and services should be able to access it just fine. Another thing I do (which

Re: [android-developers] Need help refresh different activity's when updating the database

2011-02-24 Thread Justin Anderson
Sounds to me like the cleanest approach would be to rewrite it so that each tab is a View instead of an Activity. Combine all the logic of activities A, B, and C into the TabActivity. That way you have a central location for your data and you don't have to read the database to update the other

Re: [android-developers] Re: Scheduling ideas

2011-02-24 Thread Justin Anderson
That is not an activity that extends a Broadcast receiver. That is a class that extends a Broadcast receiver, making AlarmReceiver a broadcast receiver, not an Activity. On Thu, Feb 24, 2011 at 1:27 PM, Neilz neilhorn...@gmail.com wrote: Like this: public class AlarmReceiver extends

Re: [android-developers] Re: Need help refresh different activity's when updating the database

2011-02-24 Thread Justin Anderson
Thanks, maybe there will be comments from more users ;-) -Danny S. On 24 Feb., 20:45, Justin Anderson magouyaw...@gmail.com wrote: Sounds to me like the cleanest approach would be to rewrite it so that each tab is a View instead of an Activity. Combine all the logic of activities A, B

Re: [android-developers] Re: AppWidget Not Surviving a Reboot

2011-02-24 Thread Justin Anderson
Yes On Thu, Feb 24, 2011 at 2:00 PM, Jake Colman col...@ppllc.com wrote: KV == Kostya Vasilyev kmans...@gmail.com writes: KV 24.02.2011 23:23, Jake Colman пишет: My app is structured to use an IntentService to update an appwidget's RemoteViews. The appwidget sets up a repeating

Re: [android-developers] Re: ListView adapter bug?; notify changed does nothing.

2011-02-24 Thread Justin Anderson
Generally it is a better idea to use views as your tabs instead of activities... On Thu, Feb 24, 2011 at 4:14 PM, Dan king...@gmail.com wrote: Update, the ListView in question is in activity A which is inside tab activity C. Tab activity C inherits from tab activity B. Removing the

Re: [android-developers] Database Issue

2011-02-24 Thread Justin Anderson
Have you looked at any of the documentation or samples for databases in Android? On Thu, Feb 24, 2011 at 8:31 AM, Brad Stintson geek.bin...@gmail.comwrote: Hi, I am developing an android application whose SQLite database comprises of around 5 tables and these tables would have entries prior

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

2011-02-24 Thread Justin Anderson
There are useful cases to having an Activity without a UI... I have two apps on the Android Market and both of them have an activity without a UI. In my case the activity does some processing to determine another activity to be launched. But in any case, the occurrence of it is common enough

Re: [android-developers] Audio data handling during phone call

2011-02-25 Thread Justin Anderson
Seriously? What have you done so far? Have you tried googling for a tutorial? Have you taken a look at the Dev Guide at all? http://lmgtfy.com/?q=android+programmatic+phone+call+tutorial When I did this there was a result about six links from the top that had everything you need... On Fri,

Re: [android-developers] Need Help in Android developement

2011-02-25 Thread Justin Anderson
You could use a timer and update the progress bar after a specified interval... e.g. every second or every 5-10 seconds On Thu, Feb 24, 2011 at 10:35 PM, Onkar Dhane,Software Developer,Alphabricks Technology pvt. ltd dhane.on...@gmail.com wrote: Hi,android developers i have created progress

Re: [android-developers] Alerm Trigger

2011-02-25 Thread Justin Anderson
What does the stacktrace say? On Fri, Feb 25, 2011 at 6:41 AM, Maidul Islam mmaidul.is...@gmail.comwrote: Hi all I am android Developer. I developed a project. Alerm : User can set date time . A alerm will trigger when time is matching. My work: Two Java Class:-- MyDate Class

Re: [android-developers] Simple Search App -- Help Required

2011-02-25 Thread Justin Anderson
Have the constructor in your adapter class read the file and place the names in an array... On Fri, Feb 25, 2011 at 2:14 AM, Arun N R coolgeminia...@gmail.com wrote: Hi, I am new to Android Development. I am trying to write a small search application. My requirement is: I have a list of

Re: [android-developers] Checking for Whether my Appwidget Has Been Upgraded

2011-02-25 Thread Justin Anderson
There is a Broadcast event that is sent when a package is updated... Listen for that and set your alarms again. On Fri, Feb 25, 2011 at 11:08 AM, Jake Colman col...@ppllc.com wrote: Given an appwidget that is currently sitting on the homescreen. What happens when the user upgrades that

Re: [android-developers] EditText behaving weirdly

2011-02-25 Thread Justin Anderson
Code? On Fri, Feb 25, 2011 at 6:49 AM, Richard Marsh richardandrewma...@gmail.com wrote: I have a pretty weird situation. I have an expandable listview. When you click on the child item, a dialog opens up and you can edit some text to save. The dialog is created with a xml layout and using

Re: [android-developers] neckless view in android

2011-02-25 Thread Justin Anderson
I don't know about anyone else but I, for one, have no idea what a neckless view is... On Feb 25, 2011 3:23 AM, focode programarun...@gmail.com wrote: hi, I have to show neck-less view for my menu in android and on the movement of finger from left to right it should move to left to right and

Re: [android-developers] Database Issue

2011-02-25 Thread Justin Anderson
If you know how to create one table then to make two our more you just do the same thing with different parameters... On Feb 25, 2011 1:55 AM, Brad Stintson geek.bin...@gmail.com wrote: Yes. But none dealing with multiple tables was provided. On Fri, Feb 25, 2011 at 11:56 AM, Justin Anderson

Re: [android-developers] ListView/ExpandableListView Imageview flicking

2011-02-25 Thread Justin Anderson
We can help better if you post your code... On Feb 24, 2011 10:01 PM, Sao Kim Beng kbsa...@gmail.com wrote: Hi All, i have a listview/ExpandableListView contain Imageview and some text. I facing a problem when there is a new entry in and i try to update the list , after i try to refresh the

Re: [android-developers] EditText behaving weirdly

2011-02-26 Thread Justin Anderson
The code relevant to the problem... That way we might be able to see what is causing the behavior On Feb 27, 2011 12:08 AM, Rajesh Kumar rajnitj.g...@gmail.com wrote: May be You r using setText(). Cursor will come to begining position. On Sat, Feb 26, 2011 at 5:58 PM, Richard Marsh

Re: [android-developers] Installpackged

2011-02-28 Thread Justin Anderson
Why not just go with the standard method for installing an app? System permissions are not required and you aren't using any hidden non-SDK code... There is some code here with an example intent to use... http://android.amberfog.com/?p=98 On Mon, Feb 28, 2011 at 8:36 AM, Idan

Re: [android-developers] Try to implement coverflow animation using Gallery

2011-02-28 Thread Justin Anderson
could possibly help you. On Mon, Feb 28, 2011 at 10:09 AM, Justin Anderson magouyaw...@gmail.comwrote: Well... what does your code look like? On Sun, Feb 27, 2011 at 10:32 PM, monty neilm30s...@gmail.com wrote: Hi I am developing an application where i need to achieive coverflow animation

Re: [android-developers] Try to implement coverflow animation using Gallery

2011-02-28 Thread Justin Anderson
Well... what does your code look like? On Sun, Feb 27, 2011 at 10:32 PM, monty neilm30s...@gmail.com wrote: Hi I am developing an application where i need to achieive coverflow animation using android Gallery.When i scroll the Gallery i need to display the data of the middle item in the

Re: [android-developers] Strange nullpointer on setMessage() of a ProgressDialog

2011-02-28 Thread Justin Anderson
Can you post the full stack trace? Usually in a situation like this, if you look further down the stack trace you see a caused by clause that points to one of your files and should give a line number... On Sun, Feb 27, 2011 at 10:45 AM, Patrick patrick.manges...@gmail.comwrote: Basically what

Re: [android-developers] Re: Change Keyboard Key label at runtime

2011-02-28 Thread Justin Anderson
Hi Trans, * But why did you answer the question if it irked you so much? I appreciate you providing an answer, and you never know who it might help in the future as an archival. But as a corollary to if you don't have something nice to say, if you are going to say RTFM, don't say anything at

Re: [android-developers] Programatically change the color of layout

2011-02-28 Thread Justin Anderson
Have you verified that you get into the Log.isLoggable() if-statement? If not, what happens when you move the setBackgroundColor() call out of that if Statement? On Wed, Feb 23, 2011 at 12:26 PM, Sid sidmendira...@gmail.com wrote: lLayout -- You received this message because you are

Re: [android-developers] Market package name on Xoom?

2011-02-28 Thread Justin Anderson
If the package name didn't change you can use this to get the intent to launch the market: http://developer.android.com/reference/android/content/pm/PackageManager.html#getLaunchIntentForPackage%28java.lang.String%29 On Mon, Feb 28, 2011 at 12:19 PM, Shane Isbell shane.isb...@gmail.comwrote: I

Re: [android-developers] Help with tabbed view

2011-02-28 Thread Justin Anderson
Change the contents of the tabs to be views instead of activities... Activity tabs are not fully supported and have weird issues. On Wed, Feb 23, 2011 at 7:56 AM, David Williams dwilli...@dtw-consulting.com wrote: Sorry if this is a resend...been having issues emailing to the group. --

Re: [android-developers] How to open email in app with address

2011-02-28 Thread Justin Anderson
http://lmgtfy.com/?q=android+email+intent On Mon, Feb 28, 2011 at 1:24 PM, brian purgert brianpurge...@gmail.comwrote: I want the person to click on a button and when they click it, it opens up their email and my email address is already there. -- You received this message because you are

Re: [android-developers] is it possible to disable the home key for an activity?

2011-02-28 Thread Justin Anderson
That could cause major problems... The home key is supposed to be the user's safe way to get back to a stable state. If you could disable the home key then an app could wreak havoc that would require you to reboot your phone to get to a stable state. On Mon, Feb 28, 2011 at 1:36 PM, TreKing

Re: [android-developers] Re: Odd Gallery onFling() behavior...

2011-02-28 Thread Justin Anderson
tinkering away and if I can come up with a good way of doing this I will post it here for any others that may want to implement something similar. On Wed, Feb 23, 2011 at 4:08 PM, Justin Anderson magouyaw...@gmail.comwrote: I thought that it might be a conflict between my custom Gallery

Re: [android-developers] Re: Market package name on Xoom?

2011-02-28 Thread Justin Anderson
None of that matters... It's just a simple matter of etiquette. When asking for help you don't have to be rude if you don't like the answer. And if you feel it doesn't apply then great... don't apply it! The OP could just as easily have said Thanks for the advice Dianne, but in my case this

Re: [android-developers] Re: How to open email in app with address

2011-02-28 Thread Justin Anderson
* How helpful.* If the OP isn't going to put much time into the question (i.e. doing some stuff to try to figure it out first... such as doing a google search, looking at docs, etc..) then I'm not going to put much time in the answer. On Mon, Feb 28, 2011 at 4:30 PM, Peter Sinnott

Re: [android-developers] Re: Android Layout: Consistently visible Button Bar

2011-02-28 Thread Justin Anderson
Or you could have a single activity with different views underneath the button bar... Though admittedly this approach could lead to a bloating of a single activity. On Mon, Feb 28, 2011 at 4:21 PM, TreKing treking...@gmail.com wrote: On Mon, Feb 28, 2011 at 5:17 PM, Mike mike.copp...@gmail.com

Re: [android-developers] Re: Odd Gallery onFling() behavior...

2011-02-28 Thread Justin Anderson
-not-working-gesturedetector-ontoucheventevent-always On Mon, Feb 28, 2011 at 3:58 PM, Justin Anderson magouyaw...@gmail.comwrote: I would have thought that implementing something like this (a vertical swipe on a Gallery) would be something that would have been done already or would at least

Re: [android-developers] Re: User can purchase other apps but not mine?

2011-02-28 Thread Justin Anderson
* When I see this, I immeditately cancel the purchase and don't wait for them to update their card.* I wouldn't recommend that... I have had a couple people actually update their information and then the sale goes through. This problem is less of an Android problem (and there isn't anything that

Re: [android-developers] Re: Try to implement coverflow animation using Gallery

2011-03-01 Thread Justin Anderson
; } } On Feb 28, 10:09 pm, Justin Anderson magouyaw...@gmail.com wrote: Well... what does your code look like? On Sun, Feb 27, 2011 at 10:32 PM, monty neilm30s...@gmail.com wrote: Hi I am developing an application where i need to achieive coverflow animation using android

Re: [android-developers] install apk from SD card to phone

2011-03-01 Thread Justin Anderson
What have you tried so far? On Tue, Mar 1, 2011 at 2:00 AM, parag parag.shetgaon...@gmail.com wrote: hi all, How can I install an apk file from my sd card to the the android phone memory or SD card? thanks in advance. -- You received this message because you are subscribed to the Google

Re: [android-developers] install apk from SD card to phone

2011-03-01 Thread Justin Anderson
What happened when you tapped the apk? On Tue, Mar 1, 2011 at 2:19 AM, sogan xie soga...@gmail.com wrote: copy the apk to sd card from PC then tap the apk install it. That's all. On Tue, Mar 1, 2011 at 5:00 PM, parag parag.shetgaon...@gmail.com wrote: hi all, How can I install an apk

Re: [android-developers] Re: Try to implement coverflow animation using Gallery

2011-03-01 Thread Justin Anderson
is an arraylist that will hold the data of xml we parse.And here i am getting the data for from that arraylist using the position variable. Also i went thru your app ,thats exactly what i want for my app. On Mar 1, 1:33 pm, Justin Anderson magouyaw...@gmail.com wrote: What is clip_model? On Tue, Mar

Re: [android-developers] how to change the version of android application

2011-03-01 Thread Justin Anderson
So you need to build your application against Android 2.2? If you are using Eclipse that will be in the Android section of the project's properties... On Tue, Mar 1, 2011 at 4:35 AM, gaurav gupta gaurav.gupta...@gmail.comwrote: hi guys. my application bulid on android 2.1 , but it dont run on

Re: [android-developers] Re: Try to implement coverflow animation using Gallery

2011-03-01 Thread Justin Anderson
? On Mar 1, 2:35 pm, Justin Anderson magouyaw...@gmail.com wrote: Well... I didn't notice anything that wrong with your code (but I may have missed something). Have you checked your parsing code to make sure that the data is accurate once you've parsed the xml

Re: [android-developers] Re: How can we get handle of GUI controls in Android?

2011-03-01 Thread Justin Anderson
* what is the approach we need to follow to automate the GUI operations?* You can't. On Tue, Mar 1, 2011 at 2:48 AM, raki rakeshkart...@gmail.com wrote: Hi Romain Guy, Thanks for the clarification. If not getting handles of UI elements through UISpy, what is the approach we need to follow

Re: [android-developers] Need Help in Android developement

2011-03-01 Thread Justin Anderson
* please help me* http://www.catb.org/~esr/faqs/smart-questions.html On Tue, Mar 1, 2011 at 2:55 AM, onkar dhane dhane.on...@gmail.com wrote: hey...hi...thanks but please tell me if i want to show pop-up message after completing my progress bar which is on 1st activity. now i have created

Re: [android-developers] Re: Status Bar appears again

2011-03-01 Thread Justin Anderson
You should wait AT LEAST a day before bumping your post... On Tue, Mar 1, 2011 at 8:14 AM, argongold argongol...@gmail.com wrote: Will any one give response from google android team? On Mar 1, 5:09 pm, argongold argongol...@gmail.com wrote: Hi, I am developing a Home Screen and I have

Re: [android-developers] Re: Market package name on Xoom?

2011-03-01 Thread Justin Anderson
* I don't know how many times I have to say but the client has complete control of the environment. Why is this so difficult to understand?* Because obviously is not true... otherwise you would not have had this problem in the first place. :-) On Tue, Mar 1, 2011 at 10:25 AM, Shane Isbell

Re: [android-developers] Re: Exception using ScrollView in landscape orientation

2011-03-01 Thread Justin Anderson
* ..lots more E 243* Do you see the java.lang.NullPointerException? That is the problem causing the crash. Look for a caused by clause in the stack trace after this point. That usually references one of your files and gives a line number where the NullPointerException happened. On Tue, Mar 1,

Re: [android-developers] Announcing: The Android Developers Union

2011-03-01 Thread Justin Anderson
Oh please This is ridiculous. Sure, Android development and Google has its problems. But it is by far better than any other development platform out there. I have friends who develop for WebOS, iPhone, and Windows Mobile 7... Android development (and even the meager support received) is

Re: [android-developers] touch listener with background service

2011-03-01 Thread Justin Anderson
no On Tue, Mar 1, 2011 at 7:26 PM, sleith raysle...@gmail.com wrote: hi is there a way to get touch listener even if the app is on background or using service? i need to get the x y position. thanks -- You received this message because you are subscribed to the Google Groups Android

Re: [android-developers] Unexpected behavior with animated views

2011-03-01 Thread Justin Anderson
And the unexpected behavior would be? On Sat, Feb 26, 2011 at 4:30 PM, BuzzB buzz.burro...@gmail.com wrote: I am using a button to trigger an animation of a view. This button toggles the view, such that the view slides on and off the screen... final Animation animout =

Re: [android-developers] Pop-message

2011-03-01 Thread Justin Anderson
Maybe with a dialog? Or another activity themed as a dialog? On Tue, Mar 1, 2011 at 9:51 PM, Onkar Dhane,Software Developer,Alphabricks Technology pvt. ltd dhane.on...@gmail.com wrote: Hi,i want to show popup message after completing my progress bar task. i have done with progress bar(Ex.

Re: [android-developers] Pop-message

2011-03-01 Thread Justin Anderson
With a dialog. Or perhaps an activity themed as a dialog... Or you could use a toast message. With the amount of info you gave that is about all the help you will get... On Tue, Mar 1, 2011 at 10:13 PM, Onkar Dhane,Trainee Software Developer,Alphabricks Technology pvt. ltd dhane.on...@gmail.com

Re: [android-developers] Re: About Android Application Development

2011-03-01 Thread Justin Anderson
The solution would be as follows: 1. Develop an Android application which contains fields like first name,last name,skill and address 2. Extract the values of all text when a button is clicked and send an sms message to another mobile device Sounds simple enough to me. Now do it...

  1   2   3   4   5   6   7   8   9   10   >