[android-developers] Re: where does Android Studio put the APK file?

2015-04-28 Thread Jim Graham
On Mon, Apr 27, 2015 at 11:42:12PM -0700, Doug wrote: Since Studio just delegates to gradle for all of its build activity, you too should just use the gradle command line if you want a particular build artifact. Ok, I have no problem with the command line at all (prefer it, actually), but

[android-developers] where does Android Studio put the APK file?

2015-04-27 Thread Jim Graham
Ok, I give up All of the posts (StackOverflow, etc.) I've found that tell me where Android Studio puts the apk file after a Build Project or rebuild project point me to directories that don't exist on my Mac. Where, after a successful project build in Android Studio, do I find the unsigned

[android-developers] Custom listview shows rows but nothing else

2015-04-27 Thread Jim Graham
I'll put the actual question here, so it doesn't get lost in the text and code I'm hoping someone here can see what my (damaged) vision is refusing to see, specifically, why I get blank rows in my custom listview instead of the stuff that's supposed to be there. I'm trying to do a custom

[android-developers] Re: Custom listview shows rows but nothing else

2015-04-27 Thread Jim Graham
On Mon, Apr 27, 2015 at 09:50:59AM -0700, Vinay Yam wrote: write this code in getview of adapter holder.DescriptionTV.setText(detail.description ) holder.AmountTV .setText(detail.date) holder.DateTV .setText(detail.balance) holder.BalanceTV .setText(detail.amount) With a couple of

[android-developers] Major update: Database access error causes force close

2014-12-06 Thread Jim Graham
New update: The database is being copied, but apparently not completely. If I access a different table, the query (same, except for the table name) works and I get the correct data. Oddly enough, Eclipse's debugger still says that table doesn't exist: 12-06 14:01:20.290: E/SQLiteLog(7927):

[android-developers] Re: Database access error causes force close

2014-12-06 Thread Jim Graham
On Sat, Dec 06, 2014 at 01:13:37PM -0800, Ted P wrote: On another note, learning to use the debugger is pretty easy, and super helpful especially in situations like this That's ultimately what put me on the right track. As it turns out, there is some conflicting information. The tables

Re: [android-developers] How do I get logcat working on my LG G Tab 7.0?

2014-12-05 Thread Jim Graham
On Fri, Dec 05, 2014 at 08:12:33AM -0800, andrew_esh wrote: One thing I usually do when I'm preparing a device to work with adb for debugging is to switch it to appear on the USB bus as a Camera, instead of a Media device. I do this with my Nexus 5 and Nexus 7 devices Actually, while I

[android-developers] Database access error causes force close

2014-12-05 Thread Jim Graham
I'm trying to use an SQLite table with Android (and for almost the first time, period, but I familiarized myself with it using SQLite3 / tclsh8.4), and I've run into a bit of a problem where I can't seem to spot the error. Here is the code where it's failing and force closing:

[android-developers] Re: Database access error causes force close (Update)

2014-12-05 Thread Jim Graham
On Fri, Dec 05, 2014 at 02:59:20PM -0600, Jim Graham wrote: I'm trying to use an SQLite table with Android (and for almost the first time, period, but I familiarized myself with it using SQLite3 / tclsh8.4), and I've run into a bit of a problem where I can't seem to spot the error. Update

Re: [android-developers] Database access error causes force close

2014-12-05 Thread Jim Graham
On Fri, Dec 05, 2014 at 10:27:56PM -0500, Steve Gabrilowitz wrote: You could try putting a try/catch block around the offending statement to catch a generic exception, maybe finding out exactly what exception pops up might give you a clue? I tried that. The catch statement, which should have

Re: [android-developers] Database access error causes force close

2014-12-05 Thread Jim Graham
On Fri, Dec 05, 2014 at 10:40:01PM -0500, Steve Gabrilowitz wrote: Put a breakpoint in the catch clause and when it gets there examine the exception - that's how I recently figured out a similiarly puzzling force close. Honestly, I don't even know how to do that. I've never run into a

[android-developers] How do I get logcat working on my LG G Tab 7.0?

2014-12-04 Thread Jim Graham
I recently picked up (special deal while upgrading/renewing etc.) an LG G Tab 7.0 as, mostly, a development/testing device. There's just one problem. It doesn't appear, by default, to log anything other than system processes. I've called LG tech support ... and if the quoting of support didn't

Re: [android-developers] How do I get logcat working on my LG G Tab 7.0?

2014-12-04 Thread Jim Graham
On Fri, Dec 05, 2014 at 08:55:40AM +0800, Peter Teoh wrote: On Fri, Dec 5, 2014 at 8:41 AM, Jim Graham spooky1...@gmail.com wrote: So does anyone here know how I get logcat to log everything, so I can use it when I need it? As compared with the earlier Android version, there are now many

Re: [android-developers] How do I get logcat working on my LG G Tab 7.0?

