﻿define('DISALLOW_FILE_EDIT', true);
define('DISALLOW_FILE_MODS', true);<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>/dev/head &#187; goggles</title>
	<atom:link href="http://devhead.ru/cat/goggles/feed" rel="self" type="application/rss+xml" />
	<link>http://devhead.ru</link>
	<description>Статьи и видео уроки</description>
	<lastBuildDate>Mon, 30 Jan 2017 11:12:34 +0000</lastBuildDate>
	<language>ru-RU</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.1.37</generator>
	<item>
		<title>Call Google Goggles from android&#8217;s app</title>
		<link>http://devhead.ru/read/call-google-goggles-from-androids-app</link>
		<comments>http://devhead.ru/read/call-google-goggles-from-androids-app#comments</comments>
		<pubDate>Thu, 21 Aug 2014 19:45:30 +0000</pubDate>
		<dc:creator><![CDATA[Аноним]]></dc:creator>
				<category><![CDATA[Статьи]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[goggles]]></category>
		<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://devhead.ru/read/call-google-goggles-from-androids-app</guid>
		<description><![CDATA[Button but1 = (Button) findViewById(R.id.button); but1.setOnClickListener(new View.OnClickListener() { public void onClick(View v) { // it was the 1st button Intent LaunchIntent = null; try{ LaunchIntent = getPackageManager().getLaunchIntentForPackage("com.google.android.apps.unveil"); startActivity(LaunchIntent); } catch (NullPointerException e){ Intent intent = new Intent(Intent.ACTION_VIEW); intent.setData(Uri.parse("market://details?id=com.google.android.apps.unveil")); startActivity(intent); } } });]]></description>
				<content:encoded><![CDATA[<pre class="brush: java">
        Button but1 = (Button) findViewById(R.id.button);
        but1.setOnClickListener(new View.OnClickListener() {
            public void onClick(View v) {
                // it was the 1st button
                Intent LaunchIntent = null;
                try{
                LaunchIntent = getPackageManager().getLaunchIntentForPackage("com.google.android.apps.unveil");
                    startActivity(LaunchIntent);
                }
                catch (NullPointerException e){
                    Intent intent = new Intent(Intent.ACTION_VIEW);
                    intent.setData(Uri.parse("market://details?id=com.google.android.apps.unveil"));
                    startActivity(intent);
                }

            }
        });
 
</pre>
]]></content:encoded>
			<wfw:commentRss>http://devhead.ru/read/call-google-goggles-from-androids-app/feed</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->