android Programming Glossary: guy's
Android Custom Layout - onDraw() never gets called http://stackoverflow.com/questions/13056331/android-custom-layout-ondraw-never-gets-called false in your TableView constructor. See Romain Guy's explanation EDIT For #2 Initialize it in the constructor then..
How to create a background with Image, Rounded Corners without borders http://stackoverflow.com/questions/16695023/how-to-create-a-background-with-image-rounded-corners-without-borders layer list android share improve this question Romain Guy's image with rounded corner Use a custom Drawable that draws a..
How can I get an Android TableLayout to fill the screen? http://stackoverflow.com/questions/2393847/how-can-i-get-an-android-tablelayout-to-fill-the-screen row rowLp setContentView table Thanks to Romain Guy's comment on Android developer's forum for the solution . share..
How to make an Android view that flips between views on swipe/fling http://stackoverflow.com/questions/5071743/how-to-make-an-android-view-that-flips-between-views-on-swipe-fling a ViewFlipper with a GestureOverlayView as per Romain Guy's blog post here but there's no indicator to the user as they're..
why does the ViewHolder pattren work? http://stackoverflow.com/questions/5973917/why-does-the-viewholder-pattren-work explanation on how the ViewHolder works check out Romain Guy's Google I O 2009 talk in youtube specially the first 15 minutes...
Android Rotating MapView http://stackoverflow.com/questions/6028999/android-rotating-mapview I hope that makes sense. I came across Mr. Romain Guy's post an he says I have done this in the past and it requires..
Android memory leak? http://stackoverflow.com/questions/8174140/android-memory-leak which comes with Android SDK is very useful. Read Romain Guy's articles. It helped me to track down pretty nasty leaks. It..
What is the purpose of Android's <merge> tag in XML layouts? http://stackoverflow.com/questions/8834898/what-is-the-purpose-of-androids-merge-tag-in-xml-layouts of Android's merge tag in XML layouts I've read Romain Guy's post on the merge tag but I still don't understand how it's..
Android - basic gesture detection http://stackoverflow.com/questions/937313/android-basic-gesture-detection Romain Guys's Grid Layout . That file is take from Romain Guy's Photostream application and has only been slightly adapted...
Android Custom Layout - onDraw() never gets called http://stackoverflow.com/questions/13056331/android-custom-layout-ondraw-never-gets-called you can enable ViewGroup drawing by calling setWillNotDrawEnabled false in your TableView constructor. See Romain Guy's explanation EDIT For #2 Initialize it in the constructor then just call rect.set in your onLayout method. For #3 Yes as..
How to create a background with Image, Rounded Corners without borders http://stackoverflow.com/questions/16695023/how-to-create-a-background-with-image-rounded-corners-without-borders shape item item bitmap android src @drawable header item layer list android share improve this question Romain Guy's image with rounded corner Use a custom Drawable that draws a rounded rectangle using Canvas.drawRoundRect . The trick is..
How can I get an Android TableLayout to fill the screen? http://stackoverflow.com/questions/2393847/how-can-i-get-an-android-tablelayout-to-fill-the-screen
How to make an Android view that flips between views on swipe/fling http://stackoverflow.com/questions/5071743/how-to-make-an-android-view-that-flips-between-views-on-swipe-fling you're swiping eg. the way the Launcher does it. I tried using a ViewFlipper with a GestureOverlayView as per Romain Guy's blog post here but there's no indicator to the user as they're swiping. This makes discoverability difficult which is presumably..
why does the ViewHolder pattren work? http://stackoverflow.com/questions/5973917/why-does-the-viewholder-pattren-work patterns share improve this question If you want the best explanation on how the ViewHolder works check out Romain Guy's Google I O 2009 talk in youtube specially the first 15 minutes. In short the Adapter functions as a link between the underlying..
Android Rotating MapView http://stackoverflow.com/questions/6028999/android-rotating-mapview the head of the mapview should always point to upward direction. I hope that makes sense. I came across Mr. Romain Guy's post an he says I have done this in the past and it requires to create a custom ViewGroup that rotates the Canvas in the..
Android memory leak? http://stackoverflow.com/questions/8174140/android-memory-leak help you to get on the right track Allocation tracker which comes with Android SDK is very useful. Read Romain Guy's articles. It helped me to track down pretty nasty leaks. It also helps you to write better software. E.g. I learned to create..
What is the purpose of Android's <merge> tag in XML layouts? http://stackoverflow.com/questions/8834898/what-is-the-purpose-of-androids-merge-tag-in-xml-layouts is the purpose of Android's merge tag in XML layouts I've read Romain Guy's post on the merge tag but I still don't understand how it's useful. Is it a sort of replacement of the Frame tag or is it..
Android - basic gesture detection http://stackoverflow.com/questions/937313/android-basic-gesture-detection that contains 9 ImageViews. The source can be found here Romain Guys's Grid Layout . That file is take from Romain Guy's Photostream application and has only been slightly adapted. For the simple click situation I need only set the onClickListener..
|