2014-12-04 Thread Jim Graham
On Thu, Dec 04, 2014 at 08:58:26PM -0600, TreKing wrote: On Thu, Dec 4, 2014 at 7:50 PM, Jim Graham spooky1...@gmail.com wrote: Btw, I could not even find the Developer Options menu on this thing. I found the usual unknown sources checkbox under Security, but none of the USB Debugging

Re: [android-developers] How do I get logcat working on my LG G Tab 7.0?

2014-12-04 Thread Jim Graham
On Fri, Dec 05, 2014 at 11:19:53AM +0800, Peter Teoh wrote: On Fri, Dec 5, 2014 at 10:58 AM, TreKing treking...@gmail.com wrote: On Thu, Dec 4, 2014 at 7:50 PM, Jim Graham spooky1...@gmail.com wrote: As for the device not being recognized, try various combinations of: Right

Re: [android-developers] How do I get logcat working on my LG G Tab 7.0?

2014-12-04 Thread Jim Graham
On Fri, Dec 05, 2014 at 11:50:02AM +0800, Peter Teoh wrote: On Fri, Dec 5, 2014 at 11:23 AM, Jim Graham spooky1...@gmail.com wrote: On Thu, Dec 04, 2014 at 08:58:26PM -0600, TreKing wrote: by default it does not exists, for all Android phone. You have to do the tapping 7 times: http

Re: [android-developers] How do I get logcat working on my LG G Tab 7.0?

2014-12-04 Thread Jim Graham
On Thu, Dec 04, 2014 at 10:44:46PM -0600, TreKing wrote: On Thu, Dec 4, 2014 at 9:23 PM, Jim Graham spooky1...@gmail.com wrote: You did not clarify, so, to be sure, you followed the directions on that page, right? Well, given that this post just now showed up here, no, I didn't even know

Re: [android-developers] insane ScrollView problems

2014-10-15 Thread Jim Graham
On Wed, Oct 15, 2014 at 11:31:34AM +0530, Anurag Purwar wrote: change LinearLayout xmlns:android= http://schemas.android.com/apk/res/android; to LinearLayout xmlns:android=http://schemas.android.com/apk/res/android; I had it that way beforehere's the error from Eclipse: error:

Re: [android-developers] insane ScrollView problems

2014-10-15 Thread Jim Graham
On Tue, Oct 14, 2014 at 11:31:54PM -0700, gjs wrote: Hi, Hmm, is your ScrollView height correct ? I usually use something like - ScrollView android:id=@+id/settings_scrollview android:layout_width=fill_parent android:layout_height=wrap_content That's what I had, before trying a

[android-developers] Re: insane ScrollView problems

2014-10-15 Thread Jim Graham
On Tue, Oct 14, 2014 at 11:27:11PM -0700, Nobu Games wrote: I'm not sure if that's just a copy paste error, but you close the LinearLayout tag prematurely. So all its attributes including layout_width just count as unexpected text: LinearLayout

Re: [android-developers] insane ScrollView problems

2014-10-15 Thread Jim Graham
On Wed, Oct 15, 2014 at 12:03:28AM -0700, Will Christiansen wrote: So what I think you need to do it follow Nobu Games suggestion about the premature closure. Of course I should...that's how I had it originally. But as I've said, when I do that, Eclipse whines about it not being closed.

[android-developers] insane ScrollView problems

2014-10-14 Thread Jim Graham
I give up...I've gone through examples (including using my own past code that worked), and no matter what I try, using ScrollView causes a force close, claiming that I haven't provided a layout_width parameter (I have). In fact, I checked EVERYTHING in the layout file, and nothing is missing

Re: [android-developers] Physical address is required for paid apps or in-app purchases

2014-10-07 Thread Jim Graham
On Tue, Oct 07, 2014 at 11:47:08AM -0700, jtoolsdev wrote: I don't recall that last week it said postal address. It looks like they updated it and added more language to that section in Settings. AND it mentions the address requirement that is in the developer terms so I clicked on that

Re: [android-developers] Physical address is required for paid apps or in-app purchases

