<?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>Zemna.Net</title>
	<atom:link href="http://www.zemna.net/feed" rel="self" type="application/rss+xml" />
	<link>http://www.zemna.net</link>
	<description>Enjoy Your Programming!</description>
	<lastBuildDate>Sat, 17 Jul 2010 05:34:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>입력 문자 수 제한하기</title>
		<link>http://www.zemna.net/archives/1026</link>
		<comments>http://www.zemna.net/archives/1026#comments</comments>
		<pubDate>Sat, 17 Jul 2010 05:31:41 +0000</pubDate>
		<dc:creator>zemna</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[안드로이드]]></category>

		<guid isPermaLink="false">http://www.zemna.net/?p=1026</guid>
		<description><![CDATA[입력할 수 있는 문자의 수를 제한하는 방법. - setFilters(InputFilter[] filters) 함수를 사용한다. - InputFilter.LengthFilter(int max) 함수를 사용하여 원하는 자리수를 지정한다. public class TextChange extends Activity { EditText mEdit; /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); // Find edit box mEdit = (EditText)findViewById(R.id.edit); // Apply Filters [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.zemna.net%2Farchives%2F1026"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.zemna.net%2Farchives%2F1026&amp;source=zemnanet&amp;style=normal&amp;service=TinyURL.com&amp;hashtags=Android,%EC%95%88%EB%93%9C%EB%A1%9C%EC%9D%B4%EB%93%9C" height="61" width="50" /><br />
			</a>
		</div>
<p>입력할 수 있는 문자의 수를 제한하는 방법.</p>
<p>- setFilters(InputFilter[] filters) 함수를 사용한다.<br />
- InputFilter.LengthFilter(int max) 함수를 사용하여 원하는 자리수를 지정한다.</p>
<pre class="brush: java;">
public class TextChange extends Activity {

    EditText mEdit;

    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        // Find edit box
        mEdit = (EditText)findViewById(R.id.edit);

        // Apply Filters
        mEdit.setFilters(new InputFilter[] {
      		new InputFilter.LengthFilter(3)
        });
    }
}
</pre>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.zemna.net/archives/1026/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.zemna.net/archives/1026&amp;title=%EC%9E%85%EB%A0%A5+%EB%AC%B8%EC%9E%90+%EC%88%98+%EC%A0%9C%ED%95%9C%ED%95%98%EA%B8%B0" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.zemna.net/archives/1026&amp;title=%EC%9E%85%EB%A0%A5+%EB%AC%B8%EC%9E%90+%EC%88%98+%EC%A0%9C%ED%95%9C%ED%95%98%EA%B8%B0" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.zemna.net/archives/1026&amp;title=%EC%9E%85%EB%A0%A5+%EB%AC%B8%EC%9E%90+%EC%88%98+%EC%A0%9C%ED%95%9C%ED%95%98%EA%B8%B0&amp;desc=%EC%9E%85%EB%A0%A5%ED%95%A0%20%EC%88%98%20%EC%9E%88%EB%8A%94%20%EB%AC%B8%EC%9E%90%EC%9D%98%20%EC%88%98%EB%A5%BC%20%EC%A0%9C%ED%95%9C%ED%95%98%EB%8A%94%20%EB%B0%A9%EB%B2%95.%0D%0A%0D%0A-%20setFilters%28InputFilter%5B%5D%20filters%29%20%ED%95%A8%EC%88%98%EB%A5%BC%20%EC%82%AC%EC%9A%A9%ED%95%9C%EB%8B%A4.%0D%0A-%20InputFilter.LengthFilter%28int%20max%29%20%ED%95%A8%EC%88%98%EB%A5%BC%20%EC%82%AC%EC%9A%A9%ED%95%98%EC%97%AC%20%EC%9B%90%ED%95%98%EB%8A%94%20%EC%9E%90%EB%A6%AC%EC%88%98%EB%A5%BC%20%EC%A7%80%EC%A0%95%ED%95%9C%EB%8B%A4.%0D%0A%0D%0A%5Bcode%20lang%3D%22java%22%5D%0D%0Apublic%20class%20TextChange%20extends%20Activity%20%7B%0D%0A%0D%0A%20%20%20%20EditText" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.zemna.net/archives/1026&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.zemna.net/archives/1026&amp;bm_description=%EC%9E%85%EB%A0%A5+%EB%AC%B8%EC%9E%90+%EC%88%98+%EC%A0%9C%ED%95%9C%ED%95%98%EA%B8%B0&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.zemna.net/archives/1026&amp;title=%EC%9E%85%EB%A0%A5+%EB%AC%B8%EC%9E%90+%EC%88%98+%EC%A0%9C%ED%95%9C%ED%95%98%EA%B8%B0" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.zemna.net/archives/1026&amp;title=%EC%9E%85%EB%A0%A5+%EB%AC%B8%EC%9E%90+%EC%88%98+%EC%A0%9C%ED%95%9C%ED%95%98%EA%B8%B0" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.zemna.net/archives/1026" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=%EC%9E%85%EB%A0%A5+%EB%AC%B8%EC%9E%90+%EC%88%98+%EC%A0%9C%ED%95%9C%ED%95%98%EA%B8%B0+-+http://tinyurl.com/2vk8w32&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.zemna.net/archives/1026/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>안드로이드 수퍼 가이드</title>
		<link>http://www.zemna.net/archives/1023</link>
		<comments>http://www.zemna.net/archives/1023#comments</comments>
		<pubDate>Wed, 14 Jul 2010 12:59:44 +0000</pubDate>
		<dc:creator>zemna</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[안드로이드]]></category>

		<guid isPermaLink="false">http://www.zemna.net/?p=1023</guid>
		<description><![CDATA[IDG에서 제작한 안드로이드 플랫폼의 현황과 확장성, 활용법등에 대한 매거진 형식의 문서이다. 사이트에서 다운로드를 받으려면 회원가입을 해야하고, 다운로드 후에 다운로드화면에 명시되어 있는 암호를 입력해야 문서를 볼 수 있다. 다운로드 링크 http://www.idg.co.kr/event/whitepaper/whitepaper_list.jsp?input_tag=E050 Subscribe to the comments for this post? Share this on del.icio.us Digg this! Post this on Diigo Post on Google Buzz Add this to Mister [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.zemna.net%2Farchives%2F1023"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.zemna.net%2Farchives%2F1023&amp;source=zemnanet&amp;style=normal&amp;service=TinyURL.com&amp;hashtags=Android,%EC%95%88%EB%93%9C%EB%A1%9C%EC%9D%B4%EB%93%9C" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.idg.co.kr">IDG</a>에서 제작한 안드로이드 플랫폼의 현황과 확장성, 활용법등에 대한 매거진 형식의 문서이다.</p>
<p>사이트에서 다운로드를 받으려면 회원가입을 해야하고, 다운로드 후에 다운로드화면에 명시되어 있는 암호를 입력해야 문서를 볼 수 있다.</p>
<p><strong>다운로드 링크</strong></p>
<p style="padding-left: 30px;"><strong></strong><a href="http://www.idg.co.kr/event/whitepaper/whitepaper_list.jsp?input_tag=E050">http://www.idg.co.kr/event/whitepaper/whitepaper_list.jsp?input_tag=E050</a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.zemna.net/archives/1023/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.zemna.net/archives/1023&amp;title=%EC%95%88%EB%93%9C%EB%A1%9C%EC%9D%B4%EB%93%9C+%EC%88%98%ED%8D%BC+%EA%B0%80%EC%9D%B4%EB%93%9C" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.zemna.net/archives/1023&amp;title=%EC%95%88%EB%93%9C%EB%A1%9C%EC%9D%B4%EB%93%9C+%EC%88%98%ED%8D%BC+%EA%B0%80%EC%9D%B4%EB%93%9C" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.zemna.net/archives/1023&amp;title=%EC%95%88%EB%93%9C%EB%A1%9C%EC%9D%B4%EB%93%9C+%EC%88%98%ED%8D%BC+%EA%B0%80%EC%9D%B4%EB%93%9C&amp;desc=IDG%EC%97%90%EC%84%9C%20%EC%A0%9C%EC%9E%91%ED%95%9C%20%EC%95%88%EB%93%9C%EB%A1%9C%EC%9D%B4%EB%93%9C%20%ED%94%8C%EB%9E%AB%ED%8F%BC%EC%9D%98%20%ED%98%84%ED%99%A9%EA%B3%BC%20%ED%99%95%EC%9E%A5%EC%84%B1%2C%20%ED%99%9C%EC%9A%A9%EB%B2%95%EB%93%B1%EC%97%90%20%EB%8C%80%ED%95%9C%20%EB%A7%A4%EA%B1%B0%EC%A7%84%20%ED%98%95%EC%8B%9D%EC%9D%98%20%EB%AC%B8%EC%84%9C%EC%9D%B4%EB%8B%A4.%0D%0A%0D%0A%EC%82%AC%EC%9D%B4%ED%8A%B8%EC%97%90%EC%84%9C%20%EB%8B%A4%EC%9A%B4%EB%A1%9C%EB%93%9C%EB%A5%BC%20%EB%B0%9B%EC%9C%BC%EB%A0%A4%EB%A9%B4%20%ED%9A%8C%EC%9B%90%EA%B0%80%EC%9E%85%EC%9D%84%20%ED%95%B4%EC%95%BC%ED%95%98%EA%B3%A0%2C%20%EB%8B%A4%EC%9A%B4%EB%A1%9C%EB%93%9C%20%ED%9B%84%EC%97%90%20%EB%8B%A4%EC%9A%B4%EB%A1%9C%EB%93%9C%ED%99%94%EB%A9%B4%EC%97%90%20%EB%AA%85%EC%8B%9C%EB%90%98%EC%96%B4%20%EC%9E%88%EB%8A%94%20%EC%95%94%ED%98%B8%EB%A5%BC%20%EC%9E%85%EB%A0%A5%ED%95%B4%EC%95%BC%20%EB%AC%B8%EC%84%9C%EB%A5%BC%20" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.zemna.net/archives/1023&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.zemna.net/archives/1023&amp;bm_description=%EC%95%88%EB%93%9C%EB%A1%9C%EC%9D%B4%EB%93%9C+%EC%88%98%ED%8D%BC+%EA%B0%80%EC%9D%B4%EB%93%9C&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.zemna.net/archives/1023&amp;title=%EC%95%88%EB%93%9C%EB%A1%9C%EC%9D%B4%EB%93%9C+%EC%88%98%ED%8D%BC+%EA%B0%80%EC%9D%B4%EB%93%9C" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.zemna.net/archives/1023&amp;title=%EC%95%88%EB%93%9C%EB%A1%9C%EC%9D%B4%EB%93%9C+%EC%88%98%ED%8D%BC+%EA%B0%80%EC%9D%B4%EB%93%9C" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.zemna.net/archives/1023" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=%EC%95%88%EB%93%9C%EB%A1%9C%EC%9D%B4%EB%93%9C+%EC%88%98%ED%8D%BC+%EA%B0%80%EC%9D%B4%EB%93%9C+-+http://tinyurl.com/2ba9wt5&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.zemna.net/archives/1023/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>삼성 갤럭시S(Galaxy S) 버그</title>
		<link>http://www.zemna.net/archives/1018</link>
		<comments>http://www.zemna.net/archives/1018#comments</comments>
		<pubDate>Wed, 14 Jul 2010 12:16:53 +0000</pubDate>
		<dc:creator>zemna</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[GalaxyS]]></category>
		<category><![CDATA[갤럭시S]]></category>
		<category><![CDATA[안드로이드]]></category>

		<guid isPermaLink="false">http://www.zemna.net/?p=1018</guid>
		<description><![CDATA[이번에 휴대폰에 문제가 있어서 삼성 서비스센터에서 내부 부품 전체를 교체받은 후 나타난 현상. 관련 동영상 http://www.youtube.com/watch?v=4_hMWxSDULY 1. 와이파이 켰을때 2. 다시 와이파이 껐다가 켰을때 3. 다시 와이파이 껐다가 켰을때 즉, 각 휴대폰 별로 고정되어 있어야 할 맥(MAC) 어드레스가 와이파이를 토글 할 때마다 바껴버리는 현상&#8230;. ㅡㅡ;;; 휴대폰의 맥어드레스 뒤의 3부분이 계속해서 바뀐다&#8230;.. 삼성 서비스 센터에서 조사 [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.zemna.net%2Farchives%2F1018"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.zemna.net%2Farchives%2F1018&amp;source=zemnanet&amp;style=normal&amp;service=TinyURL.com&amp;hashtags=GalaxyS,%EA%B0%A4%EB%9F%AD%EC%8B%9CS,%EC%95%88%EB%93%9C%EB%A1%9C%EC%9D%B4%EB%93%9C" height="61" width="50" /><br />
			</a>
		</div>
<p>이번에 휴대폰에 문제가 있어서 삼성 서비스센터에서 내부 부품 전체를 교체받은 후 나타난 현상.</p>
<p><strong>관련 동영상</strong><br />
<a href="http://www.youtube.com/watch?v=4_hMWxSDULY">http://www.youtube.com/watch?v=4_hMWxSDULY</a></p>
<p>1. 와이파이 켰을때<br />
<img class="alignnone" title="GalaxyS_MACAddress_1.png" src="http://lh5.ggpht.com/_MAx0dXtTOEI/TD2sOY92nJI/AAAAAAAAIgc/wn3cr2l9i8E/s288/GalaxyS_MACAddress_1.png" alt="GalaxyS_MACAddress_1.png" width="288" height="162" /></p>
<p>2. 다시 와이파이 껐다가 켰을때</p>
<p><img class="alignnone" title="GalaxyS_MACAddress_2.png" src="http://lh4.ggpht.com/_MAx0dXtTOEI/TD2sOXR163I/AAAAAAAAIgg/i-lqQGrNhlw/s288/GalaxyS_MACAddress_2.png" alt="GalaxyS_MACAddress_2.png" width="288" height="162" /></p>
<p>3. 다시 와이파이 껐다가 켰을때<br />
<img class="alignnone" title="GalaxyS_MACAddress_3.png" src="http://lh3.ggpht.com/_MAx0dXtTOEI/TD2sOo0_sHI/AAAAAAAAIgk/E44QohrR2fY/s288/GalaxyS_MACAddress_3.png" alt="GalaxyS_MACAddress_3.png" width="288" height="162" /></p>
<p>즉, 각 휴대폰 별로 고정되어 있어야 할 맥(MAC) 어드레스가 와이파이를 토글 할 때마다 바껴버리는 현상&#8230;. ㅡㅡ;;;</p>
<p>휴대폰의 맥어드레스 뒤의 3부분이 계속해서 바뀐다&#8230;..</p>
<p>삼성 서비스 센터에서 조사 결과, 갤럭시S의 메인보드를 교체하면 나타나는 현상이라고 한다&#8230; 그래서 개선된 펌웨어를 만들고 있다고 한다&#8230;..</p>
<p>국내에서는 나 말고 메인보드를 교체한 사람이 없는 걸까&#8230;.. ㅠㅠ</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.zemna.net/archives/1018/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.zemna.net/archives/1018&amp;title=%EC%82%BC%EC%84%B1+%EA%B0%A4%EB%9F%AD%EC%8B%9CS%28Galaxy+S%29+%EB%B2%84%EA%B7%B8" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.zemna.net/archives/1018&amp;title=%EC%82%BC%EC%84%B1+%EA%B0%A4%EB%9F%AD%EC%8B%9CS%28Galaxy+S%29+%EB%B2%84%EA%B7%B8" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.zemna.net/archives/1018&amp;title=%EC%82%BC%EC%84%B1+%EA%B0%A4%EB%9F%AD%EC%8B%9CS%28Galaxy+S%29+%EB%B2%84%EA%B7%B8&amp;desc=%EC%9D%B4%EB%B2%88%EC%97%90%20%ED%9C%B4%EB%8C%80%ED%8F%B0%EC%97%90%20%EB%AC%B8%EC%A0%9C%EA%B0%80%20%EC%9E%88%EC%96%B4%EC%84%9C%20%EC%82%BC%EC%84%B1%20%EC%84%9C%EB%B9%84%EC%8A%A4%EC%84%BC%ED%84%B0%EC%97%90%EC%84%9C%20%EB%82%B4%EB%B6%80%20%EB%B6%80%ED%92%88%20%EC%A0%84%EC%B2%B4%EB%A5%BC%20%EA%B5%90%EC%B2%B4%EB%B0%9B%EC%9D%80%20%ED%9B%84%20%EB%82%98%ED%83%80%EB%82%9C%20%ED%98%84%EC%83%81.%0D%0A%0D%0A%EA%B4%80%EB%A0%A8%20%EB%8F%99%EC%98%81%EC%83%81%0D%0Ahttp%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3D4_hMWxSDULY%0D%0A%0D%0A1.%20%EC%99%80%EC%9D%B4%ED%8C%8C%EC%9D%B4%20%EC%BC%B0%EC%9D%84%EB%95%8C%0D%0A%0D%0A%0D%0A2.%20%EB%8B%A4%EC%8B%9C%20%EC%99%80%EC%9D%B4%ED%8C%8C%EC%9D%B4%20%EA%BB%90%EB%8B%A4%EA%B0%80%20%EC%BC%B0%EC%9D%84%EB%95%8C%0D%0A%0D%0A%0D%0A%0D%0A3.%20%EB%8B%A4%EC%8B%9C%20%EC%99%80%EC%9D%B4%ED%8C%8C%EC%9D" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.zemna.net/archives/1018&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.zemna.net/archives/1018&amp;bm_description=%EC%82%BC%EC%84%B1+%EA%B0%A4%EB%9F%AD%EC%8B%9CS%28Galaxy+S%29+%EB%B2%84%EA%B7%B8&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.zemna.net/archives/1018&amp;title=%EC%82%BC%EC%84%B1+%EA%B0%A4%EB%9F%AD%EC%8B%9CS%28Galaxy+S%29+%EB%B2%84%EA%B7%B8" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.zemna.net/archives/1018&amp;title=%EC%82%BC%EC%84%B1+%EA%B0%A4%EB%9F%AD%EC%8B%9CS%28Galaxy+S%29+%EB%B2%84%EA%B7%B8" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.zemna.net/archives/1018" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=%EC%82%BC%EC%84%B1+%EA%B0%A4%EB%9F%AD%EC%8B%9CS%28Galaxy+S%29+%EB%B2%84%EA%B7%B8+-+http://tinyurl.com/2ebkdfn&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.zemna.net/archives/1018/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Android NinePatch Graphic</title>
		<link>http://www.zemna.net/archives/1011</link>
		<comments>http://www.zemna.net/archives/1011#comments</comments>
		<pubDate>Wed, 30 Jun 2010 13:31:13 +0000</pubDate>
		<dc:creator>zemna</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[NinePach]]></category>
		<category><![CDATA[안드로이드]]></category>

		<guid isPermaLink="false">http://www.zemna.net/?p=1011</guid>
		<description><![CDATA[NinePatch는 안드로이드에서 View의 내용이 이미지 영역을 초과할 경우 이미지의 크기를 조절하기 위해 늘릴영역(Stretchable Region)을 지정해 놓은 PNG형식의 이미지를 뜻한다. 즉, 하나의 이미지를 가지고 이미지를 늘렸을 때 이미지의 전체가 아닌 NinePatch 이미지의 좌측과 상단에 정의되어있는 영역정보를 이용하여 늘려주고 우측과 하단에 정의되어있는 여백정보를 이용하여 내부 내용물 자리를 설정하는 방식이다. References http://www.androidpub.com/?mid=android_dev_info&#38;page=14&#38;document_srl=2096 http://developer.android.com/guide/developing/tools/draw9patch.html http://developer.android.com/guide/topics/resources/drawable-resource.html#NinePatch Subscribe to the comments [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.zemna.net%2Farchives%2F1011"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.zemna.net%2Farchives%2F1011&amp;source=zemnanet&amp;style=normal&amp;service=TinyURL.com&amp;hashtags=Android,NinePach,%EC%95%88%EB%93%9C%EB%A1%9C%EC%9D%B4%EB%93%9C" height="61" width="50" /><br />
			</a>
		</div>
<p>NinePatch는 안드로이드에서 View의 내용이 이미지 영역을 초과할 경우 이미지의 크기를 조절하기 위해 늘릴영역(Stretchable Region)을 지정해 놓은 PNG형식의 이미지를 뜻한다.</p>
<p>즉, 하나의 이미지를 가지고 이미지를 늘렸을 때 이미지의 전체가 아닌 NinePatch 이미지의 좌측과 상단에 정의되어있는 영역정보를 이용하여 늘려주고 우측과 하단에 정의되어있는 여백정보를 이용하여 내부 내용물 자리를 설정하는 방식이다.</p>
<p><strong>References</strong></p>
<ul>
<li><a href="http://www.androidpub.com/?mid=android_dev_info&amp;page=14&amp;document_srl=2096">http://www.androidpub.com/?mid=android_dev_info&amp;page=14&amp;document_srl=2096</a></li>
<li><a href="http://developer.android.com/guide/developing/tools/draw9patch.html">http://developer.android.com/guide/developing/tools/draw9patch.html</a></li>
<li><a href="http://developer.android.com/guide/topics/resources/drawable-resource.html#NinePatch">http://developer.android.com/guide/topics/resources/drawable-resource.html#NinePatch</a></li>
</ul>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.zemna.net/archives/1011/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.zemna.net/archives/1011&amp;title=Android+NinePatch+Graphic" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.zemna.net/archives/1011&amp;title=Android+NinePatch+Graphic" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.zemna.net/archives/1011&amp;title=Android+NinePatch+Graphic&amp;desc=NinePatch%EB%8A%94%20%EC%95%88%EB%93%9C%EB%A1%9C%EC%9D%B4%EB%93%9C%EC%97%90%EC%84%9C%20View%EC%9D%98%20%EB%82%B4%EC%9A%A9%EC%9D%B4%20%EC%9D%B4%EB%AF%B8%EC%A7%80%20%EC%98%81%EC%97%AD%EC%9D%84%20%EC%B4%88%EA%B3%BC%ED%95%A0%20%EA%B2%BD%EC%9A%B0%20%EC%9D%B4%EB%AF%B8%EC%A7%80%EC%9D%98%20%ED%81%AC%EA%B8%B0%EB%A5%BC%20%EC%A1%B0%EC%A0%88%ED%95%98%EA%B8%B0%20%EC%9C%84%ED%95%B4%20%EB%8A%98%EB%A6%B4%EC%98%81%EC%97%AD%28Stretchable%20Region%29%EC%9D%84%20%EC%A7%80%EC%A0%95%ED%95%B4%20%EB%86%93%EC%9D%80%20PNG%ED%98%95%EC%8B%9D%EC%9D%98%20%EC%9D%B4%EB%AF%B8%EC%A7%80%EB%A5%BC%20%EB%9C%BB%ED%95%9C%EB%8B%A4.%0D%0A%0D%0A%EC%A6%89%2C%20%ED%95%98%EB%82%98%EC%9D%98%20%EC%9D%B4%EB%AF%B8%EC%A7%80%EB%A5%BC%20%EA%B0%80%EC%A7%80%EA%B3%A0%20%EC%9D%B4%EB%AF%B8%EC%A7%80%EB%A5%BC%20%EB%8A%98%EB%A0%B8%EC%9D%84%20%EB%95%8C%20%EC%9D%B4%EB%AF%B8%EC%A7%80" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.zemna.net/archives/1011&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.zemna.net/archives/1011&amp;bm_description=Android+NinePatch+Graphic&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.zemna.net/archives/1011&amp;title=Android+NinePatch+Graphic" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.zemna.net/archives/1011&amp;title=Android+NinePatch+Graphic" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.zemna.net/archives/1011" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Android+NinePatch+Graphic+-+http://tinyurl.com/2983ql7&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.zemna.net/archives/1011/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>갤럭시S 휴대폰 화면 캡쳐하기</title>
		<link>http://www.zemna.net/archives/1006</link>
		<comments>http://www.zemna.net/archives/1006#comments</comments>
		<pubDate>Wed, 30 Jun 2010 12:33:58 +0000</pubDate>
		<dc:creator>zemna</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Capture]]></category>
		<category><![CDATA[DDMS]]></category>
		<category><![CDATA[안드로이드]]></category>

		<guid isPermaLink="false">http://www.zemna.net/?p=1006</guid>
		<description><![CDATA[애플의 아이폰이후로 급속도로 번지고 있는 스마트폰 열풍이 드디어 나에게도 왔다. 그동안 정말 오랜시간을 기달려서 드디어 갤럭시S를 장만했다.. ㅎㅎ. 앞으로 갤럭시S와 함께 안드로이드의 세계로 빠져볼까 한다. 이번에는 갤럭시S를 컴퓨터에 연결하여 현재 휴대폰의 화면을 캡쳐하여 가져오는 방법에 대해 알아보겠다. 일단, 컴퓨터에 갤럭시S 드라이버가 설치되어 있어야 한다. 드라이버는 http://kr.samsungmobile.com/service/support/down/anycall.software.view.do에서 다운받을 수 있다. 설치된 후에 USB 연결 케이블을 이용하여 [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.zemna.net%2Farchives%2F1006"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.zemna.net%2Farchives%2F1006&amp;source=zemnanet&amp;style=normal&amp;service=TinyURL.com&amp;hashtags=Android,Capture,DDMS,%EC%95%88%EB%93%9C%EB%A1%9C%EC%9D%B4%EB%93%9C" height="61" width="50" /><br />
			</a>
		</div>
<p>애플의 아이폰이후로 급속도로 번지고 있는 스마트폰 열풍이 드디어 나에게도 왔다.</p>
<p>그동안 정말 오랜시간을 기달려서 드디어 갤럭시S를 장만했다.. ㅎㅎ. 앞으로 갤럭시S와 함께 안드로이드의 세계로 빠져볼까 한다.</p>
<p>이번에는 갤럭시S를 컴퓨터에 연결하여 현재 휴대폰의 화면을 캡쳐하여 가져오는 방법에 대해 알아보겠다.</p>
<p>일단, 컴퓨터에 갤럭시S 드라이버가 설치되어 있어야 한다. 드라이버는 <a href="http://kr.samsungmobile.com/service/support/down/anycall.software.view.do">http://kr.samsungmobile.com/service/support/down/anycall.software.view.do</a>에서 다운받을 수 있다.</p>
<p>설치된 후에 USB 연결 케이블을 이용하여 컴퓨터에 연결하게 되면 장치관리자에 아래의 그림과 같이 ADB Interface 항목 하부에 SAMSUNG Android ADB Interface라는 장치로 휴대폰이 인식돼야 한다.</p>
<p><img class="alignnone" title="Device Manager" src="http://lh3.ggpht.com/_MAx0dXtTOEI/TCsxmN_fRuI/AAAAAAAAIXA/ebqO_LWicaI/DeviceManager.jpg" alt="" width="460" height="579" /></p>
<p>그리고 나서는 휴대폰에서 USB 디버깅 모드를 활성화 해야 한다. [메인메뉴 -&gt; 환경 설정 -&gt; 응용프로그램 -&gt; 개발] 항목으로 이동하자.</p>
<p><img class="alignnone" title="USB디버깅설정" src="http://lh4.ggpht.com/_MAx0dXtTOEI/TCs1Jah_NqI/AAAAAAAAIXo/-m9pbirw0oA/USB%EB%94%94%EB%B2%84%EA%B9%85.jpg" alt="" width="240" height="400" /></p>
<p>위와 같이 [USB 디버깅] 항목에 체크를 하고, [켜진 상태로 유지] 항목도 체크를 해주도록 한다.</p>
<p>여기까지 설정하면 기본 설정이 끝나게 된다.</p>
<p>그러면 화면캡쳐 기능을 제공하는 Android SDK를 설치하도록 하자. <a href="http://developer.android.com/sdk/index.html">http://developer.android.com/sdk/index.html</a> 사이트에서 최신 버전의 SDK를 다운로드 받아서 압축을 해제하도록 하자.</p>
<p>압축을 해제한 파일을 살펴보면 tools 폴더하부에 여러개의 배치파일과 실행파일이 있는것을 볼 수 있다.</p>
<p><img class="alignnone" title="AndroidSDK_Tools" src="http://lh6.ggpht.com/_MAx0dXtTOEI/TCs5B91rjXI/AAAAAAAAIYA/zf5xxwd1P3k/AndroidSDK_Tools.jpg" alt="" width="188" height="501" /></p>
<p>여기에서 ddms.bat라는 배치파일을 실행하여 프로그램을 실행한다. 프로그램을 실행하면 아래의 그림과 같은 프로그램이 나타나게 된다.</p>
<p><img class="alignnone" title="DDMS Main" src="http://lh3.ggpht.com/_MAx0dXtTOEI/TCs5CK0bKoI/AAAAAAAAIYE/KESN7maH-Ig/DDMS_Main.jpg" alt="" width="489" height="280" /></p>
<p>좌측에 현재 연결되어 있는 장비가 나타나고 현재 상태를 보여주게 된다. 만일 나타나지 않는다면, 연결에 문제가 있다는 뜻이된다. 그동안 몇일간 만져보니 USB 포트를 많이 타는것 같았다. 전면부에서 휴대폰이 정상적으로 잡히지 않는다면 본체 후면에 연결해서 해보도록 한다. 그리고 연결을 끊었다가 다시 해보고 하면 연결될 것이다&#8230;</p>
<p>그럼 이제 화면 캡쳐를 해보자. [Device -&gt; Screen capture] 메뉴를 실행하게 되면&#8230;.</p>
<p><img class="alignnone" title="DDMS Capture" src="http://lh5.ggpht.com/_MAx0dXtTOEI/TCs5CfdoHYI/AAAAAAAAIYM/AINXJhGa_EQ/DDMS_Capture.jpg" alt="" width="253" height="445" /></p>
<p>위와 같이 현재 휴대폰의 화면이 그대로 캡쳐되어 출력된다.</p>
<p>안드로이드 어플중에서도 화면 캡쳐를 지원하는 어플이 몇가지가 있지만, 루팅되지 않은 휴대폰에서는 동작하지 않는다고 한다. 간략하게 루팅이란, 안드로이드의 커널이 리눅스이므로 화면 캡쳐라는 기능을 수행하기 위한 어드민  권한을 얻는것을 뜻한다고 한다.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.zemna.net/archives/1006/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.zemna.net/archives/1006&amp;title=%EA%B0%A4%EB%9F%AD%EC%8B%9CS+%ED%9C%B4%EB%8C%80%ED%8F%B0+%ED%99%94%EB%A9%B4+%EC%BA%A1%EC%B3%90%ED%95%98%EA%B8%B0" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.zemna.net/archives/1006&amp;title=%EA%B0%A4%EB%9F%AD%EC%8B%9CS+%ED%9C%B4%EB%8C%80%ED%8F%B0+%ED%99%94%EB%A9%B4+%EC%BA%A1%EC%B3%90%ED%95%98%EA%B8%B0" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.zemna.net/archives/1006&amp;title=%EA%B0%A4%EB%9F%AD%EC%8B%9CS+%ED%9C%B4%EB%8C%80%ED%8F%B0+%ED%99%94%EB%A9%B4+%EC%BA%A1%EC%B3%90%ED%95%98%EA%B8%B0&amp;desc=%EC%95%A0%ED%94%8C%EC%9D%98%20%EC%95%84%EC%9D%B4%ED%8F%B0%EC%9D%B4%ED%9B%84%EB%A1%9C%20%EA%B8%89%EC%86%8D%EB%8F%84%EB%A1%9C%20%EB%B2%88%EC%A7%80%EA%B3%A0%20%EC%9E%88%EB%8A%94%20%EC%8A%A4%EB%A7%88%ED%8A%B8%ED%8F%B0%20%EC%97%B4%ED%92%8D%EC%9D%B4%20%EB%93%9C%EB%94%94%EC%96%B4%20%EB%82%98%EC%97%90%EA%B2%8C%EB%8F%84%20%EC%99%94%EB%8B%A4.%0D%0A%0D%0A%EA%B7%B8%EB%8F%99%EC%95%88%20%EC%A0%95%EB%A7%90%20%EC%98%A4%EB%9E%9C%EC%8B%9C%EA%B0%84%EC%9D%84%20%EA%B8%B0%EB%8B%AC%EB%A0%A4%EC%84%9C%20%EB%93%9C%EB%94%94%EC%96%B4%20%EA%B0%A4%EB%9F%AD%EC%8B%9CS%EB%A5%BC%20%EC%9E%A5%EB%A7%8C%ED%96%88%EB%8B%A4..%20%E3%85%8E%E3%85%8E.%20%EC%95%9E%EC%9C%BC%EB%A1%9C%20%EA%B0%A4%EB%9F%AD%EC%8B%9CS%EC%99%80%20%ED%95%A8%EA%BB%98%20%EC%95%88%EB%93%9C%EB%A1%9C%EC%9D%B4%EB%93%9C%EC%9D%98%20%EC%84%B8%EA%B3%84%EB%A1%9C%20%EB%B9%A0%EC%A0%B8%EB%B3%BC%EA%B9%8C%20%ED%95%9C%EB%8B%A4.%0D%0A%0D%0A%EC%9D%B4%EB%B2%88%EC" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.zemna.net/archives/1006&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.zemna.net/archives/1006&amp;bm_description=%EA%B0%A4%EB%9F%AD%EC%8B%9CS+%ED%9C%B4%EB%8C%80%ED%8F%B0+%ED%99%94%EB%A9%B4+%EC%BA%A1%EC%B3%90%ED%95%98%EA%B8%B0&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.zemna.net/archives/1006&amp;title=%EA%B0%A4%EB%9F%AD%EC%8B%9CS+%ED%9C%B4%EB%8C%80%ED%8F%B0+%ED%99%94%EB%A9%B4+%EC%BA%A1%EC%B3%90%ED%95%98%EA%B8%B0" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.zemna.net/archives/1006&amp;title=%EA%B0%A4%EB%9F%AD%EC%8B%9CS+%ED%9C%B4%EB%8C%80%ED%8F%B0+%ED%99%94%EB%A9%B4+%EC%BA%A1%EC%B3%90%ED%95%98%EA%B8%B0" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.zemna.net/archives/1006" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=%EA%B0%A4%EB%9F%AD%EC%8B%9CS+%ED%9C%B4%EB%8C%80%ED%8F%B0+%ED%99%94%EB%A9%B4+%EC%BA%A1%EC%B3%90%ED%95%98%EA%B8%B0+-+http://tinyurl.com/397542e&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.zemna.net/archives/1006/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Screen Capture</title>
		<link>http://www.zemna.net/archives/997</link>
		<comments>http://www.zemna.net/archives/997#comments</comments>
		<pubDate>Sat, 26 Jun 2010 06:06:23 +0000</pubDate>
		<dc:creator>zemna</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Screen Capture]]></category>

		<guid isPermaLink="false">http://www.zemna.net/?p=997</guid>
		<description><![CDATA[안드로이드에서 코딩으로 현재의 화면을 캡처하여 비트맵으로 만들어서 출력하는 방법이다. 안드로이드 개발 정보를 공유하면서 화면 캡처시에 쓸만 할 듯 하다. 아래의 코드만으로는 완료되지 않으며 레이아웃과 맞물려야 하기 때문에 그냥 이해하는 정도로만 봐야 한다. public class ScreenCapture extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { // TODO Auto-generated method stub super.onCreate(savedInstanceState); setContentView(R.layout.main); // Capture 버튼을 찾기 [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.zemna.net%2Farchives%2F997"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.zemna.net%2Farchives%2F997&amp;source=zemnanet&amp;style=normal&amp;service=TinyURL.com&amp;hashtags=Android,Screen+Capture" height="61" width="50" /><br />
			</a>
		</div>
<p>안드로이드에서 코딩으로 현재의 화면을 캡처하여 비트맵으로 만들어서 출력하는 방법이다.</p>
<p>안드로이드 개발 정보를 공유하면서 화면 캡처시에 쓸만 할 듯 하다.</p>
<p>아래의 코드만으로는 완료되지 않으며 레이아웃과 맞물려야 하기 때문에 그냥 이해하는 정도로만 봐야 한다.</p>
<pre class="brush: java;">
public class ScreenCapture extends Activity {

        @Override

        protected void onCreate(Bundle savedInstanceState) {

                // TODO Auto-generated method stub

                super.onCreate(savedInstanceState);

                setContentView(R.layout.main);

                // Capture 버튼을 찾기
                Button myBtn = (Button)findViewById(R.id.myBtn);

                // Capture 버튼의 클릭 이벤트 정의
                myBtn.setOnClickListener(new View.OnClickListener(){

                        @Override

                        public void onClick(View v) {

                                // 루트 뷰 찾기
                                View v1 = view.getRootView();

                                System.out.println(&quot;Root View : &quot;+v1);

                                v1.setDrawingCacheEnabled(true);

                                Bitmap bm = v1.getDrawingCache();

                                System.out.println(&quot;Bitmap : &quot;+bm);

                                showScreen(bm);
                        }

                });

        }
}
</pre>
<p><strong>Reference : </strong><a href="http://www.anddev.org/how_to_capture_screen_with_coding-t3755.html">http://www.anddev.org/how_to_capture_screen_with_coding-t3755.html</a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.zemna.net/archives/997/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.zemna.net/archives/997&amp;title=Screen+Capture" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.zemna.net/archives/997&amp;title=Screen+Capture" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.zemna.net/archives/997&amp;title=Screen+Capture&amp;desc=%EC%95%88%EB%93%9C%EB%A1%9C%EC%9D%B4%EB%93%9C%EC%97%90%EC%84%9C%20%EC%BD%94%EB%94%A9%EC%9C%BC%EB%A1%9C%20%ED%98%84%EC%9E%AC%EC%9D%98%20%ED%99%94%EB%A9%B4%EC%9D%84%20%EC%BA%A1%EC%B2%98%ED%95%98%EC%97%AC%20%EB%B9%84%ED%8A%B8%EB%A7%B5%EC%9C%BC%EB%A1%9C%20%EB%A7%8C%EB%93%A4%EC%96%B4%EC%84%9C%20%EC%B6%9C%EB%A0%A5%ED%95%98%EB%8A%94%20%EB%B0%A9%EB%B2%95%EC%9D%B4%EB%8B%A4.%0D%0A%0D%0A%EC%95%88%EB%93%9C%EB%A1%9C%EC%9D%B4%EB%93%9C%20%EA%B0%9C%EB%B0%9C%20%EC%A0%95%EB%B3%B4%EB%A5%BC%20%EA%B3%B5%EC%9C%A0%ED%95%98%EB%A9%B4%EC%84%9C%20%ED%99%94%EB%A9%B4%20%EC%BA%A1%EC%B2%98%EC%8B%9C%EC%97%90%20%EC%93%B8%EB%A7%8C%20%ED%95%A0%20%EB%93%AF%20%ED%95%98%EB%8B%A4.%0D%0A%0D%0A%EC%95%84%EB%9E%98%EC%9D%98%20%EC%BD%94%EB%93%9C%EB%A7%8C%EC%9C%BC%EB%A1%9C%EB%8A%94%20%EC%99%84%EB%A3%8C%EB%90%98%EC%A7%80%20%EC%95%8A%EC%9C%BC%EB%A9%B0%20%EB%A0%88%EC%9D%B4%EC%95%84%EC%9B%83%EA%B3%BC%20%EB%A7%9E%EB%AC%BC%EB%A0%A4%EC" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.zemna.net/archives/997&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.zemna.net/archives/997&amp;bm_description=Screen+Capture&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.zemna.net/archives/997&amp;title=Screen+Capture" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.zemna.net/archives/997&amp;title=Screen+Capture" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.zemna.net/archives/997" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Screen+Capture+-+http://tinyurl.com/2upglwe&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.zemna.net/archives/997/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Handler를 이용한 무한 루프 만들기</title>
		<link>http://www.zemna.net/archives/971</link>
		<comments>http://www.zemna.net/archives/971#comments</comments>
		<pubDate>Fri, 25 Jun 2010 14:22:23 +0000</pubDate>
		<dc:creator>zemna</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Handler]]></category>

		<guid isPermaLink="false">http://www.zemna.net/?p=971</guid>
		<description><![CDATA[안드로이드 프로그래밍 공부중에 나중에 참고 할 만한 내용을 정리하는 중이다. 이번에는 Handler 클래스를 사용하여 무한 루프를 만드는 방법이다. Handler 클래스의 sendEmptyMessage() , sendEmptyMessageDelayed() 메서드를 이용해서 만들수 있다. public class HandlerTest extends Activity { public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); onContentView(R.layout.handlertest); // 최초 핸들러 호출하기 mHandler.sendEmptyMessage(0); } Handler mHandler = new Handler() { public void handleMessage(Message [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.zemna.net%2Farchives%2F971"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.zemna.net%2Farchives%2F971&amp;source=zemnanet&amp;style=normal&amp;service=TinyURL.com&amp;hashtags=Android,Handler" height="61" width="50" /><br />
			</a>
		</div>
<p>안드로이드 프로그래밍 공부중에 나중에 참고 할 만한 내용을 정리하는 중이다.</p>
<p>이번에는 Handler 클래스를 사용하여 무한 루프를 만드는 방법이다.</p>
<p>Handler 클래스의 sendEmptyMessage() , sendEmptyMessageDelayed() 메서드를 이용해서 만들수 있다.</p>
<pre class="brush: java;">
public class HandlerTest extends Activity {

    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        onContentView(R.layout.handlertest);

        // 최초 핸들러 호출하기
        mHandler.sendEmptyMessage(0);
    }

    Handler mHandler = new Handler() {
        public void handleMessage(Message msg) {
            // Do something

            // 1초 후에 다시 핸들러 호출하기
            mHandler.sendEmptyMessageDelayed(0, 1000);
        }
    }
}
</pre>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.zemna.net/archives/971/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.zemna.net/archives/971&amp;title=Handler%EB%A5%BC+%EC%9D%B4%EC%9A%A9%ED%95%9C+%EB%AC%B4%ED%95%9C+%EB%A3%A8%ED%94%84+%EB%A7%8C%EB%93%A4%EA%B8%B0" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.zemna.net/archives/971&amp;title=Handler%EB%A5%BC+%EC%9D%B4%EC%9A%A9%ED%95%9C+%EB%AC%B4%ED%95%9C+%EB%A3%A8%ED%94%84+%EB%A7%8C%EB%93%A4%EA%B8%B0" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.zemna.net/archives/971&amp;title=Handler%EB%A5%BC+%EC%9D%B4%EC%9A%A9%ED%95%9C+%EB%AC%B4%ED%95%9C+%EB%A3%A8%ED%94%84+%EB%A7%8C%EB%93%A4%EA%B8%B0&amp;desc=%EC%95%88%EB%93%9C%EB%A1%9C%EC%9D%B4%EB%93%9C%20%ED%94%84%EB%A1%9C%EA%B7%B8%EB%9E%98%EB%B0%8D%20%EA%B3%B5%EB%B6%80%EC%A4%91%EC%97%90%20%EB%82%98%EC%A4%91%EC%97%90%20%EC%B0%B8%EA%B3%A0%20%ED%95%A0%20%EB%A7%8C%ED%95%9C%20%EB%82%B4%EC%9A%A9%EC%9D%84%20%EC%A0%95%EB%A6%AC%ED%95%98%EB%8A%94%20%EC%A4%91%EC%9D%B4%EB%8B%A4.%0D%0A%0D%0A%EC%9D%B4%EB%B2%88%EC%97%90%EB%8A%94%20Handler%20%ED%81%B4%EB%9E%98%EC%8A%A4%EB%A5%BC%20%EC%82%AC%EC%9A%A9%ED%95%98%EC%97%AC%20%EB%AC%B4%ED%95%9C%20%EB%A3%A8%ED%94%84%EB%A5%BC%20%EB%A7%8C%EB%93%9C%EB%8A%94%20%EB%B0%A9%EB%B2%95%EC%9D%B4%EB%8B%A4.%0D%0A%0D%0AHandler%20%ED%81%B4%EB%9E%98%EC%8A%A4%EC%9D%98%20sendEmptyMessage%28%29%20%2C%20sendEmptyMessageDelayed%28%29%20%EB%A9%94%EC%84%9C%EB%93%9C%EB%A5%BC%20%EC%9D%B4%EC%9A%A9%ED%95%B4%EC%84%9C%20%EB%A7%8C%EB%93" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.zemna.net/archives/971&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.zemna.net/archives/971&amp;bm_description=Handler%EB%A5%BC+%EC%9D%B4%EC%9A%A9%ED%95%9C+%EB%AC%B4%ED%95%9C+%EB%A3%A8%ED%94%84+%EB%A7%8C%EB%93%A4%EA%B8%B0&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.zemna.net/archives/971&amp;title=Handler%EB%A5%BC+%EC%9D%B4%EC%9A%A9%ED%95%9C+%EB%AC%B4%ED%95%9C+%EB%A3%A8%ED%94%84+%EB%A7%8C%EB%93%A4%EA%B8%B0" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.zemna.net/archives/971&amp;title=Handler%EB%A5%BC+%EC%9D%B4%EC%9A%A9%ED%95%9C+%EB%AC%B4%ED%95%9C+%EB%A3%A8%ED%94%84+%EB%A7%8C%EB%93%A4%EA%B8%B0" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.zemna.net/archives/971" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Handler%EB%A5%BC+%EC%9D%B4%EC%9A%A9%ED%95%9C+%EB%AC%B4%ED%95%9C+%EB%A3%A8%ED%94%84+%EB%A7%8C%EB%93%A4%EA%B8%B0+-+http://tinyurl.com/22wsc3t&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.zemna.net/archives/971/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change WordPress Language</title>
		<link>http://www.zemna.net/archives/967</link>
		<comments>http://www.zemna.net/archives/967#comments</comments>
		<pubDate>Fri, 25 Jun 2010 02:16:17 +0000</pubDate>
		<dc:creator>zemna</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.zemna.net/?p=967</guid>
		<description><![CDATA[1. Delete .mo and .po files in /wp-content/languages folder 2. Open wp-config.php file and change define (&#8216;WPLANG&#8217;, &#8216;ko-KR&#8217;); to define (&#8216;WPLANG&#8217;, &#8216; &#8216;); Subscribe to the comments for this post? Share this on del.icio.us Digg this! Post this on Diigo Post on Google Buzz Add this to Mister Wong Share this on Mixx Share this [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.zemna.net%2Farchives%2F967"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.zemna.net%2Farchives%2F967&amp;source=zemnanet&amp;style=normal&amp;service=TinyURL.com&amp;hashtags=WordPress" height="61" width="50" /><br />
			</a>
		</div>
<p>1. Delete .mo and .po files in<span style="background-color: #ff99cc;"> </span><span style="background-color: #ff99cc;">/wp-content/languages</span> folder</p>
<p>2. Open <span style="background-color: #c0c0c0;">wp-config.php</span> file and change <span style="background-color: #c0c0c0;">define (&#8216;WPLANG&#8217;, &#8216;ko-KR&#8217;);</span> to <span style="background-color: #c0c0c0;">define (&#8216;WPLANG&#8217;, &#8216; &#8216;);</span></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.zemna.net/archives/967/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.zemna.net/archives/967&amp;title=Change+Wordpress+Language" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.zemna.net/archives/967&amp;title=Change+Wordpress+Language" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.zemna.net/archives/967&amp;title=Change+Wordpress+Language&amp;desc=1.%20Delete%20.mo%20and%20.po%20files%20in%20%2Fwp-content%2Flanguages%20folder%0D%0A%0D%0A2.%20Open%20wp-config.php%20file%20and%20change%20define%20%28%27WPLANG%27%2C%20%27ko-KR%27%29%3B%20to%20define%20%28%27WPLANG%27%2C%20%27%20%27%29%3B" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.zemna.net/archives/967&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.zemna.net/archives/967&amp;bm_description=Change+Wordpress+Language&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.zemna.net/archives/967&amp;title=Change+Wordpress+Language" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.zemna.net/archives/967&amp;title=Change+Wordpress+Language" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.zemna.net/archives/967" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Change+Wordpress+Language+-+http://tinyurl.com/3xklq8u&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.zemna.net/archives/967/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Grid Control Design-Time Row and Column Manipulation Features</title>
		<link>http://www.zemna.net/archives/956</link>
		<comments>http://www.zemna.net/archives/956#comments</comments>
		<pubDate>Thu, 24 Jun 2010 07:34:23 +0000</pubDate>
		<dc:creator>zemna</dc:creator>
				<category><![CDATA[WPF]]></category>

		<guid isPermaLink="false">http://www.zemna.net/?p=956</guid>
		<description><![CDATA[WPF및 Silverlight의 그리드 컨트롤에 새롭게 추가된 그리드의 행과 열을 디자인 타임에서 조작할 수 있는 기능에 대한 시연 동영상이다. 매우 직관적으로 각 그리드의 항목들을 이동, 추가, 삭제할 수 있다. 마이크로소프트에서 &#8216;Microsoft Silverlight 4 Tools for Visual Studio 2010&#8216;을 다운받아서 설치해야 사용할 수 있다. Video URL : http://windowsclient.net/learn/video.aspx?v=324331 Related Blog Post: http://blogs.msdn.com/b/wpfsldesigner/archive/2010/01/14/wpf-silverlight-layout-controls.aspx Subscribe to the comments for [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.zemna.net%2Farchives%2F956"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.zemna.net%2Farchives%2F956&amp;source=zemnanet&amp;style=normal&amp;service=TinyURL.com&amp;hashtags=WPF" height="61" width="50" /><br />
			</a>
		</div>
<p>WPF및 Silverlight의 그리드 컨트롤에 새롭게 추가된 그리드의 행과 열을 디자인 타임에서 조작할 수 있는 기능에 대한 시연 동영상이다.</p>
<p>매우 직관적으로 각 그리드의 항목들을 이동, 추가, 삭제할 수 있다.</p>
<p>마이크로소프트에서 &#8216;<a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=eff8a0da-0a4d-48e8-8366-6ddf2ecad801&amp;displaylang=en" target="_blank">Microsoft Silverlight 4 Tools for Visual Studio 2010</a>&#8216;을 다운받아서 설치해야 사용할 수 있다.</p>
<p><strong>Video URL : </strong><a href="http://windowsclient.net/learn/video.aspx?v=324331">http://windowsclient.net/learn/video.aspx?v=324331</a></p>
<p><strong>Related Blog Post: </strong><a href="http://blogs.msdn.com/b/wpfsldesigner/archive/2010/01/14/wpf-silverlight-layout-controls.aspx">http://blogs.msdn.com/b/wpfsldesigner/archive/2010/01/14/wpf-silverlight-layout-controls.aspx</a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.zemna.net/archives/956/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.zemna.net/archives/956&amp;title=Grid+Control+Design-Time+Row+and+Column+Manipulation+Features" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.zemna.net/archives/956&amp;title=Grid+Control+Design-Time+Row+and+Column+Manipulation+Features" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.zemna.net/archives/956&amp;title=Grid+Control+Design-Time+Row+and+Column+Manipulation+Features&amp;desc=WPF%EB%B0%8F%20Silverlight%EC%9D%98%20%EA%B7%B8%EB%A6%AC%EB%93%9C%20%EC%BB%A8%ED%8A%B8%EB%A1%A4%EC%97%90%20%EC%83%88%EB%A1%AD%EA%B2%8C%20%EC%B6%94%EA%B0%80%EB%90%9C%20%EA%B7%B8%EB%A6%AC%EB%93%9C%EC%9D%98%20%ED%96%89%EA%B3%BC%20%EC%97%B4%EC%9D%84%20%EB%94%94%EC%9E%90%EC%9D%B8%20%ED%83%80%EC%9E%84%EC%97%90%EC%84%9C%20%EC%A1%B0%EC%9E%91%ED%95%A0%20%EC%88%98%20%EC%9E%88%EB%8A%94%20%EA%B8%B0%EB%8A%A5%EC%97%90%20%EB%8C%80%ED%95%9C%20%EC%8B%9C%EC%97%B0%20%EB%8F%99%EC%98%81%EC%83%81%EC%9D%B4%EB%8B%A4.%0D%0A%0D%0A%EB%A7%A4%EC%9A%B0%20%EC%A7%81%EA%B4%80%EC%A0%81%EC%9C%BC%EB%A1%9C%20%EA%B0%81%20%EA%B7%B8%EB%A6%AC%EB%93%9C%EC%9D%98%20%ED%95%AD%EB%AA%A9%EB%93%A4%EC%9D%84%20%EC%9D%B4%EB%8F%99%2C%20%EC%B6%94%EA%B0%80%2C%20%EC%82%AD%EC%A0%9C%ED%95%A0%20%EC%88%98%20%EC%9E%88%EB%8B%A4.%0D%0A%0D%0A%EB%A7%88%EC%9D%B4%ED%81%AC%EB%A1%9C%EC%86%8C%ED%94%84%ED%8A%B8%EC%97%90%EC%84" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.zemna.net/archives/956&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.zemna.net/archives/956&amp;bm_description=Grid+Control+Design-Time+Row+and+Column+Manipulation+Features&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.zemna.net/archives/956&amp;title=Grid+Control+Design-Time+Row+and+Column+Manipulation+Features" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.zemna.net/archives/956&amp;title=Grid+Control+Design-Time+Row+and+Column+Manipulation+Features" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.zemna.net/archives/956" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Grid+Control+Design-Time+Row+and+Column+Manipulation+Features+-+http://tinyurl.com/2bexeud&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.zemna.net/archives/956/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>개발자를 위한 Visual Studio 2010 최신 PDF자료!!</title>
		<link>http://www.zemna.net/archives/951</link>
		<comments>http://www.zemna.net/archives/951#comments</comments>
		<pubDate>Thu, 24 Jun 2010 07:06:00 +0000</pubDate>
		<dc:creator>zemna</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[.NET 일반]]></category>
		<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[Visual Studio 2010]]></category>

		<guid isPermaLink="false">http://www.zemna.net/?p=951</guid>
		<description><![CDATA[참조 : http://blogs.msdn.com/b/popcon/archive/2010/06/11/visual-studio-2010-pdf-msdn.aspx 전체 자료 업로드:  Visual Studio DevCenter Visual Studio 2010 최신 문서 다운로드 1. Visual Studio 2010이 필요한 10가지 이유-라인업 및 기능소개 브로셔 2. Visual Studio 2010 UPGRADE NOW 프로모션 브로셔 3. Visual Studio 2010 라이센스 가이드 4. Visual Studio 2010 을 활용한 ALM 백서 5. Visual Studio 2010 과 C++0x 백서 6. First Look C#4.0 백서 7. Team Foundation Server 2010 설치 가이드 (다중서버) 8. Team Foundation Server 2010 활용가이드 (FQDN) 9. Team Foundation Server 2010 설치 가이드 (단일서버) 10. Team Foundation Server 2010 설치 가이드 (Lab 환경구성) 11. .NET Framework 4 와 확장 포스터 12. Visual [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.zemna.net%2Farchives%2F951"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.zemna.net%2Farchives%2F951&amp;source=zemnanet&amp;style=normal&amp;service=TinyURL.com&amp;hashtags=Visual+Studio+2010" height="61" width="50" /><br />
			</a>
		</div>
<p><strong>참조 : </strong><a href="http://blogs.msdn.com/b/popcon/archive/2010/06/11/visual-studio-2010-pdf-msdn.aspx"><strong>http://blogs.msdn.com/b/popcon/archive/2010/06/11/visual-studio-2010-pdf-msdn.aspx</strong></a></p>
<p><strong><br />
</strong></p>
<p><strong>전체 자료 업로드:  <a href="http://msdn.microsoft.com/ko-kr/vstudio/default.aspx">Visual Studio DevCenter</a></strong></p>
<p><strong>Visual Studio 2010 최신 문서 다운로드</strong></p>
<p>1. <a href="http://download.microsoft.com/download/5/2/A/52A64886-8997-4905-B61B-D4664A61ECB4/VS2010_10reson_lineup_brochure.PDF">Visual Studio 2010이 필요한 10가지 이유-라인업 및 기능소개 브로셔</a></p>
<p>2. <a href="http://download.microsoft.com/download/1/9/4/194B6F74-8A72-482D-AF0E-31CE9D855372/VS2010_UPGRADE_NOW_promotion_brochure.PDF">Visual Studio 2010 UPGRADE NOW 프로모션 브로셔</a></p>
<p>3. <a href="http://download.microsoft.com/download/1/9/4/194B6F74-8A72-482D-AF0E-31CE9D855372/VS2010_license_guide.PDF">Visual Studio 2010 라이센스 가이드</a></p>
<p>4. <a href="http://download.microsoft.com/download/5/2/A/52A64886-8997-4905-B61B-D4664A61ECB4/Visual_Studio_2010_ALM_whitepaper.PDF">Visual Studio 2010 을 활용한 ALM 백서</a></p>
<p>5. <a href="http://download.microsoft.com/download/5/2/A/52A64886-8997-4905-B61B-D4664A61ECB4/Visual_Studio_2010_Cpp_whitepaper.PDF">Visual Studio 2010 과 C++0x 백서</a></p>
<p>6. <a href="http://download.microsoft.com/download/5/2/A/52A64886-8997-4905-B61B-D4664A61ECB4/First_Look_C_4_whitepaper.PDF">First Look C#4.0 백서</a></p>
<p>7. <a href="http://download.microsoft.com/download/5/2/A/52A64886-8997-4905-B61B-D4664A61ECB4/TeamFoundationServer2010_multiserver.PDF">Team Foundation Server 2010 설치 가이드 (다중서버)</a></p>
<p>8. <a href="http://download.microsoft.com/download/5/2/A/52A64886-8997-4905-B61B-D4664A61ECB4/TeamFoundationServer2010_FQDN.PDF">Team Foundation Server 2010 활용가이드 (FQDN)</a></p>
<p>9. <a href="http://download.microsoft.com/download/5/2/A/52A64886-8997-4905-B61B-D4664A61ECB4/TeamFoundationServer2010_install_guide_oneserver.PDF">Team Foundation Server 2010 설치 가이드 (단일서버)</a></p>
<p>10. <a href="http://download.microsoft.com/download/5/2/A/52A64886-8997-4905-B61B-D4664A61ECB4/TeamFoundationServer2010_lab.PDF">Team Foundation Server 2010 설치 가이드 (Lab 환경구성)</a></p>
<p>11. <a href="http://download.microsoft.com/download/5/2/A/52A64886-8997-4905-B61B-D4664A61ECB4/NET_Framewok_4.PDF">.NET Framework 4 와 확장 포스터</a></p>
<p>12. <a href="http://download.microsoft.com/download/1/9/4/194B6F74-8A72-482D-AF0E-31CE9D855372/VS2010_VisualBasic_shortcut.PDF">Visual Studio 2010 Visual Basic 단축키 포스터</a></p>
<p>13. <a href="http://download.microsoft.com/download/1/9/4/194B6F74-8A72-482D-AF0E-31CE9D855372/VS2010_Visual_F_shortcut.PDF">Visual Studio 2010 Visual F# 단축키 포스터</a></p>
<p>14. <a href="http://download.microsoft.com/download/1/9/4/194B6F74-8A72-482D-AF0E-31CE9D855372/VS2010_Visual_Cpp_shortcut.PDF">Visual Studio 2010 Visual C++ 단축키 포스터</a></p>
<p>15. <a href="http://download.microsoft.com/download/1/9/4/194B6F74-8A72-482D-AF0E-31CE9D855372/VS2010_VisualCshap_shortcut.PDF">Visual Studio 2010 Visual C# 단축키 포스터</a></p>
<p><a href="http://msdn.microsoft.com/ko-kr/vcsharp/default.aspx"><strong>Visual C# DevCenter</strong></a></p>
<p><a href="http://download.microsoft.com/download/1/9/4/194B6F74-8A72-482D-AF0E-31CE9D855372/VS2010_VisualCshap_shortcut.PDF">Visual Studio 2010 Visual C# 단축키 포스터</a></p>
<p><a href="http://download.microsoft.com/download/5/2/A/52A64886-8997-4905-B61B-D4664A61ECB4/First_Look_C_4_whitepaper.PDF">First Look C#4.0 백서</a></p>
<p><a href="http://msdn.microsoft.com/ko-kr/visualc/default.aspx"><strong>Visual C++DevCenter</strong></a></p>
<p><a href="http://download.microsoft.com/download/1/9/4/194B6F74-8A72-482D-AF0E-31CE9D855372/VS2010_Visual_Cpp_shortcut.PDF">Visual Studio 2010 Visual C++ 단축키 포스터</a></p>
<p><a href="http://msdn.microsoft.com/ko-kr/vbasic/default.aspx"><strong>Visual Basic DevCenter</strong></a></p>
<p><a href="http://download.microsoft.com/download/1/9/4/194B6F74-8A72-482D-AF0E-31CE9D855372/VS2010_VisualBasic_shortcut.PDF">Visual Studio 2010 Visual Basic 단축키 포스터</a></p>
<p><strong>.NET Framework DevCenter</strong></p>
<p><a href="http://download.microsoft.com/download/5/2/A/52A64886-8997-4905-B61B-D4664A61ECB4/NET_Framewok_4.PDF">.NET Framework 4 와 확장 포스터</a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.zemna.net/archives/951/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.zemna.net/archives/951&amp;title=%EA%B0%9C%EB%B0%9C%EC%9E%90%EB%A5%BC+%EC%9C%84%ED%95%9C+Visual+Studio+2010+%EC%B5%9C%EC%8B%A0+PDF%EC%9E%90%EB%A3%8C%21%21" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.zemna.net/archives/951&amp;title=%EA%B0%9C%EB%B0%9C%EC%9E%90%EB%A5%BC+%EC%9C%84%ED%95%9C+Visual+Studio+2010+%EC%B5%9C%EC%8B%A0+PDF%EC%9E%90%EB%A3%8C%21%21" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.zemna.net/archives/951&amp;title=%EA%B0%9C%EB%B0%9C%EC%9E%90%EB%A5%BC+%EC%9C%84%ED%95%9C+Visual+Studio+2010+%EC%B5%9C%EC%8B%A0+PDF%EC%9E%90%EB%A3%8C%21%21&amp;desc=%EC%B0%B8%EC%A1%B0%20%3A%20http%3A%2F%2Fblogs.msdn.com%2Fb%2Fpopcon%2Farchive%2F2010%2F06%2F11%2Fvisual-studio-2010-pdf-msdn.aspx%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%EC%A0%84%EC%B2%B4%20%EC%9E%90%EB%A3%8C%20%EC%97%85%EB%A1%9C%EB%93%9C%3A%20%C2%A0Visual%20Studio%20DevCenter%0D%0A%0D%0AVisual%20Studio%202010%20%EC%B5%9C%EC%8B%A0%20%EB%AC%B8%EC%84%9C%20%EB%8B%A4%EC%9A%B4%EB%A1%9C%EB%93%9C%0D%0A%0D%0A1.%C2%A0Visual%20Studio%202010%EC%9D%B4%C2%A0%ED%95%84%EC%9A%94%ED%95%9C%C2%A010%EA%B0%80%EC%A7%80%C2%A0%EC%9D%B4%EC%9C%A0-%EB%9D%BC%EC%9D%B8%EC%97%85%C2%A0%EB%B0%8F%C2%A0%EA%B8%B0%EB%8A%A5%EC%86%8C%EA%B0%9C%C2%A0%EB%B8%8C%EB%A1%9C%EC%85%94%0D%0A" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.zemna.net/archives/951&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.zemna.net/archives/951&amp;bm_description=%EA%B0%9C%EB%B0%9C%EC%9E%90%EB%A5%BC+%EC%9C%84%ED%95%9C+Visual+Studio+2010+%EC%B5%9C%EC%8B%A0+PDF%EC%9E%90%EB%A3%8C%21%21&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.zemna.net/archives/951&amp;title=%EA%B0%9C%EB%B0%9C%EC%9E%90%EB%A5%BC+%EC%9C%84%ED%95%9C+Visual+Studio+2010+%EC%B5%9C%EC%8B%A0+PDF%EC%9E%90%EB%A3%8C%21%21" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.zemna.net/archives/951&amp;title=%EA%B0%9C%EB%B0%9C%EC%9E%90%EB%A5%BC+%EC%9C%84%ED%95%9C+Visual+Studio+2010+%EC%B5%9C%EC%8B%A0+PDF%EC%9E%90%EB%A3%8C%21%21" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.zemna.net/archives/951" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=%EA%B0%9C%EB%B0%9C%EC%9E%90%EB%A5%BC+%EC%9C%84%ED%95%9C+Visual+Studio+2010+%EC%B5%9C%EC%8B%A0+PDF%EC%9E%90%EB%A3%8C%21%21+-+http://tinyurl.com/37wcuxx&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.zemna.net/archives/951/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
