<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Snipplr</title>
    <description>Recent snippets posted on Snipplr.com</description>
    <link>https://snipplr.com/</link>
    <lastBuildDate>Tue, 09 Jun 2026 07:34:00 +0000</lastBuildDate>
    <item>
      <title>(Other) Adapter class for Recyclerview in kotlin android - m3000</title>
      <link>https://snipplr.com/view/337784/adapter-class-for-recyclerview-in-kotlin-android</link>
      <description>&lt;p&gt;This the base code for creating adapter class which is used for filling recyclerview in android.&#13;
This snippet is written in kotlin but it is same to the java version&lt;/p&gt;</description>
      <pubDate>Sun, 05 Apr 2020 16:21:43 UTC</pubDate>
      <guid>https://snipplr.com/view/337784/adapter-class-for-recyclerview-in-kotlin-android</guid>
    </item>
    <item>
      <title>(Java) Make circular bitmap - m3000</title>
      <link>https://snipplr.com/view/326666/make-circular-bitmap</link>
      <description>&lt;p&gt;this is the code to make the circular bitmap which is used in the image views of android.&#13;
at the end of the code the circle mode of bitmap is created by the enum mode.&lt;/p&gt;</description>
      <pubDate>Tue, 05 Sep 2017 16:23:49 UTC</pubDate>
      <guid>https://snipplr.com/view/326666/make-circular-bitmap</guid>
    </item>
    <item>
      <title>(Java) findviewbyid in Fragments - afrinux</title>
      <link>https://snipplr.com/view/90815/findviewbyid-in-fragments</link>
      <description>&lt;p&gt;findviewbyid in Fragment&lt;/p&gt;</description>
      <pubDate>Thu, 19 Feb 2015 18:05:40 UTC</pubDate>
      <guid>https://snipplr.com/view/90815/findviewbyid-in-fragments</guid>
    </item>
    <item>
      <title>(Bash) Bash Script to Fix Android Pictures and Videos Timestamp - mabafu</title>
      <link>https://snipplr.com/view/90387/bash-script-to-fix-android-pictures-and-videos-timestamp</link>
      <description>&lt;p&gt;After copying pictures and videos from my tablet to my PC I noticed that the original timestamp was overriden by the current date.&#13;
&#13;
Fortunatelly the timestamp was still preserved in the files name.&#13;
&#13;
Ex: IMG\_20150214\_202445.jpg or VID\_20140116\_091015.3gp&#13;
&#13;
The script must be executed in the image's folder and voilÃ¡ the original timestamp will be restored.&#13;
&#13;
Please make a backup before executing it! &#13;
&#13;
I'll not bother myself with licensing. This piece of... software... may be used as you wish, and also at your own peril! I don't claim credit neither responsability over it.&lt;/p&gt;</description>
      <pubDate>Sun, 15 Feb 2015 09:34:46 UTC</pubDate>
      <guid>https://snipplr.com/view/90387/bash-script-to-fix-android-pictures-and-videos-timestamp</guid>
    </item>
    <item>
      <title>(JavaScript) Creating a Mobile App with PhoneGap and Webix - kengajunior</title>
      <link>https://snipplr.com/view/87966/creating-a-mobile-app-with-phonegap-and-webix</link>
      <description>&lt;p&gt;This step-by-step tutorial describes how to build an HTML5-based mobile web app by means of Webix library (open source, GPL) and PhoneGap framework. As a result youâ€™ll get an awesome native app for Android devices with rich UI and high performance.&lt;/p&gt;</description>
      <pubDate>Tue, 20 Jan 2015 22:04:19 UTC</pubDate>
      <guid>https://snipplr.com/view/87966/creating-a-mobile-app-with-phonegap-and-webix</guid>
    </item>
    <item>
      <title>(XML) Android change Activity Name - ericpham</title>
      <link>https://snipplr.com/view/78314/android-change-activity-name</link>
      <description>&lt;p&gt;Change in manifest&lt;/p&gt;</description>
      <pubDate>Thu, 25 Sep 2014 09:49:08 UTC</pubDate>
      <guid>https://snipplr.com/view/78314/android-change-activity-name</guid>
    </item>
    <item>
      <title>(ActionScript 3) Mobile Device BACK KEY PRESS Exit - RiveraEraGames</title>
      <link>https://snipplr.com/view/74712/mobile-device-back-key-press-exit</link>
      <description>&lt;p&gt;Allows for EXIT function on mobile device via mobile device BACK key button.&lt;/p&gt;</description>
      <pubDate>Sun, 01 Jun 2014 04:41:02 UTC</pubDate>
      <guid>https://snipplr.com/view/74712/mobile-device-back-key-press-exit</guid>
    </item>
    <item>
      <title>(Java) Load Existing Email Message and Modify its Contents inside Android Apps - johansonkatherine</title>
      <link>https://snipplr.com/view/74654/load-existing-email-message-and-modify-its-contents-inside-android-apps</link>
      <description>&lt;p&gt;This technical tip shows how to load any existing email message and modify its contents before saving it back to disk using Aspose.Email for Android API. To do this successfully, specify the MessageFormat when loading the email message from disk. In addition, it is important to specify the correct MailMessageSaveType when saving the message back to disk.&#13;