2014-10-06 Thread Jim Graham
On Fri, Sep 19, 2014 at 05:31:46PM -0400, Dallas Singletary wrote: It has to be a PHYSICAL ADDRESS no PO BOXES I just now saw this thread (haven't been active here for a while) and updated my info. It specifically says a current valid postal address. If I were to use my physical (home)

Re: [android-developers] need reference / example for game orientation matrix

2014-09-13 Thread Jim Graham
On Thu, Sep 11, 2014 at 11:21:33PM -0700, Adam Ratana wrote: On Thursday, September 11, 2014 2:56:15 PM UTC-4, Spooky wrote: Unfortunately these things are not well documented, and it's assumed that you have some knowledge of this from, say, the game development space. I Unfortunately,

Re: [android-developers] need reference / example for game orientation matrix

2014-09-11 Thread Jim Graham
On Thu, Sep 11, 2014 at 06:23:44AM -0700, Adam Ratana wrote: Hello Jim, try the rotation vector sensor, this uses all 3 when applicable. Most devices these days implement it. Thanks---I'll look it up. Hopefully I can find an actual example. Matrices and vectors are all stuff that I haven't

[android-developers] need reference / example for game orientation matrix

2014-09-10 Thread Jim Graham
I'm trying to write a game controller that works similarly to aircraft flight controls (rotate the device to move player). I'm trying to use the game orientation matrix, but after repeated Google searches, a post to Stack Overflow (at http://tinyurl.com/ocqw6br), I have yet to even find any

Re: [android-developers] ADT/SDK 23 broken on Mac - annotations.jar

2014-07-01 Thread Jim Graham
On Mon, Jun 30, 2014 at 05:20:52PM -0700, 'Tor Norbye' via Android Developers wrote: There were some packaging problems in Tools 23 where proguard and annotations.jar were missing. We've released 23.0.1 to fix that, so invoke the SDK manager and install it (if necessary run Packages Reload

Re: [android-developers] ADT/SDK 23 broken on Mac - annotations.jar

2014-07-01 Thread Jim Graham
On Mon, Jun 30, 2014 at 05:20:52PM -0700, 'Tor Norbye' via Android Developers wrote: There were some packaging problems in Tools 23 where proguard and annotations.jar were missing. We've released 23.0.1 to fix that, so invoke the SDK manager and install it (if necessary run Packages Reload

Re: [android-developers] ADT/SDK 23 broken on Mac - annotations.jar

2014-07-01 Thread Jim Graham
On Tue, Jul 01, 2014 at 07:16:05AM -0700, 'Tor Norbye' via Android Developers wrote: Hi Kostya, No, I don't think that was a deliberate change. We switched the builds over from some old hacky build scripts to using the recommended way to build Eclipse itself (some sort of Maven setup,

Re: [android-developers] ADT/SDK 23 broken on Mac - annotations.jar

2014-07-01 Thread Jim Graham
On Tue, Jul 01, 2014 at 07:18:33AM -0700, Tor Norbye wrote: On Tue, Jul 1, 2014 at 5:22 AM, Jim Graham spooky1...@gmail.com wrote: The project cannot be built until build path errors are resolved Look familiar? This is after installing ADT 23.0.1. That file is definitely

[android-developers] The ADT version 23 mess: FIXED

2014-06-30 Thread Jim Graham
I'm happy to say, it's ALL working now. I manually re-inserted the link to Android stuff in Help--Install New Software that Kostya provided in Message-ID: CAN7dqjCm9-dHcE72dd6VM58Qp=2_PfJJc9D=+-vcbwfnpud...@mail.gmail.com: Android - https://dl-ssl.google.com/android/eclipse And then

[android-developers] Re: The ADT version 23 mess: FIXED UPDATE

2014-06-30 Thread Jim Graham
Referring to my previous post (should be above this one in the thread) If you get a build path error on every existing project in your workspace, read this...otherwise, skip this message. When I FINALLY got Eclipse configured (view), I moved on to making sure old projects would build. They

Re: [android-developers] Re: The ADT version 23 mess: FIXED UPDATE

2014-06-30 Thread Jim Graham
On Mon, Jun 30, 2014 at 05:49:38PM +0200, Michael Banzon wrote: Thank you for sharing the solution. No problem...just seemed like the right thing to do. :-) Later, --jim -- THE SCORE: ME: 2 CANCER: 0 73 DE N5IAL (/4) | Some people are like Slinkies, they serve no

[android-developers] Re: The ADT version 23 mess: FIXED - Yet another update

2014-06-30 Thread Jim Graham
Eclipse 3.8 appears to be a screwed-up version. I just upgraded to Juno, and SO FAR, it seems to be working better. We shall see...tomorrow. I'm done with this tonight. Later, --jim -- THE SCORE: ME: 2 CANCER: 0 73 DE N5IAL (/4) | spooky1...@gmail.com | Unix *IS*

Re: [android-developers] ADT/SDK 23 broken on Mac - annotations.jar

2014-06-30 Thread Jim Graham
On Mon, Jun 30, 2014 at 04:27:36PM -0700, Nathan wrote: I do not even know if I am having the same problems as others. You are...trust me. This, apparently, is a thorn in everyone's side (and I picked up on in my ankle this afternoon, just to add insult to injury). I downloaded the combined

[android-developers] How do I import AndEngine into Android Studio w/o Gradle?

2014-06-29 Thread Jim Graham
As mentioned in a previous post, something happened to my Eclipse install (ADT version 22.6 is screwed up and breaks everything), and the upgrade to 22.6 was forced by Android Studio, as I recall. Whatever, I don't really care what made me upgrade to a broken ADT. I just want to get started with

[android-developers] ATTN all developing on Mac OS X: need working SDK/ADT

2014-06-29 Thread Jim Graham
For those out there who are developing for Android using Eclipse (Indigo, aka 3.7.2) on a Mac, I need a working copy of the SDK with an ADT version that both Eclipse and the SDK are happy with. If you still have the old (my copy was several years old) android-sdk-macosx.tar.gz file, that is

[android-developers] What SDK version insists on the broken v23 of the SDK tools?

2014-06-29 Thread Jim Graham
Some SDK that I have installed (up to and including 4.1.2) is insisting on SDK Tools version 23, which the SDK manager claims is installed. Eclipse says it's version 2.6. From what I've gathered since yesterday, this is a known bug. I've tried removing SDK versions, and the problem does not go

Re: [android-developers] ATTN all developing on Mac OS X: need working SDK/ADT

2014-06-29 Thread Jim Graham
Strange. I think my procmail filters are still messed up...this somehow ended up in my regular mail and not in the list's mbox, and I had no idea that the post even went out until I looked at the headers. I'll try to find the error in procmail later On Mon, Jun 30, 2014 at 12:18:17AM

Re: [android-developers] ATTN all developing on Mac OS X: need working SDK/ADT

2014-06-29 Thread Jim Graham
Procmail filters still broken...arrived in my mail, not list. Strange. On Mon, Jun 30, 2014 at 02:44:44AM +0400, Kostya Vasilyev wrote: 2014-06-30 2:11 GMT+04:00 Jim Graham spooky1...@gmail.com: On Mon, Jun 30, 2014 at 12:18:17AM +0300, Harri Sm?tt wrote: I was able to recover my broken

Re: [android-developers] Eclipse // SDK/ADT tools update

2014-06-29 Thread Jim Graham
Update: I changed (via a simple symbolic link) eclipse/ from 3.7.2 to 3.8, and was able to update the ADT tools to version 23. Now, however, a project that should build without errors has errors all over the place. Basically, all Android-specific Java is an error. When I look at the

[android-developers] Re: What SDK version insists on the broken v23 of the SDK tools?

2014-06-29 Thread Jim Graham
Seems I accidentally did a direct reply. This is NOT my week. On Sun, Jun 29, 2014 at 07:28:29PM -0700, Hounge Dev wrote: Jim, Ive had the same issue, k, here's what I've found. Upgrade Eclipse to 3.8 (whatever that one is called). You will then be able to use Help--Install New Software to

Re: [android-developers] Re: What SDK version insists on the broken v23 of the SDK tools?

2014-06-29 Thread Jim Graham
On Mon, Jun 30, 2014 at 12:05:24PM +0900, Nikolay Elenkov wrote: On Mon, Jun 30, 2014 at 11:44 AM, Jim Graham spooky1...@gmail.com wrote: But here's the problem: Eclipse now seems to be out of favor with Google, Android Studio doesn't seem to work for libs like AndEngine, so you have

Re: [android-developers] Re: What SDK version insists on the broken v23 of the SDK tools?

2014-06-29 Thread Jim Graham
On Sun, Jun 29, 2014 at 08:12:33PM -0700, Hounge Dev wrote: Looking at your post I think you need to set the path to your SDK in eclipse to get SDk manager, AVD etc working again. That's just it: there's no option TO set the location of the SDK. It's as if Eclipse 3.8 doesn't know that

[android-developers] Strange Eclipse problems

2014-06-27 Thread Jim Graham
I'm running Eclipse (Indigo), and am seeing some errors I've never seen before...hoping someone here can help me get past these. First, when I open Eclipse, it complains that This SDK (WHICH SDK???) requires ADK version 3.0, and I only have 2.6 installed. Fine. I'll install 3.0. When I try to

Re: [android-developers] Strange Eclipse problems

2014-06-27 Thread Jim Graham
On Sat, Jun 28, 2014 at 01:48:27AM +0530, Anil Kumar wrote: Does it Happened after you updated your android sdk to android L. Because if so, then all these errors are obvious.. Android L??? I have no idea what release that is, so I don't know. I DID have several APIs loaded for something else

Re: [android-developers] Strange Eclipse problems

2014-06-27 Thread Jim Graham
On Sat, Jun 28, 2014 at 12:35:36AM +0400, Kostya Vasilyev wrote: Might be related to this: https://plus.google.com/111661559774274998746/posts/FSqUAwwikBd The comment by Joe Rogers Basically, the 23 version of ADT has wrong package name. After reading some of the comments (particularly

Re: [android-developers] Strange Eclipse problems

2014-06-27 Thread Jim Graham
On Sat, Jun 28, 2014 at 12:35:36AM +0400, Kostya Vasilyev wrote: Might be related to this: https://plus.google.com/111661559774274998746/posts/FSqUAwwikBd The comment by Joe Rogers Ah, yes, missed the name. That was the one I was referring to. Now, while we're on that one page, the OP,

Re: [android-developers] I cracked my screen on my tablet am i able to get it repaired?

2013-04-29 Thread Jim Graham
On Sat, Apr 27, 2013 at 11:23:09AM -0700, Chris Fraser wrote: I cracked my screen on my tablet am i able to get it repaired? No. I seriously doubt that you'll be able to develop an Android app to repair your broken screen. You might be able to get it repaired by some other means besides

Re: [android-developers] Re: Why aren't there OpenGL ES 2.0 tutorials for Android on Youtube?

2013-03-29 Thread Jim Graham
On Fri, Mar 29, 2013 at 12:36:32PM -0700, tom_mai78101 wrote: I have seen it, but it doesn't answer my question. Why aren't OpenGL ES 2.0 video tutorials available on the net? Perhaps nobody's made one? Or you just didn't find the right search (I've run into this plenty of times, myself). If

Re: [android-developers] Android Games SDK?

2013-03-20 Thread Jim Graham
On Wed, Mar 20, 2013 at 05:42:58AM -0700, Taylor Ringo wrote: Are there any game development SDK's by google, or some other established developers? I'm programming in JAVA. As to SDKs, I don't know. However, there are at least two popular game engine libs, libgdx and andengine, which is

Re: [android-developers] Re: Eclipse or Intellij.. what's the verdict?

2013-03-19 Thread Jim Graham
On Mon, Mar 18, 2013 at 09:54:26PM -0700, Jason Polites wrote: So, the NDK stuff is pretty simply if your project is created in an NDK Friendly way. That is, you have a folder called jni and in that folder you have an Android.mk and an Application.mk file. Yeah, it's definitely configured in

Re: [android-developers] Re: Eclipse or Intellij.. what's the verdict?

2013-03-18 Thread Jim Graham
On Wed, Mar 13, 2013 at 02:32:57PM -0700, bob wrote: I tried intelliJ on Mac yesterday, and it *was* a hassle telling it where the JDK and Android SDK were. I'm not even sure how I got past that part. A lot of fiddling and googling were involved. I just downloaded it and got started

Re: [android-developers] Re: Eclipse or Intellij.. what's the verdict?

2013-03-12 Thread Jim Graham
On Tue, Mar 12, 2013 at 11:04:53AM -0700, Ian Ni-Lewis wrote: I don't care to argue about the superiority or inferiority of each product; Just FWIW, I, no doubt like most here, still remember what comp.editors used to be like in the weekly editor wars, some of which were still going while the

Re: [android-developers] Fwd: [SPAM]

2013-02-18 Thread Jim Graham
On Sun, Feb 17, 2013 at 04:06:59AM +0100, tiger meng wrote: http://www.tassinionline.it/r4viz7.php?s=lf Sigh...yet another spammer for the /dev/null procmail filter. -- THE SCORE: ME: 2 CANCER: 0 73 DE N5IAL (/4)MiSTie #49997 Running Mac OS X Lion spooky1...@gmail.com

Re: [android-developers] Fwd:

2013-02-13 Thread Jim Graham
On Wed, Feb 13, 2013 at 11:39:04AM -0800, Red Cricket wrote: Oh great a malicious spam post gets posted while my questions are ignored. Was that a spam I followed up to? I should have known by the lack of any actual content. Oh well. Later, --jim -- THE SCORE: ME: 2 CANCER: 0 73 DE

Re: [android-developers] Fwd:

2013-02-12 Thread Jim Graham
On Mon, Feb 11, 2013 at 11:18:25AM +0100, murali krishna wrote: http://www.asscon-tatto.it/1fiuwp.php?s=lf Hmmm, let's see, no subject (thus CLEARLY NOTHING IMPORTANT AT ALL), and no problem, question, etc. Ok, here's your answer: 42. Hope that helps. --jim -- THE SCORE: ME: 2

Re: [android-developers]

2013-02-12 Thread Jim Graham
On Mon, Feb 11, 2013 at 09:02:23AM -0800, Robert Scott wrote: http://erzurumasml.com/umxvdmb/hvafchfv6ddnqx03yimdom9muavmh6z3ro6hrcj/ No subject (i.e, nothing that matters) and no message content. Here's your answer, then: 42 -- THE SCORE: ME: 2 CANCER: 0 73 DE N5IAL (/4) |

Re: [android-developers] Fwd:

2013-02-12 Thread Jim Graham
On Mon, Feb 11, 2013 at 08:33:14PM +0100, Donal Rafferty wrote: http://www.pixfoto.it/6qydll.php?s=ot Once again...no subject, meaning the OP has nothing to ask, as confirmed by the complete lack of content. Here's your answer, then: 42 -- THE SCORE: ME: 2 CANCER: 0 73 DE N5IAL (/4)

Re: [android-developers] Re: Android apps developing practice

2013-02-04 Thread Jim Graham
On Mon, Feb 04, 2013 at 07:11:30AM -0800, bob wrote: I would like an app that makes it easy to browse Google Groups. Your favorite e-mail client, perhaps? :-) I use procmail to re-direct all e-mail lists into their own files in a directory under my ~ ($HOME) directory (~/incoming.mail), e.g.,

Re: [android-developers] is Google going to ship Chrome as a default browser for next OS release

2013-01-31 Thread Jim Graham
On Wed, Jan 30, 2013 at 06:39:21PM -0800, DroidMaster wrote: I am kind of agree with you on this; if there is a enforcement from google to ship with chrome only then it would be the same browser war on PC. Question: does anyone seriously use the default browser anyways? There are (in my

Re: [android-developers] Re: GooglePlay changes their payout schedule to 15 days after the end of the month!

2013-01-31 Thread Jim Graham
On Wed, Jan 30, 2013 at 10:50:29PM -0800, Zsolt Vasvari wrote: Huh? Why? It's probably good for 10% of the developers, bad for 10% and irrelevant for 80%. It all depends when your bills are due or if you are capable of managing your finances. Not that I expect this to matter to me

Re: [android-developers] Re: Developer fee payment canceled after 2.5 years

2013-01-15 Thread Jim Graham
On Mon, Jan 14, 2013 at 10:30:06PM -0800, Gyscos wrote: They didn't *tell me* how to fix it, they said it was fixed. Ah, ok. I stand corrected, then. Later, --jim -- THE SCORE: ME: 2 CANCER: 0 73 DE N5IAL (/4) | Peter da Silva: No, try rm -rf / spooky1...@gmail.com |

Re: [android-developers] Re: Developer fee payment canceled after 2.5 years

2013-01-14 Thread Jim Graham
On Mon, Jan 14, 2013 at 01:16:10PM -0800, Gyscos wrote: Just received a mail informing me of a fix, and indeed I can once again access the developer console. Thanks support team ! :) Ok, so, you know other people here (not me, btw---I checked) are having the same problem, and you didn't post

Re: [android-developers] Total User Installs decreasing

2013-01-14 Thread Jim Graham
On Mon, Jan 14, 2013 at 03:28:02PM -0800, Iain King wrote: I'm not stressing, I'm just curious :) I don't understand how that number can go down. Well, you've heard of quantum mechanics, right? Where sub-atomic particles can actually be in more than one place at the same time until you make

