<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>AndroidQuestions.org</title>
		<link>http://www.androidquestions.org/</link>
		<description>AndroidQuestions.org is for the discussion of all topics relating to Android and Android devices.</description>
		<language>en</language>
		<lastBuildDate>Sat, 19 May 2012 03:19:57 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://aqcdn.thequestionsnetwork.net/images/misc/rss.png</url>
			<title>AndroidQuestions.org</title>
			<link>http://www.androidquestions.org/</link>
		</image>
		<item>
			<title>Is there a way to add additional activities to MY ACCOUNTS on Verizon Razr</title>
			<link>http://www.androidquestions.org/threads/637-Is-there-a-way-to-add-additional-activities-to-MY-ACCOUNTS-on-Verizon-Razr?goto=newpost</link>
			<pubDate>Fri, 18 May 2012 01:15:18 GMT</pubDate>
			<description>I am unable to add VOICE MAIL to MY ACCOUNTS on Verizon network.  Is there a work around that will allow 
me to do that.  Verizon offers a fee...</description>
			<content:encoded><![CDATA[<div>I am unable to add VOICE MAIL to MY ACCOUNTS on Verizon network.  Is there a work around that will allow<br />
me to do that.  Verizon offers a fee application called visual voice mail but that is a cost item.  I just want to<br />
add the voice mail icon to the other 5 email accounts that show up in the MY ACCOUNTS area.</div>

]]></content:encoded>
			<category domain="http://www.androidquestions.org/forums/12-Android-Motorola-Phones">Android Motorola Phones</category>
			<dc:creator>dzimmerl</dc:creator>
			<guid isPermaLink="true">http://www.androidquestions.org/threads/637-Is-there-a-way-to-add-additional-activities-to-MY-ACCOUNTS-on-Verizon-Razr</guid>
		</item>
		<item>
			<title>Android on my TV</title>
			<link>http://www.androidquestions.org/threads/636-Android-on-my-TV?goto=newpost</link>
			<pubDate>Wed, 16 May 2012 13:14:31 GMT</pubDate>
			<description><![CDATA[Hi all. I bought a Smart TV which Android on it and it's fun to use but there is a problem. It has apps just the same as a phone and a link to the...]]></description>
			<content:encoded><![CDATA[<div>Hi all. I bought a Smart TV which Android on it and it's fun to use but there is a problem. It has apps just the same as a phone and a link to the Android Market. My problem is that now the Android market is Play.google my TV can't find it. If I go directly to the site using the browser and try to download it won't let me. So I have 2 questions. 1) Does anyone know if and how I can access the system so I can change/add the internet address for Play.google.<br />
2) If I download *.apk files on my PC, transfer them to a memory stick will I be able to install them manually like I can on my phone?</div>

]]></content:encoded>
			<category domain="http://www.androidquestions.org/forums/15-Other-Android-Devices">Other Android Devices</category>
			<dc:creator>Joeby</dc:creator>
			<guid isPermaLink="true">http://www.androidquestions.org/threads/636-Android-on-my-TV</guid>
		</item>
		<item>
			<title><![CDATA[Acticity's ListView does not show]]></title>
			<link>http://www.androidquestions.org/threads/635-Acticity-s-ListView-does-not-show?goto=newpost</link>
			<pubDate>Wed, 16 May 2012 12:57:15 GMT</pubDate>
			<description>Dear Sirs and Madams! 
 
In my first Android app, I have an activity with ListView, which contens are not shown. At the app launch, I have a splash...</description>
			<content:encoded><![CDATA[<div>Dear Sirs and Madams!<br />
<br />
In my first Android app, I have an activity with ListView, which contens are not shown. At the app launch, I have a splash screen, which then switches to main activity, which should show listview with three string elements. Why string elements are not shown? Here is a code of CMainActivity's xml build:<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;<br />
&lt;LinearLayout xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;<br />
&nbsp; &nbsp; android:orientation=&quot;vertical&quot;<br />
&nbsp; &nbsp; android:layout_width=&quot;fill_parent&quot;<br />
&nbsp; &nbsp; android:layout_height=&quot;fill_parent&quot;&gt;<br />
&nbsp; &nbsp; &lt;ListView android:id=&quot;@+android:id/listview_mainscreen&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; android:layout_width=&quot;fill_parent&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; android:layout_height=&quot;fill_parent&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; android:drawSelectorOnTop=&quot;false&quot;<br />
&nbsp; &nbsp; /&gt;<br />
&lt;/LinearLayout&gt;</code><hr />
</div>Here is CMainActivity's java code:<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">/*<br />
&nbsp;* To change this template, choose Tools | Templates<br />
&nbsp;* and open the template in the editor.<br />
&nbsp;*/<br />
package com.oljedirekt.trgovko.main;<br />
import android.app.ListActivity;<br />
import android.os.Bundle;<br />
import android.util.Log;<br />
import android.view.View;<br />
import android.widget.ArrayAdapter;<br />
import android.widget.ListView;<br />
import com.oljedirekt.trgovko.R;<br />
<br />
/**<br />
&nbsp;*<br />
&nbsp;* @author markofr<br />
&nbsp;*/<br />
public class CActivityMainScreen extends ListActivity<br />
{<br />
&nbsp; &nbsp; private static final String m_strLogTag=&quot;CActivityMainScreen&quot;;<br />
<br />
&nbsp; &nbsp; private static final String[] items={<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;Iskanje produktov&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;Nakupovalna košarica&quot;,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;O programu&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; };<br />
<br />
&nbsp; &nbsp; @Override<br />
&nbsp; &nbsp; public void onCreate(Bundle icicle)<br />
&nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; try<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; super.onCreate(icicle);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; setContentView(R.layout.cactivitymainscreen);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ListView mainScreenListView=(ListView)findViewById(R.id.listview_mainscreen);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; mainScreenListView.setAdapter(new ArrayAdapter&lt;String&gt;(this,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; R.layout.citemmainscreen,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; items));<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; catch(Exception ex)<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; String strClassName=ex.getClass().getName().toString();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; String strMessage=ex.getMessage().toString();<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Log.wtf(CActivityMainScreen.m_strLogTag,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; strClassName+&quot;:&quot;+<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; strMessage);<br />
<br />
/*<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Log.wtf(CActivityMainScreen.m_strLogTag,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ex.getClass().getName()+&quot;:&quot;+<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ex.getMessage().toString());<br />
*/<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; finally<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; }&nbsp;  // try-catch-finally<br />
&nbsp; &nbsp; }&nbsp;  // onCreate<br />
<br />
&nbsp; &nbsp; @Override<br />
&nbsp; &nbsp; public void onListItemClick(ListView parent,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; View v,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; int position,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; long id)<br />
&nbsp; &nbsp; {<br />
&nbsp; &nbsp; }&nbsp;  // onListItemClick<br />
}</code><hr />
</div>Here is xml build of listview's row:<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;<br />
&lt;LinearLayout xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; android:orientation=&quot;horizontal&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; android:layout_width=&quot;fill_parent&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; android:layout_height=&quot;fill_parent&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;TextView android:id=&quot;@+id/item_mainscreen_text&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; android:gravity=&quot;center&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; android:textSize=&quot;22dip&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; android:textColor=&quot;#ffffff&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; android:textStyle=&quot;bold&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; android:layout_width=&quot;fill_parent&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; android:layout_height=&quot;wrap_content&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; /&gt;<br />
&lt;/LinearLayout&gt;</code><hr />
</div>And here is activity transition code (from SplashScreen to MainActivity):<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; try<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Intent intent=new Intent(CActivitySplashScreen.this,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  CActivityMainScreen.class);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; startActivity(intent);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; catch(Exception ex)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Log.wtf(CActivitySplashScreen.m_strLogTag,<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ex.getClass().getName()+&quot;:&quot;+<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ex.getMessage().toString());<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; finally<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }&nbsp;  // try-catch-finally</code><hr />
</div>Now, why listview's items are not shown????<br />
<br />
Sincerely,<br />
Marko</div>

]]></content:encoded>
			<category domain="http://www.androidquestions.org/forums/18-Android-Development">Android Development</category>
			<dc:creator>MarkoSan</dc:creator>
			<guid isPermaLink="true">http://www.androidquestions.org/threads/635-Acticity-s-ListView-does-not-show</guid>
		</item>
		<item>
			<title>unable to be WI-fi hotspot</title>
			<link>http://www.androidquestions.org/threads/634-unable-to-be-WI-fi-hotspot?goto=newpost</link>
			<pubDate>Wed, 16 May 2012 05:02:28 GMT</pubDate>
			<description>I have an unlocked galaxy S2 from tmobile which will only function as a hotspot with the t mobile SIM. Other SIMcards work in other phones but give...</description>
			<content:encoded><![CDATA[<div>I have an unlocked galaxy S2 from tmobile which will only function as a hotspot with the t mobile SIM. Other SIMcards work in other phones but give an error when I try to enable the hotspot in the S2. Don't know if the problem is T mobile or the S2. Anyone have a S2 which works as a hotspot?</div>

]]></content:encoded>
			<category domain="http://www.androidquestions.org/forums/13-Android-Samsung-Phones">Android Samsung Phones</category>
			<dc:creator>lenberman</dc:creator>
			<guid isPermaLink="true">http://www.androidquestions.org/threads/634-unable-to-be-WI-fi-hotspot</guid>
		</item>
		<item>
			<title><![CDATA[[SOLVED] Blog permissions]]></title>
			<link>http://www.androidquestions.org/threads/633-Blog-permissions?goto=newpost</link>
			<pubDate>Tue, 15 May 2012 11:16:47 GMT</pubDate>
			<description>Found these options in the blog settings: 
 
 