&#13;
To update and save an email, the following steps can be used:&#13;
1.	Create an instance of the MailMessage class.&#13;
2.	Load an existing message using the MailMessage class' load() method and specifying the MessageFormat of the existing message.&#13;
3.	Get the subject using getSubject().&#13;
4.	After modifying the subject, set it again using the setSubject() method.&#13;
5.	Get the body using getHtmlBody().&#13;
6.	AFter modifying the body, set it using the setHtmlBody() method .&#13;
7.	Create an instance of the MailAddressCollection class.&#13;
8.	Get the recipients from the TO field into a MailAddressCollection object using the getTo() method exposed by the MailMessage class.&#13;
9.	Add or remove recipients using the add() and remove() methods exposed by the MailAddressCollection class.&#13;
10.	Get the recipients from the CC field into a MailAddressCollection object using the getCC() method exposed by MailMessage class.&#13;
11.	Add or remove recipients using the add() and remove() methods exposed by the MailAddressCollection class.&#13;
12.	Call the save() method exposed by the MailMessage class, specifying the correct MailMessageSaveType to save the message file to the disk in MSG format.&lt;/p&gt;</description>
      <pubDate>Thu, 22 May 2014 14:54:02 UTC</pubDate>
      <guid>https://snipplr.com/view/74654/load-existing-email-message-and-modify-its-contents-inside-android-apps</guid>
    </item>
    <item>
      <title>(Java) 2 Option for Android Main - uthopiko</title>
      <link>https://snipplr.com/view/73697/2-option-for-android-main</link>
      <description>&lt;p&gt;2 option for onIconSelect&lt;/p&gt;</description>
      <pubDate>Tue, 18 Feb 2014 22:37:50 UTC</pubDate>
      <guid>https://snipplr.com/view/73697/2-option-for-android-main</guid>
    </item>
    <item>
      <title>(JavaScript) Titanium Mobile: Circular Progress Bar - rondog</title>
      <link>https://snipplr.com/view/73543/titanium-mobile-circular-progress-bar</link>
      <description>&lt;p&gt;- I have not tested on android&#13;