Re: [android-developers] data in horizontal scrollview

2013-01-13 Thread Jim Graham
On Sun, Jan 13, 2013 at 11:43:23PM +0800, wen5448748 wrote: Hello, do you know how to unsubscribe this group? android-developers@googlegroups.com If you know, pls help me. Thank you very much! Yes, and so do you. Later, --jim PS: Hint: read the list's .signature in every message. --

Re: [android-developers] video player

2013-01-06 Thread Jim Graham
On Sat, Jan 05, 2013 at 09:50:42AM -0800, laxman k wrote: how to play the video from url with land scape and handling the buffer loading Start here: http://developer.android.com/guide/index.html Later, --jim -- THE SCORE: ME: 2 CANCER: 0 73 DE N5IAL (/4) | Peter da Silva:

Re: [android-developers] What to do when people are complaining about a virus in my app

2012-12-29 Thread Jim Graham
On Sat, Dec 29, 2012 at 07:03:29AM -0800, Balint wrote: Recently many users were complaining about a virus in my app. [] My guess is that these people are using bad antivirus applications. Any ideas? A virus? On a Unix-based OS? Last time I checked, this wasn't possible. On a windoze

Re: [android-developers] Low resolution in camera.TakePicture

2012-12-29 Thread Jim Graham
On Sat, Dec 29, 2012 at 12:08:52PM -0300, Italo Mendon?a Rocha wrote: I have an application that uses the Camera and SurfaceView to take pictures. When I take photos by Galaxy S2 or smaller devices the picture resolution is perfect. But when I try to take pictures by Galaxy S3 or tablets the