---Quote--- 
Guests may... 
 
View your blog 
 
Leave comments on your blog entries 
---End Quote---</description>
			<content:encoded><![CDATA[<div>Found these options in the blog settings:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Quote:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			Guests may...<br />
<br />
View your blog<br />
<br />
Leave comments on your blog entries
			
		<hr />
	</div>
</div>I tested this today by logging out and then seeing my one liner test blog. Didn't see any options for the guests to leave comments on. Did I misinterpret the above options?<br />
<br />
Just asking..</div>

]]></content:encoded>
			<category domain="http://www.androidquestions.org/forums/2-AQ-Suggestions-amp-Feedback"><![CDATA[AQ Suggestions & Feedback]]></category>
			<dc:creator>Anisha Kaul</dc:creator>
			<guid isPermaLink="true">http://www.androidquestions.org/threads/633-Blog-permissions</guid>
		</item>
		<item>
			<title><![CDATA[[SOLVED] Default Subscription Mode: Do not subscribe]]></title>
			<link>http://www.androidquestions.org/threads/632-Default-Subscription-Mode-Do-not-subscribe?goto=newpost</link>
			<pubDate>Tue, 15 May 2012 10:27:28 GMT</pubDate>
			<description><![CDATA[Since it was mentioned that LQ would be getting the AQ looks,  
I just checked the AQ blog settings. By default, they are set to  
"Do not...]]></description>
			<content:encoded><![CDATA[<div>Since it was mentioned that LQ would be getting the AQ looks, <br />
I just checked the AQ blog settings. By default, they are set to <br />
&quot;<font color="#3E3E3E">Do not subscribe</font>&quot;.<br />
<br />
Will it make sense for the blog <b>owner</b> to have default subscription<br />
mode of &quot;Instant email notification&quot;?</div>

]]></content:encoded>
			<category domain="http://www.androidquestions.org/forums/2-AQ-Suggestions-amp-Feedback"><![CDATA[AQ Suggestions & Feedback]]></category>
			<dc:creator>Anisha Kaul</dc:creator>
			<guid isPermaLink="true">http://www.androidquestions.org/threads/632-Default-Subscription-Mode-Do-not-subscribe</guid>
		</item>
		<item>
			<title>nvm, delete please</title>
			<link>http://www.androidquestions.org/threads/631-nvm-delete-please?goto=newpost</link>
			<pubDate>Tue, 15 May 2012 03:54:44 GMT</pubDate>
			<description>...</description>
			<content:encoded><![CDATA[<div>...</div>

]]></content:encoded>
			<category domain="http://www.androidquestions.org/forums/9-Android-Phones">Android Phones</category>
			<dc:creator>Rodebian</dc:creator>
			<guid isPermaLink="true">http://www.androidquestions.org/threads/631-nvm-delete-please</guid>
		</item>
		<item>
			<title>No call audio</title>
			<link>http://www.androidquestions.org/threads/630-No-call-audio?goto=newpost</link>
			<pubDate>Mon, 14 May 2012 12:55:06 GMT</pubDate>
			<description>Hope you guys can help me. This problem started just about a week ago and is driving me nuts. Basicily when I use the standard phone speaker for...</description>
			<content:encoded><![CDATA[<div>Hope you guys can help me. This problem started just about a week ago and is driving me nuts. Basicily when I use the standard phone speaker for either incoming or outgoing calls I hear nothing. I've tried restarting the phone, shutting it down, checking audio settings. Nothing gets this to work. I have to do a work around of either using the speaker phone, or having the audio out via bluetooth or the audio jack.<br />
<br />
It makes having the phone very difficult if I just need to make a quick (and discreet) call. So has anyone had this issue before or know of a solution? Thanks in advanced.<br />
<br />
-Sparkfist</div>

]]></content:encoded>
			<category domain="http://www.androidquestions.org/forums/10-Android-HTC-Phones">Android HTC Phones</category>
			<dc:creator>Sparkfist</dc:creator>
			<guid isPermaLink="true">http://www.androidquestions.org/threads/630-No-call-audio</guid>
		</item>
		<item>
			<title><![CDATA[[SOLVED] Advertisements]]></title>
			<link>http://www.androidquestions.org/threads/629-Advertisements?goto=newpost</link>
			<pubDate>Mon, 14 May 2012 09:02:45 GMT</pubDate>
			<description>Not a regular on this site, am I. Was just casually lurking today the forums from office when seeing an advertisement I simply had to close off the...</description>
			<content:encoded><![CDATA[<div>Not a regular on this site, am I. Was just casually lurking today the forums from office when seeing an advertisement I simply had to close off the tab.<br />
<br />
I don't find these kinds of ads of some good taste when I lurk this site from office.</div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="http://aqcdn.thequestionsnetwork.net/images/attach/jpg.gif" alt="File Type: jpg" />
	<a href="http://www.androidquestions.org/attachment.php?attachmentid=7&amp;d=1336986107">+2.jpg</a> 
(18.3 KB)
</li>
			</ul>
			</fieldset>
	

	

	</div>
]]></content:encoded>
			<category domain="http://www.androidquestions.org/forums/2-AQ-Suggestions-amp-Feedback"><![CDATA[AQ Suggestions & Feedback]]></category>
			<dc:creator>Anisha Kaul</dc:creator>
			<guid isPermaLink="true">http://www.androidquestions.org/threads/629-Advertisements</guid>
		</item>
		<item>
			<title>Android Software Design Question - regarding singleton pattern</title>
			<link>http://www.androidquestions.org/threads/628-Android-Software-Design-Question-regarding-singleton-pattern?goto=newpost</link>
			<pubDate>Sat, 12 May 2012 10:10:19 GMT</pubDate>
			<description>Dear Sirs and Madams! 
 
In my app I have a class, which sole purpose is communicating and transferring data from/to mysql database via server side...</description>
			<content:encoded><![CDATA[<div>Dear Sirs and Madams!<br />
<br />
In my app I have a class, which sole purpose is communicating and transferring data from/to mysql database via server side php scripts. That works ok, but now I have a demand: CDatabaseManager class (object) should be visible to all classes (objects) in application and there should be only one instance (object) of this class. How do I achieve this?<br />
<br />
Sincerely,<br />
Marko</div>

]]></content:encoded>
			<category domain="http://www.androidquestions.org/forums/18-Android-Development">Android Development</category>
			<dc:creator>MarkoSan</dc:creator>
			<guid isPermaLink="true">http://www.androidquestions.org/threads/628-Android-Software-Design-Question-regarding-singleton-pattern</guid>
		</item>
		<item>
			<title>Weird application behavior</title>
			<link>http://www.androidquestions.org/threads/627-Weird-application-behavior?goto=newpost</link>
			<pubDate>Fri, 11 May 2012 10:35:19 GMT</pubDate>
			<description>Dear Sirs and Madams! 
 
I am n00b in Android programming and I am working on my first app. I use NetBeans 7.1.1. IDE and when I try to debug my app,...</description>
			<content:encoded><![CDATA[<div>Dear Sirs and Madams!<br />
<br />
I am n00b in Android programming and I am working on my first app. I use NetBeans 7.1.1. IDE and when I try to debug my app, I get following error in debug console:<div class="bbcode_container">
	<div class="bbcode_description">Quote:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			Thread &lt;9&gt; Thread-10 stopped at Instrumentation.java:1405.
			
		<hr />
	</div>
</div>This has happened for the first time and now I do not know what to do. Can someone help me please?<br />
<br />
Sincerely,<br />
Marko</div>

]]></content:encoded>
			<category domain="http://www.androidquestions.org/forums/18-Android-Development">Android Development</category>
			<dc:creator>MarkoSan</dc:creator>
			<guid isPermaLink="true">http://www.androidquestions.org/threads/627-Weird-application-behavior</guid>
		</item>
		<item>
			<title>Download/Copy iTunes movies to PlayBook with best HD video quality</title>
			<link>http://www.androidquestions.org/threads/626-Download-Copy-iTunes-movies-to-PlayBook-with-best-HD-video-quality?goto=newpost</link>
			<pubDate>Fri, 11 May 2012 03:06:31 GMT</pubDate>
			<description>Download/Copy iTunes movies to PlayBook with best HD video quality 
  
In this article you will learn how to transfer movies/tv shows from iTunes to...</description>
			<content:encoded><![CDATA[<div>Download/Copy iTunes movies to PlayBook with best HD video quality<br />
 <br />
In this article you will learn how to transfer movies/tv shows from iTunes to BlackBerry PlayBook for playing back with DRM restriction by removing iTunes DRM and convert iTunes m4v to PlayBook h.264-compliant mp4 videos. <br />
 <br />
The <a href="http://itunes-to-android-tablet.com/?cat=95" rel="nofollow" target="_blank">BlackBerry PlayBook</a> ably showcases RIM&#8217;s powerful new mobile operating system, but its middling size diminishes many of its best features. Recently, the operating system has been updated to 2.0 which offers better enjoyment. I&#8217;ve taken my playbook on a few road trips for almost one year, and I can say without reservation that it absolutely rocks for watching movies. However, sometimes something goes wrong when you tried to play iTunes movies on PlayBook. Don&#8217;t fret! Here I&#8217;m sharing my experience to those who feel like <b>transferring iTunes videos to BlackBerry PlayBook</b> for enjoying. <br />
<img src="http://dvd-to-kindle-fire.com/wp-content/uploads/2012/03/play-itunes-movies-on-blackberry-playbook.jpg" border="0" alt="" /> <br />
 <br />
As you see, most of the TV episodes, movies, and music videos from iTunes are protected by using Apple&#8217;s FairPlay <b>DRM</b> copyright protection. So the most important piece of the equation is that you have a DRM removal software hooked to your Mac or Windows which strips DRM from iTunes. I&#8217;m not about to pay ridiculous prices to buy movies and TV shows for PlayBook I already own on iTunes. Instead, I&#8217;ll just convert these iTunes m4v movies to a PlayBook-friendly format. If you are interested in doing likewise, check out <b>Pavtube ChewTune</b>, a top <b><a href="http://www.pavtube.com/chewtune/" rel="nofollow" target="_blank">iTunes DRM movie Converter</a></b> which can easily handle iTunes DRM-protected videos and Windows Media DRM contents included with the Blu-ray/DVD <a href="http://itunes-to-android-tablet.com/?p=166" rel="nofollow" target="_blank">Digital Copies</a>. And the playback of the converted videos is as decent as possible as original. Now follow the steps below to put iTunes videos onto PlayBook. <br />
 <br />
<b>Guide- Convert and Copy iTunes movies to BlackBerry PlayBook </b><br />
 <br />
Note: For Windows users, just follow the detailed guide to finish your work about converting iTunes movies to PlayBook. For Mac users, you can follow how to <a href="http://itunes-to-android-tablet.com/?p=171" rel="nofollow" target="_blank">sync iTunes files from Mac to PlayBook</a> to complete your conversion on Mac OS X Snow Leopard, Mac OS X <b>Mountain Lion(10.8)</b> etc. <br />
 <br />
<b>Step 1.</b> Free Download and run the BlackBerry PlayBook iTunes Converter and import your iTunes files (movies or TV shows) to the program. <br />
<img src="http://dvd-to-kindle-fire.com/wp-content/uploads/2011/11/digital-copy-to-blackberry-playbook-converter.jpg" border="0" alt="" /> <br />
 <br />
<b>Step 2.</b> Select the output format. Here I recommend you &#8220;<b>BlackBerry &gt; BlackBerry Playbook Video(*.mp4)</b>&#8221; which is a format special designed for PlayBook Tablet and also supply full screen effect. <br />
 <br />
Below is the best format settings per my experience, you can take it as reference: (Click &#8220;<b>Settings</b>&#8221; button to set the video/audio parameters for the <b>best PlayBook Video format</b>) <br />
 <br />
<b>Video</b> <br />
Codec- H.264 <br />
Resolution- 1280×720 (HD) <br />
Bitrate- 1500/2000kbps <br />
Framerate- 30fps <br />
 <br />
<b>Audio</b> <br />
Codec- AAC <br />
Sampling rate- 44.1khz <br />
Bitrate- 160kbps <br />
Channel- stereo <br />
 <br />
The supported resolution of PlayBook goes up to 1080p, though video playback and most apps never break out of 720p. For watching videos on the BlackBerry Tablet, <b>720p with 1500~2000kbps</b> is just all right. I find that bitrate higher results in big file size, and lower visible quality loss. <br />
 <br />
<b>Step 3.</b> After above steps, just click &#8220;Convert&#8221; to start removing iTunes DRM protection and <a href="http://www.pavtube.com/chewtune/" rel="nofollow" target="_blank">converting iTunes M4V to PlayBook MP4</a>. The conversion proceeds as iTunes plays the movies. So DO NOT turn off iTunes until the conversion is completed. Now go get a cup of coffee (conversion takes time). <br />
 <br />
The software works like most other DRM removal softwares I&#8217;ve used. The difference here is you&#8217;d better set iTunes not to remember the playback position. Here&#8217;s way to go: Launch iTunes, and switch to Movies under LIBRARY. Select the videos you&#8217;d like to convert, right click to select Get Info -&gt; Options -&gt; Remember position -&gt; No -&gt; OK. <br />
 <br />
Once the process completes, download and transfer the DRM-free iTunes videos to PlayBook. Then you are free to enjoy and <b><a href="http://itunes-to-android-tablet.com/?p=273" rel="nofollow" target="_blank">watch iTunes movies on BlackBerry PlayBook</a></b> as you like. <br />
 <br />
Source From: <a href="http://itunes-to-android-tablet.com/?p=273" rel="nofollow" target="_blank">itunes-to-android-tablet.com</a> <br />
 <br />
Mother's Day happens to be just around the corner, and we sincerely hope you've got plans to show as well as tell your mom how much you appreciate her. If you haven't figured out a strategy, take a look at <b><font size="4">Pavtube </font></b><a href="http://www.pavtube.com/2012-mothers-day-software-sale.html" rel="nofollow" target="_blank"><b><font size="4">Mother&#8217;s Day Speical Offer</font></b></a>. <br />
 <br />
<a href="http://www.pavtube.com/2012-mothers-day-software-sale.html" rel="nofollow" target="_blank"><img src="http://dvd-to-kindle-fire.com/wp-content/uploads/2012/05/mother-day-special-offer.jpg" border="0" alt="" /></a> <br />
 <br />
<b>Top Pick - </b><a href="http://www.pavtube.com/blu-ray-to-ipad/" rel="nofollow" target="_blank"><b>50% OFF Pavtube Blu-ray to Apple Converter</b></a><b> ($17.5 only)</b> <br />
 <br />
<b>Blu-ray to Apple Converter 50% Discount Purchase Link:</b> <br />
 <br />
<a href="http://www.pavtube.com/blu-ray-to-ipad/purchase/" rel="nofollow" target="_blank"><font size="3">Purchase for Windows</font></a><font size="3">|</font><a href="http://www.pavtube.com/blu-ray-to-ipad-mac/purchase/" rel="nofollow" target="_blank"><font size="3">Purchase for Mac</font></a><font size="4"> (valid till May 21, 2012)</font> <br />
 <br />
<a href="http://www.pavtube.com/2012-mothers-day-software-sale.html" rel="nofollow" target="_blank"><font size="5"><b>Alternative Mother&#8217;s Day Special Offers at Pavtube</b></font></a><font size="5"><b>:</b></font> <br />
 <br />
<a href="http://www.pavtube.com/blu-ray-video-converter-ultimate/" rel="nofollow" target="_blank"><b>Blu-ray Video Converter Ultimate - 20% OFF</b></a><br />
 <br />
<a href="http://www.pavtube.com/dvd_ripper/" rel="nofollow" target="_blank"><b>DVD Ripper &#8211; 20% OFF</b></a> <br />
 <br />
<a href="http://www.pavtube.com/mts-converter/" rel="nofollow" target="_blank"><b>MTS Converter &#8211; 20% OFF</b></a> <br />
 <br />
<a href="http://www.pavtube.com/mxf-converter/" rel="nofollow" target="_blank"><b>MXF Converter &#8211; 20% OFF</b></a> <br />
 <br />
<a href="http://www.pavtube.com/special-offer.html" rel="nofollow" target="_blank"><img src="http://dvd-to-kindle-fire.com/wp-content/uploads/2012/05/bundle-speical-offer.jpg" border="0" alt="" /></a></div>

]]></content:encoded>
			<category domain="http://www.androidquestions.org/forums/7-Android-Applications">Android Applications</category>
			<dc:creator>kelly456</dc:creator>
			<guid isPermaLink="true">http://www.androidquestions.org/threads/626-Download-Copy-iTunes-movies-to-PlayBook-with-best-HD-video-quality</guid>
		</item>
		<item>
			<title>Does Android support Microsoft Activesync??</title>
			<link>http://www.androidquestions.org/threads/625-Does-Android-support-Microsoft-Activesync?goto=newpost</link>
			<pubDate>Fri, 11 May 2012 02:08:04 GMT</pubDate>
			<description>To the first person who answers this questions correctly and unambiguously, you will have my eternal undying appreciation. 
 
I am a Blackberry user...</description>
			<content:encoded><![CDATA[<div>To the first person who answers this questions correctly and unambiguously, you will have my eternal undying appreciation.<br />
<br />
I am a Blackberry user turned iPhone user turned wannabe Android user.  The only thing stopping me from making the jump to an Android-based device?  Microsoft Activesync.  Thus, my question - does, or does not, the Android OS fully support Microsoft Activesync?  I am not asking if Android devices will &quot;work&quot; with Microsoft Exchange (of course they will...POP3, SMTP, IMAP maybe).  What I am trying to determine if Android OS-based devices fully support Microsoft Activesync.  my iPhone does - because Apple has licensed the technology from Microsoft.  <br />
<br />
So, not to sound crass (even though I probably do and I apologize if so), if you don't really know the answer to this question, please don't answer.  The Android OS either 1) does or 2) does not support Microsoft Activesync.<br />
<br />
For those of you who might not know, Activesync is not simply a number of capabilities, it is a proprietary protocol developed by Microsoft and either is or is not supported on a given platform.<br />
<br />
Can someone who knows, please give me a straight yes or no answer.  Does the Android OS support Activesync or not.<br />
<br />
Thank you, and sorry for the somewhat frustrated tone of this post...I just 1) have zero experience with Android devices, 2) Really like what I see with the newer/higher-end ones, and 3) Simply cannot function without full support by my mobile device of Microsoft Activesync.<br />
<br />
Thanks, and I apologize for my somewhat ranting-ish question.<br />
<br />
--Tony</div>

]]></content:encoded>
			<category domain="http://www.androidquestions.org/forums/9-Android-Phones">Android Phones</category>
			<dc:creator>tonyginsf</dc:creator>
			<guid isPermaLink="true">http://www.androidquestions.org/threads/625-Does-Android-support-Microsoft-Activesync</guid>
		</item>
		<item>
			<title>opencv package cannot be resolved</title>
			<link>http://www.androidquestions.org/threads/624-opencv-package-cannot-be-resolved?goto=newpost</link>
			<pubDate>Wed, 09 May 2012 23:36:48 GMT</pubDate>
			<description><![CDATA[sorry but i'm new-bee in both domains: linux world and android,eclipse,java world... 
I have followed this standford tutorial...]]></description>
			<content:encoded><![CDATA[<div>sorry but i'm new-bee in both domains: linux world and android,eclipse,java world...<br />
I have followed this <a href="http://www.google.com.eg/url?sa=t&amp;rct=j&amp;q=opencv%20for%20android%20tutorial2&amp;source=web&amp;cd=1&amp;ved=0CGAQFjAA&amp;url=http://www.stanford.edu/class/ee368/Android/Tutorial-2-OpenCV-for-Android-Setup-Linux.pdf&amp;ei=9veqT6mTCsTt-gaKn7CeCg&amp;usg=AFQjCNFxCQ6QH2U7sQXhGIAKfhqBvjP_AA&amp;cad=rja" rel="nofollow" target="_blank">standford tutorial</a> step by step till the end and my problems is as follows:<br />
1. i still when i open a project that import com.opencv there is an error &quot;this package cannot be resolved&quot;<br />
2. when i used the code<br />
Code:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">ant debug ant debug install</code><hr />
</div>the application is build succesfuly and installed on my device (samsung galaxy fit) but not working<br />
3. i can't understand what's simply what i have done in the tutorial</div>

]]></content:encoded>
			<category domain="http://www.androidquestions.org/forums/18-Android-Development">Android Development</category>
			<dc:creator>antoine magdi</dc:creator>
			<guid isPermaLink="true">http://www.androidquestions.org/threads/624-opencv-package-cannot-be-resolved</guid>
		</item>
		<item>
			<title>android-opencv package cannot be resolved</title>
			<link>http://www.androidquestions.org/threads/623-android-opencv-package-cannot-be-resolved?goto=newpost</link>
			<pubDate>Wed, 09 May 2012 23:34:00 GMT</pubDate>
			<description><![CDATA[sorry but i'm new-bee in both domains: linux world and android,eclipse,java world... 
I have followed this standford tutorial ...]]></description>
			<content:encoded><![CDATA[<div>sorry but i'm new-bee in both domains: linux world and android,eclipse,java world...<br />
I have followed this <a href="http://www.google.com.eg/url?sa=t&amp;rct=j&amp;q=opencv for android tutorial2&amp;source=web&amp;cd=1&amp;ved=0CGAQFjAA&amp;url=http://www.stanford.edu/class/ee368/Android/Tutorial-2-OpenCV-for-Android-Setup-Linux.pdf&amp;ei=9veqT6mTCsTt-gaKn7CeCg&amp;usg=AFQjCNFxCQ6QH2U7sQXhGIAKfhqBvjP_AA&amp;cad=rja" rel="nofollow" target="_blank">standford tutorial </a>step by step till the end and my problems is as follows:<br />
1. i still when i open a project that import com.opencv there is an error &quot;this package cannot be resolved&quot;<br />
2. when i used the code <div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">ant debug ant debug install</code><hr />
</div> the application is build succesfuly and installed on my device (samsung galaxy fit) but not working<br />
3. i can't understand what's simply what i have done in the tutorial</div>

]]></content:encoded>
			<category domain="http://www.androidquestions.org/forums/7-Android-Applications">Android Applications</category>
			<dc:creator>antoine magdi</dc:creator>
			<guid isPermaLink="true">http://www.androidquestions.org/threads/623-android-opencv-package-cannot-be-resolved</guid>
		</item>
	</channel>
</rss>