- This is not animated as I did not need it for my needs. To make it animated, look at the second to last line in the function `layer3.transform = Ti.UI.create2DMatrix().rotate(angle);` You should be able to animate the rotation angle.&lt;/p&gt;</description>
      <pubDate>Sat, 01 Feb 2014 09:17:57 UTC</pubDate>
      <guid>https://snipplr.com/view/73543/titanium-mobile-circular-progress-bar</guid>
    </item>
    <item>
      <title>(PHP) Function to detect if the visitor is on an android device - stianlagstad</title>
      <link>https://snipplr.com/view/70985/function-to-detect-if-the-visitor-is-on-an-android-device</link>
      <description>&lt;p&gt;This simple functions scans the user agent for the word "android" and returns true if found. Useful if there's something you only want android visitors to see (or not see).&lt;/p&gt;</description>
      <pubDate>Tue, 30 Apr 2013 20:33:05 UTC</pubDate>
      <guid>https://snipplr.com/view/70985/function-to-detect-if-the-visitor-is-on-an-android-device</guid>
    </item>
    <item>
      <title>(Java) Iterating through cursor - noloman</title>
      <link>https://snipplr.com/view/70435/iterating-through-cursor</link>
      <description>&lt;p&gt;Iterating through cursor&lt;/p&gt;</description>
      <pubDate>Fri, 15 Mar 2013 19:59:26 UTC</pubDate>
      <guid>https://snipplr.com/view/70435/iterating-through-cursor</guid>
    </item>
    <item>
      <title>(Java) Drawable to Bitmap - noloman</title>
      <link>https://snipplr.com/view/70172/drawable-to-bitmap</link>
      <description>&lt;p&gt;How to convert a drawable to a bitmap&lt;/p&gt;</description>
      <pubDate>Fri, 01 Mar 2013 02:50:50 UTC</pubDate>
      <guid>https://snipplr.com/view/70172/drawable-to-bitmap</guid>
    </item>
    <item>
      <title>(Java) Shake event listener - noloman</title>
      <link>https://snipplr.com/view/70061/shake-event-listener</link>
      <description>&lt;p&gt;Shake event listener&lt;/p&gt;</description>
      <pubDate>Sat, 23 Feb 2013 02:47:11 UTC</pubDate>
      <guid>https://snipplr.com/view/70061/shake-event-listener</guid>
    </item>
    <item>
      <title>(CSS) Android and Iphone - modern css media queries - Rosk</title>
      <link>https://snipplr.com/view/67341/android-and-iphone--modern-css-media-queries</link>
      <description>&lt;p&gt;Extended css media queries for modern mobile screens&lt;/p&gt;</description>
      <pubDate>Mon, 24 Sep 2012 17:40:54 UTC</pubDate>
      <guid>https://snipplr.com/view/67341/android-and-iphone--modern-css-media-queries</guid>
    </item>
    <item>
      <title>(C#) Simple Touch Input - jquery404</title>
      <link>https://snipplr.com/view/67040/simple-touch-input</link>
      <description>&lt;p&gt;Simple touch detection in unity for mob devices&lt;/p&gt;</description>
      <pubDate>Tue, 04 Sep 2012 08:21:56 UTC</pubDate>
      <guid>https://snipplr.com/view/67040/simple-touch-input</guid>
    </item>
    <item>
      <title>(Java) Android MyOverlay extends Overlay - l01241</title>
      <link>https://snipplr.com/view/66308/android-myoverlay-extends-overlay</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 24 Jul 2012 23:05:12 UTC</pubDate>
      <guid>https://snipplr.com/view/66308/android-myoverlay-extends-overlay</guid>
    </item>
    <item>
      <title>(Java) Android plist Parser using dd-plist - l01241</title>
      <link>https://snipplr.com/view/66288/android-plist-parser-using-ddplist</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 23 Jul 2012 18:44:37 UTC</pubDate>
      <guid>https://snipplr.com/view/66288/android-plist-parser-using-ddplist</guid>
    </item>
    <item>
      <title>(Other) android plist parser - l01241</title>
      <link>https://snipplr.com/view/66284/android-plist-parser</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 23 Jul 2012 15:04:38 UTC</pubDate>
      <guid>https://snipplr.com/view/66284/android-plist-parser</guid>
    </item>
    <item>
      <title>(Java) android Plist parser xml Assets - l01241</title>
      <link>https://snipplr.com/view/66282/android-plist-parser-xml-assets</link>
      <description>&lt;p&gt;http://kpbird.blogspot.hk/2011/08/android-plist-parser.html&lt;/p&gt;</description>
      <pubDate>Mon, 23 Jul 2012 14:11:37 UTC</pubDate>
      <guid>https://snipplr.com/view/66282/android-plist-parser-xml-assets</guid>
    </item>
    <item>
      <title>(Java) get Bitmap From Asset - l01241</title>
      <link>https://snipplr.com/view/66281/get-bitmap-from-asset</link>
      <description>&lt;p&gt;private String mapPath = "img/full_map.png"; &#13;
parkMapBitmap = getBitmapFromAsset(this.getContext(),mapPath);&lt;/p&gt;</description>
      <pubDate>Mon, 23 Jul 2012 13:53:20 UTC</pubDate>
      <guid>https://snipplr.com/view/66281/get-bitmap-from-asset</guid>
    </item>
    <item>
      <title>(Bash) Package with phonegap for debug and run on connected device - tinytiger</title>
      <link>https://snipplr.com/view/66157/package-with-phonegap-for-debug-and-run-on-connected-device</link>
      <description>&lt;p&gt;How to package a phonegap project for debug and run it on the connected device&lt;/p&gt;</description>
      <pubDate>Mon, 16 Jul 2012 19:17:09 UTC</pubDate>
      <guid>https://snipplr.com/view/66157/package-with-phonegap-for-debug-and-run-on-connected-device</guid>
    </item>
    <item>
      <title>(Java) Integrate Linkedin, Facebook, Twitter, MySpace in Android App with One SDK - vinny82</title>
      <link>https://snipplr.com/view/66039/integrate-linkedin-facebook-twitter-myspace-in-android-app-with-one-sdk</link>
      <description>&lt;p&gt;The main objective of this example is to access social media providers Facebook, Twitter and others by clicking a single button "Share".On Clicking the button &#13;
the api will open dialog of providers. User can access the provider from dialog &#13;
and can update the status , get friends list , user profile&lt;/p&gt;</description>
      <pubDate>Mon, 09 Jul 2012 17:49:39 UTC</pubDate>
      <guid>https://snipplr.com/view/66039/integrate-linkedin-facebook-twitter-myspace-in-android-app-with-one-sdk</guid>
    </item>
    <item>
      <title>(Java) Fade out a view - BenClayton</title>
      <link>https://snipplr.com/view/64030/fade-out-a-view</link>
      <description>&lt;p&gt;fade out view called 'row'&lt;/p&gt;</description>
      <pubDate>Tue, 20 Mar 2012 00:07:05 UTC</pubDate>
      <guid>https://snipplr.com/view/64030/fade-out-a-view</guid>
    </item>
    <item>
      <title>(Java) Dynamically add widget / TextView to a RelativeLayout in code - BenClayton</title>
      <link>https://snipplr.com/view/64007/dynamically-add-widget--textview-to-a-relativelayout-in-code</link>
      <description>&lt;p&gt;This example adds a horizontally-centered TextView to the bottom of the RelativeLayout called 'layout'.&lt;/p&gt;</description>
      <pubDate>Sun, 18 Mar 2012 00:49:51 UTC</pubDate>
      <guid>https://snipplr.com/view/64007/dynamically-add-widget--textview-to-a-relativelayout-in-code</guid>
    </item>
    <item>
      <title>(HTML) iOS and Android Touch Icon Rules - luizlopes</title>
      <link>https://snipplr.com/view/63364/ios-and-android-touch-icon-rules</link>
      <description>&lt;p&gt;HTML Snippet for apple-touch-icon for all of the different iOS devices, and Android 2.0 supported Icon.&lt;/p&gt;</description>
      <pubDate>Thu, 16 Feb 2012 07:08:23 UTC</pubDate>
      <guid>https://snipplr.com/view/63364/ios-and-android-touch-icon-rules</guid>
    </item>
    <item>
      <title>(Java) Ottenere il privilegio di root - kajinka13</title>
      <link>https://snipplr.com/view/63124/ottenere-il-privilegio-di-root</link>
      <description>&lt;p&gt;Ottenere il privilegio di root&lt;/p&gt;</description>
      <pubDate>Tue, 07 Feb 2012 07:21:24 UTC</pubDate>
      <guid>https://snipplr.com/view/63124/ottenere-il-privilegio-di-root</guid>
    </item>
    <item>
      <title>(Java) Configurare il Proxy sull\'emulatore Android - kajinka13</title>
      <link>https://snipplr.com/view/63123/configurare-il-proxy-sullemulatore-android</link>
      <description>&lt;p&gt;Configurare il Proxy sull'emulatore&lt;/p&gt;</description>
      <pubDate>Tue, 07 Feb 2012 07:17:43 UTC</pubDate>
      <guid>https://snipplr.com/view/63123/configurare-il-proxy-sullemulatore-android</guid>
    </item>
    <item>
      <title>(Bash) One click build for PhoneGap Build to Android - tpryan</title>
      <link>https://snipplr.com/view/61101/one-click-build-for-phonegap-build-to-android</link>
      <description>&lt;p&gt;Basically allows for a one click build through a repository driving PhoneGap Build project.&lt;/p&gt;</description>
      <pubDate>Wed, 23 Nov 2011 11:37:53 UTC</pubDate>
      <guid>https://snipplr.com/view/61101/one-click-build-for-phonegap-build-to-android</guid>
    </item>
    <item>
      <title>(Java) Android check if service running - rockschtar</title>
      <link>https://snipplr.com/view/61082/android-check-if-service-running</link>
      <description>&lt;p&gt;This functions checks if a service is running or not.&lt;/p&gt;</description>
      <pubDate>Wed, 23 Nov 2011 01:58:56 UTC</pubDate>
      <guid>https://snipplr.com/view/61082/android-check-if-service-running</guid>
    </item>
    <item>
      <title>(HTML) Android Meta Viewport Tag for PhoneGap Projects - parkerkrhoyt</title>
      <link>https://snipplr.com/view/60705/android-meta-viewport-tag-for-phonegap-projects</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 11 Nov 2011 03:45:47 UTC</pubDate>
      <guid>https://snipplr.com/view/60705/android-meta-viewport-tag-for-phonegap-projects</guid>
    </item>
    <item>
      <title>(Java) JavaScript / Native app inter communication in Android - arpit</title>
      <link>https://snipplr.com/view/60672/javascript--native-app-inter-communication-in-android</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 10 Nov 2011 03:37:23 UTC</pubDate>
      <guid>https://snipplr.com/view/60672/javascript--native-app-inter-communication-in-android</guid>
    </item>
    <item>
      <title>(Java) Simple alert for Android - Vetromilla</title>
      <link>https://snipplr.com/view/60453/simple-alert-for-android</link>
      <description>&lt;p&gt;Displays a simple alert using Toast&lt;/p&gt;</description>
      <pubDate>Tue, 01 Nov 2011 23:32:15 UTC</pubDate>
      <guid>https://snipplr.com/view/60453/simple-alert-for-android</guid>
    </item>
    <item>
      <title>(Java) Java: Checking Internet Connectivity - chrisaiv</title>
      <link>https://snipplr.com/view/59651/java-checking-internet-connectivity</link>
      <description>&lt;p&gt;Need to check if your device is online before sending/getting a request? Here's how.&lt;/p&gt;</description>
      <pubDate>Wed, 12 Oct 2011 01:29:52 UTC</pubDate>
      <guid>https://snipplr.com/view/59651/java-checking-internet-connectivity</guid>
    </item>
    <item>
      <title>(Java) Android: Remove title/notifications bar programmatically - chrisaiv</title>
      <link>https://snipplr.com/view/59233/android-remove-titlenotifications-bar-programmatically</link>
      <description>&lt;p&gt;There are roughly three ways to do this: programatically, through stylesheets, or through the Anroid manifest.&lt;/p&gt;</description>
      <pubDate>Thu, 29 Sep 2011 02:54:08 UTC</pubDate>
      <guid>https://snipplr.com/view/59233/android-remove-titlenotifications-bar-programmatically</guid>
    </item>
    <item>
      <title>(Java) Upload large images in background - sperales</title>
      <link>https://snipplr.com/view/59065/upload-large-images-in-background</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 24 Sep 2011 23:46:12 UTC</pubDate>
      <guid>https://snipplr.com/view/59065/upload-large-images-in-background</guid>
    </item>
    <item>
      <title>(Java) Android: Google Maps Marker - chrisaiv</title>
      <link>https://snipplr.com/view/59041/android-google-maps-marker</link>
      <description>&lt;p&gt;This is part of a much larger class but I wanted to give enough context to explain the value of GeoCoder. GeoCoder has two methods called getFromLocation() and getFromLocationName() that allow you to capture an address or coordinates.&lt;/p&gt;</description>
      <pubDate>Sat, 24 Sep 2011 03:18:48 UTC</pubDate>
      <guid>https://snipplr.com/view/59041/android-google-maps-marker</guid>
    </item>
    <item>
      <title>(Java) Own sqlite database in android - jamepaul</title>
      <link>https://snipplr.com/view/58589/own-sqlite-database-in-android</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 10 Sep 2011 17:59:47 UTC</pubDate>
      <guid>https://snipplr.com/view/58589/own-sqlite-database-in-android</guid>
    </item>
    <item>
      <title>(XML) Manifest file - Service tag - hmvrulz</title>
      <link>https://snipplr.com/view/58174/manifest-file--service-tag</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 26 Aug 2011 03:56:05 UTC</pubDate>
      <guid>https://snipplr.com/view/58174/manifest-file--service-tag</guid>
    </item>
    <item>
      <title>(XML) Manifest file - Application tag - hmvrulz</title>
      <link>https://snipplr.com/view/58173/manifest-file--application-tag</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 26 Aug 2011 03:54:21 UTC</pubDate>
      <guid>https://snipplr.com/view/58173/manifest-file--application-tag</guid>
    </item>
    <item>
      <title>(XML) Manifest file - Activity tag - hmvrulz</title>
      <link>https://snipplr.com/view/58172/manifest-file--activity-tag</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 26 Aug 2011 03:52:26 UTC</pubDate>
      <guid>https://snipplr.com/view/58172/manifest-file--activity-tag</guid>
    </item>
    <item>
      <title>(Java) Transparenz in einer App - Android - UTA2000</title>
      <link>https://snipplr.com/view/56261/transparenz-in-einer-app--android</link>
      <description>&lt;p&gt;Bei vielen Applikationen fÃ¤llt auf, dass beim Start ganz kurz ein komplett schwarzer Screen auf dem Display erscheint, der jedoch gleich wieder verschwindet. Ãœber diesem Screen ist dann ein schmaler grauer Balken, in dem der Name der Applikation steht.&#13;
&#13;
Was also mÃ¼ssen wir tun, um diesen Effekt zu vermeiden, bzw. was steckt hinter diesem Effekt?&lt;/p&gt;</description>
      <pubDate>Thu, 07 Jul 2011 21:39:12 UTC</pubDate>
      <guid>https://snipplr.com/view/56261/transparenz-in-einer-app--android</guid>
    </item>
    <item>
      <title>(Java) [android] setTimeout - KolNedra</title>
      <link>https://snipplr.com/view/56170/android-settimeout</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 06 Jul 2011 18:12:06 UTC</pubDate>
      <guid>https://snipplr.com/view/56170/android-settimeout</guid>
    </item>
    <item>
      <title>(Java) [android] window size - KolNedra</title>
      <link>https://snipplr.com/view/56100/android-window-size</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 05 Jul 2011 01:24:34 UTC</pubDate>
      <guid>https://snipplr.com/view/56100/android-window-size</guid>
    </item>
    <item>
      <title>(Java) Rotate an image - arpit</title>
      <link>https://snipplr.com/view/56057/rotate-an-image</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 03 Jul 2011 13:51:23 UTC</pubDate>
      <guid>https://snipplr.com/view/56057/rotate-an-image</guid>
    </item>
    <item>
      <title>(XML) [android] Tabbar bottom without border - KolNedra</title>
      <link>https://snipplr.com/view/56003/android-tabbar-bottom-without-border</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 01 Jul 2011 21:55:55 UTC</pubDate>
      <guid>https://snipplr.com/view/56003/android-tabbar-bottom-without-border</guid>
    </item>
    <item>
      <title>(Java) [android] Full Screen - KolNedra</title>
      <link>https://snipplr.com/view/55910/android-full-screen</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 30 Jun 2011 00:13:49 UTC</pubDate>
      <guid>https://snipplr.com/view/55910/android-full-screen</guid>
    </item>
    <item>
      <title>(Java) [android] Load new View - KolNedra</title>
      <link>https://snipplr.com/view/55909/android-load-new-view</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 30 Jun 2011 00:11:57 UTC</pubDate>
      <guid>https://snipplr.com/view/55909/android-load-new-view</guid>
    </item>
    <item>
      <title>(Java) Updating the UI after an Timer interval - arpit</title>
      <link>https://snipplr.com/view/55821/updating-the-ui-after-an-timer-interval</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 28 Jun 2011 15:46:22 UTC</pubDate>
      <guid>https://snipplr.com/view/55821/updating-the-ui-after-an-timer-interval</guid>
    </item>
    <item>
      <title>(Java) Using getView and convertView in Android - Raevonium</title>
      <link>https://snipplr.com/view/55774/using-getview-and-convertview-in-android</link>
      <description>&lt;p&gt;The right way (According to Google I/O-10) to use getView with the convertView-param within a custom adapter class.&lt;/p&gt;</description>
      <pubDate>Mon, 27 Jun 2011 17:22:27 UTC</pubDate>
      <guid>https://snipplr.com/view/55774/using-getview-and-convertview-in-android</guid>
    </item>
  </channel>
</rss>