Re: [android-developers] How to make Text unselectable in EditText

2012-12-27 Thread Jim Graham
On Thu, Dec 27, 2012 at 07:38:32PM -0800, monty wrote: my means is that no one can select the text which is inside the edittext..but user can edit it... example: I have field USER NAME - india ,if user double click or long press in edittext to select this text india,he should not able to do

Re: [android-developers] Re: disabling camera automatic intensity adjustment

2012-12-20 Thread Jim Graham
On Thu, Dec 20, 2012 at 12:22:03PM -0800, RichardC wrote: http://developer.android.com/reference/android/hardware/Camera.Parameters.html#setAutoExposureLock(boolean) True, but only if you're running ICS (API level 14) or higher. There are still at least some (haven't checked to see how many

Re: [android-developers] BPM calculation in Android

2012-12-02 Thread Jim Graham
On Sat, Dec 01, 2012 at 11:16:10PM -0800, suandroidcks wrote: [nothing worthy of reading, much less quoting] On Friday, February 4, 2011 12:20:53 PM UTC-6, TreKing wrote: On Wed, Feb 2, 2011 at 7:23 AM, Siva Kannabiran sivasa...@gmail.comjavascript: wrote: can anyone help me

[android-developers] Camera parameters - Scene modes

2012-11-29 Thread Jim Graham
I recently got a new Android phone, with an 8 MP camera. It has a scene mode that I'm not familiar with, and is not listed in the Camera.Parameters page: asd. If/when I ever finish my camera app (when my tablet died, so did my only useful test platform...the new phone has enabled me to get back

