Android TextView, ScrollView and gestures

This probably shouldn’t have taken me as long as it did, but I was pretty frustrated while trying to figure out why I couldn’t make my swipe gestures get recognized across the entire app.  Most of the activity screen responded, but not the TextView.  I added a gesture listener explicitly to the TextView and went through dozens of iterations.

Turns out, ScrollView objects absorb gestures – not just the scroll up and down as it needs to, but also the swipe (onFling message) from side-to-side.  I had wrapped my TextView in a ScrollView to allow it to scroll if there was too much text, but that meant limitations on my UI.

To resolve this, I removed the ScrollView wrapper on the TextView, and now the fling gestures are handled by the activity’s GestureHandler.  Ok, that was easy – now everything behaves as it should and the UI is consistent, which is good for the user experience.  No additional handler needs to be added for the view.   The result is that I need to ensure that my font is appropriately sized to not overflow the text box, but that can be handled.

Android app development and making Admob ads display

My brain is so full of Android app development that I don’t even know where to start.  Here are a few small tidbits though:

Give Admob ads enough space
Admob ads won’t display if you don’t give them enough room.  Specifically, 320dp x 48dp (dp = dip = density independent pixels).  It won’t actually tell you that the ad won’t display – the debugger log will show that an ad was retrieved, but nothing shows up on the screen.  Mobclix ads will show up in that space, but Admob ones won’t.

The problem was that I was squeezing the ad into half of the landscape screen.  An ad comfortably fits across the top in portrait mode, but seems to be wasting space in landscape mode.  I used the attribute android:layout_weight=”1″ for each of two columns and figured I had a clever solution to maximize space.  Once I found the reference to the 320dp width requirement I recalculated — on my Motorola Droid the screen is 848 x 480.  A little more obscure, at that resolution the ration of pixels to dp is 1.5:1.  So, while I was giving 424px to the ad, it was only counted as 282dp.  Hence, no display.

Maybe Admob mentioned this somewhere and I missed it.  Either way, I updated my layout to ensure that Admob ads get enough space, and display works.


Rotate the screen
Another thing I had to search on. To rotate emulator, turn numlock of then press 7 or 9 to rotate to landscape and back.  Now I can easily test how my app handles a rotation configuration change!

Android development – The last 20%

You’ve probably heard a saying something like “80% of the work is in the last 20%”.  For me, that’s been true for Android development.  I’ve been working on an app for several months, and I discovered that the technology demo I did (the core functionality) was only a small fraction of the total work.

For months I’ve been working on developing icons (and keeping multiple resolution versions of them straight), multiple screen layouts (portrait, landscape), and other graphic and workflow tasks in addition to just the coding.

There are also deployment steps (sign your app, get it into the market which has additional graphic and description requirements) to take into account.  I can see why a lot of apps seem to have less polish – the developers probably wanted to focus on coding, not the myriad of other things that need to be done.

For example, Google’s Android market requires these things (among others) which are pretty hard to find out about until you register.  I think that’s because the requirements changed recently.

  • Screenshots (at least 2)
  • High Resolution Application Icon(512×512)
  • Promo Graphic (optional)(180×120)
  • Title (30 max chars)
  • Description (4000 max chars)
  • Promo Text (80 max chars)
  • Application Type/subtype
  • Content Rating

In the end, good software development methodologies are still important despite the seemingly small nature of mobile phone apps.  In fact, the user expectations and the hardware limitations might make the user interface polish even more important than on traditional desktop applications.

All that said, I’m pleased that I’m getting much closer to being done.  The important thing is to not get fixated on the initial impression “This will be easy!  I just need to slap some code together and upload it to the market!”.  I’m still pretty sure that the barrier to entry is much lower in the Android app market than the Apple app store, but if you want to do things right, there is still some due diligence to do.

Thinning your wallet for comfort and convenience

If you’re like many men, your wallet has been making a divot in your backside for a while if you haven’t decided to use a front pocket.  I’ve gone through a few iterations, but this time I took the advice of a friend and tried the all-ett wallet.  It’s billed as the world’s thinnest wallet, and it really does deliver.

There are several versions available, and I chose the inside ID wallet in nylon.  It goes for $19.95.  They also have a leather version,  and there are actually a bunch of different formats including some passport wallets.

Ok, first of all some proof that it’s thin:

Thickness ranged from .060″ – .121″

Yes, I actually own a digital caliper.  Rather handy when you’re checking out the manufacturer claims that the wallet is just 1/8″ thick.  They were spot-on.  More measurements are shown below.

Continue reading