Re: [android-developers] Re: Camera parameters - Scene modes

2012-11-29 Thread Jim Graham
On Thu, Nov 29, 2012 at 08:01:56AM -0800, bob wrote: Maybe it stands for Auto-Sense Darkness? I was wondering about that, myself, and tried it out. I didn't notice any change (and I'm in a room that isn't all that well lit, and was aiming the camera into an area that is even less well lit.

Re: [android-developers] Sobel camera

2012-11-22 Thread Jim Graham
On Thu, Nov 22, 2012 at 06:53:20PM +0530, android groups wrote: Yes, First Sorry for my bad English, I am designing one android app in that app we are puting sobel camera for fun so that way i am asking some guide to build sobel camera .. I gave you the information you need. If you want

Re: [android-developers] Re: How do I fix this error

2012-11-20 Thread Jim Graham
On Mon, Nov 19, 2012 at 10:56:55PM -0600, Kevin Brooks wrote: If you don't consider his choice of words rude, then perhaps you also need some lessons in interpersonal skills. Honestly, if you consider Lew's words rude, you probably consider it rude if someone says hi to you. The way I read his

Re: [android-developers] Sobel camera

2012-11-18 Thread Jim Graham
On Fri, Nov 16, 2012 at 05:52:15AM -0800, srikanth wrote: please guide me how to make sobel camera in android application Wrong e-mail list. Try android-ope...@googlegroups.com. But first, look at the OpenCV samples BEFORE you ask on the OpenCV/Android list. Later, --jim -- THE SCORE:

Re: [android-developers] Blocked by Moderator?

2012-10-29 Thread Jim Graham
On Fri, Oct 26, 2012 at 03:42:47PM -0700, Anders Rundgren wrote: I have sent several messages to this list and none of them show up. What's the reason for this? Was the first of those posts your first one to this group? If so, it was held for moderation, and any after that until your first one

Re: [android-developers] I had android doubt.Please help me to solve it.

2012-10-29 Thread Jim Graham
On Mon, Oct 29, 2012 at 10:33:20AM +0530, Siva Kumar wrote: I had android doubt.Please help me to solve it. Are you saying you have a problem with some Android development (using the SDK) issue? If so, you need to A) tell us what you're trying to develop B) explain what you've done so far to

Re: [android-developers] Re: Android camera orientation problem

2012-10-24 Thread Jim Graham
On Tue, Oct 23, 2012 at 09:50:31PM -0700, Adam Ratana wrote: I've just spent quite a bit of my spare time working on implementing a portrait mode activity option for the camera preview - to answer Spooky's question, the main reason one might do this is because it goes well with the UI/UX

Re: [android-developers] Re: Android camera orientation problem

2012-10-23 Thread Jim Graham
On Mon, Oct 22, 2012 at 09:53:12PM -0700, Haris wrote: I don't know why it's not worked with me. If I set orientation as portrait in manifest file I am getting 90 degree rotated image in my preview. But in the case of landscape orientation I am getting normal image in my preview while my phone

Re: [android-developers] Re: dtmf reading

2012-10-22 Thread Jim Graham
On Mon, Oct 22, 2012 at 10:44:45AM -0700, bob wrote: I seriously doubt DTMF is used anywhere. It is used for analog (POTS) phones with DTMF (last time I checked, some people still had dial phones, too). But on digital telephony, you're basically right---the tones in the receiver are for the

Re: [android-developers] FLASH_MODE_TORCH doesn?t work in Samsung Galaxy Ace

2012-09-23 Thread Jim Graham
On Sat, Sep 22, 2012 at 10:18:48AM -0700, Barragan wrote: Here my question: I?m doing a flash light aplication, and my aplication works in all devices with flash, but it doesn?t work in some Samsung devices, how Samsung Galaxy Ace. I searched in Internet but i don?t find anything... and

Re: [android-developers] Can anybody tell me how can i disable BACK button on android?

2012-09-21 Thread Jim Graham
On Wed, Sep 19, 2012 at 11:10:52AM -0700, Wajiha Kanwal wrote: Can anybody tell me how can i disable BACK button on android? Remind me not to get any of your apps. That's a sure way to piss off a lot of would-be users. Later, --jim -- THE SCORE: ME: 2 CANCER: 0 73 DE N5IAL (/4)

Re: [android-developers] [NDK - Running compiled file issue] - eh_frame_hdr

2012-09-17 Thread Jim Graham
Wrong list: this group is for Android development using the SDK (java). Try the android-ndk group instead if you want answers. Later, --jim -- THE SCORE: ME: 2 CANCER: 0 73 DE N5IAL (/4)| 1) Smoking habanero powder helps defeat that Running Mac OS X Lion|off taste'

Re: [android-developers] Re: plz assign me any application i m free now a days !!!

2012-09-14 Thread Jim Graham
On Fri, Sep 14, 2012 at 12:17:49PM -0700, Andrea Pietroni wrote: Make an Android tablet interface to Google Groups. Good suggestion, I wonder why Google doesn't have one. Well, maybe google doesn't, specifically, but Android does. Here are a few examples: 1) K-9 Mail 2) Gmail 3)

Re: [android-developers] Re: hi

2012-09-13 Thread Jim Graham
On Thu, Sep 13, 2012 at 01:49:42PM -0700, bob wrote: 1. The comparison of the username and password is case-sensitive, which it probably shouldn't be (*maybe* for password, probably not for username) Just FYI: I have never seen a case where the password is NOT case sensitive (that would

Re: [android-developers] hi

2012-09-12 Thread Jim Graham
On Wed, Sep 12, 2012 at 10:05:06PM -0500, TreKing wrote: On Tue, Sep 11, 2012 at 9:07 AM, jesweer jesweer.j...@gmail.com wrote: i'm having problem with this program please help me Should we use our psychic powers to determine what your problem is? Didn't you read the subject line? The OP

Re: [android-developers] twitter4j not working on ICS and JellyBean

2012-09-06 Thread Jim Graham
On Thu, Sep 06, 2012 at 02:54:59AM -0700, Swap wrote: hey guys I am having problem with twitter 4 j its show force close on ICS and Jellybean but its works on Lower version please check the link below for details and code Code of my

Re: [android-developers] twitter4j not working on ICS and JellyBean

2012-09-06 Thread Jim Graham
On Thu, Sep 06, 2012 at 03:14:10PM +0200, Swapnil adsure wrote: here is link with code I don't see any code. Just a link. Where's the code? Where is the actual question? Where's the logcat output? Why isn't it posted here, where it belongs if you're asking the question here? This has been

Re: [android-developers] Play audio during call

2012-09-02 Thread Jim Graham
On Sun, Sep 02, 2012 at 05:38:20PM -0500, Kristopher Micinski wrote: As I just said, this app will be impossible to write. Anyone want to place any bets on how many minutes (seconds?) it'll be until the next time someone asks this question? Later, --jim -- THE SCORE: ME: 2 CANCER: 0 73

Re: [android-developers] Issues with SpeechRecognizer on Jelly Bean

2012-08-30 Thread Jim Graham
On Thu, Aug 30, 2012 at 01:53:30PM -0700, joebowbeer wrote: There seems to be a major issue affecting programmatic users of the speech recognition service on Jelly Bean handsets: In particular, users of the RecognitionListener are not receiving results. Seems to me like that'd be a problem

Re: [android-developers] Get cellular signal frequency?

2012-08-28 Thread Jim Graham
On Tue, Aug 28, 2012 at 10:52:46PM -0400, Kristopher Micinski wrote: On Tue, Aug 28, 2012 at 10:45 PM, Felipe Silveira webfel...@gmail.com wrote: I need this in an application which helps choose which external antenna type is indicated for each area. It is related to the signal frequency...

Re: [android-developers] Get cellular signal frequency?

2012-08-28 Thread Jim Graham
On Wed, Aug 29, 2012 at 01:04:23AM -0400, Kristopher Micinski wrote: That's worth mentioning, generally the stats reported by telephony hardware are highly nominal at best and will change or fluctuate quite a bit depending on the protocol, etc... (I also have an EE degree, and can attest to

Re: [android-developers] TWO APPS WITH SAME NAME

2012-08-27 Thread Jim Graham
On Mon, Aug 27, 2012 at 12:30:30PM -0700, vivek singh wrote: @bob: that one is not my app Are you really willing to take that chace? I've already forgotten which uses which case, but who cares? If you're using even a slight variant of their name, you're taking a HUGE risk of being sued. And

Re: [android-developers] How can I calculate the BPM (Beats per minute) of a sound in a native android project?

2012-08-22 Thread Jim Graham
On Wed, Aug 22, 2012 at 03:56:44AM -0700, Pau Rodr??guez Coloma wrote: I'm developing a native android app Cool. But you're in the wrong e-mail list for native apps. You are *FAR* more likely to get a useful response if you post your question to android-...@googlegroups.com instead of this

Re: [android-developers] Bitmap size exceeds

2012-08-15 Thread Jim Graham
On Thu, Aug 16, 2012 at 07:53:03AM +0500, Numair Qadir wrote: Oh man. Thanks alot. That is the wonderful book that teaches me alot regarding media stuff. The problem is solved :) No problem...I agree completely. It's definitely a very good book, but you need to read it along with the relevant

Re: [android-developers] Re: Bitmap size exceeds

2012-08-14 Thread Jim Graham
On Wed, Aug 15, 2012 at 06:27:12AM +0500, Numair Qadir wrote: Dear Bob, I tried my app in API 11 with largeHeap=true, but the app crashes. It didn't work. :( Of course not...I tried that, too...no help at all. Later, --jim -- THE SCORE: ME: 2 CANCER: 0 73 DE N5IAL (/4)

Re: [android-developers] Bitmap size exceeds

2012-08-14 Thread Jim Graham
On Wed, Aug 15, 2012 at 06:35:43AM +0500, Numair Qadir wrote: I like the solution you proposed for me, can you please explain me more how to load/scale it at the same time. Any help from code snippet/ example would be more appreciated. Thanks For examples, buy a copy of the book I learned

  1   2   3   4   5   6   7   >