<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>안드로이드사이드</title>
<link>http://www.androidside.com</link>
<description></description>
<language>ko</language>
<item>
<title>디아블로 아시아 친추합시다용</title>
<link>http://www.androidside.com/bbs/board.php?bo_table=B10&amp;wr_id=20281</link>
<description><![CDATA[저의 Tag는 초밥입니다#3805 입니다]]></description>
<dc:creator>초봅니다요</dc:creator>
<lastmod>Fri, 18 May 2012 22:14:34 +0900</lastmod>
<changefreq>daily</changefreq>
<priority>0.9</priority>
</item>
<item>
<title>카메라로 찍은 사진을 회전해서 저장시키는 방법</title>
<link>http://www.androidside.com/bbs/board.php?bo_table=B49&amp;wr_id=75148</link>
<description><![CDATA[말 그대로입니다. 카메라로 사진을 찍잖아요? 근데 문제는 저장될 때 회전되서 저장된다는 겁니다.<div><br></div><div>그 이유를 곰곰히 생각해보니깐 제가 manifest에다가 android:screenOrientation="landscape"</div><div><br></div><div>이걸 해줘서 그런가 생각했습니다.</div><div><br></div><div>도대체 어떻게 해야할까요?</div><div><br></div><div><div><span class="Apple-tab-span" style="white-space:pre">	</span>PictureCallback mPicture = new PictureCallback() {</div><div><span class="Apple-tab-span" style="white-space:pre">		</span>public void onPictureTaken(byte[] data, Camera camera) {</div><div><br></div><div><span class="Apple-tab-span" style="white-space:pre">			</span>// 외장메모리의 경로를 찾고 /kwyCamera라는 문자열을 더함.</div><div><span class="Apple-tab-span" style="white-space:pre">			</span>String a = Environment.getExternalStorageDirectory()</div><div><span class="Apple-tab-span" style="white-space:pre">					</span>.getAbsolutePath() + "/kwyCamera";</div><div><br></div><div><span class="Apple-tab-span" style="white-space:pre">			</span>// 저장할 이미지의 이름을 나타내느 변수로서 년월일-시분초.jpg로 나타냄.</div><div><span class="Apple-tab-span" style="white-space:pre">			</span>// Calender.MONTH에서 1월은 0의 값을 가지기에 +1을 해줌.</div><div><span class="Apple-tab-span" style="white-space:pre">			</span>Calendar calendar = Calendar.getInstance();</div><div><span class="Apple-tab-span" style="white-space:pre">			</span>String fileName = String.format("%02d%02d%02d_%02d%02d%02d.jpg",</div><div><span class="Apple-tab-span" style="white-space:pre">					</span>calendar.get(Calendar.YEAR) % 100,</div><div><span class="Apple-tab-span" style="white-space:pre">					</span>calendar.get(Calendar.MONTH) + 1,</div><div><span class="Apple-tab-span" style="white-space:pre">					</span>calendar.get(Calendar.DAY_OF_MONTH),</div><div><span class="Apple-tab-span" style="white-space:pre">					</span>calendar.get(Calendar.HOUR_OF_DAY),</div><div><span class="Apple-tab-span" style="white-space:pre">					</span>calendar.get(Calendar.MINUTE),</div><div><span class="Apple-tab-span" style="white-space:pre">					</span>calendar.get(Calendar.SECOND));</div><div><br></div><div><span class="Apple-tab-span" style="white-space:pre">			</span>String path = a + "/" + fileName;</div><div><br></div><div><span class="Apple-tab-span" style="white-space:pre">			</span>File file = new File(a);</div><div><span class="Apple-tab-span" style="white-space:pre">			</span>try {</div><div><span class="Apple-tab-span" style="white-space:pre">				</span>if (!file.exists()) {</div><div><span class="Apple-tab-span" style="white-space:pre">					</span>// 파일이 존재하지 않으면 만듬</div><div><span class="Apple-tab-span" style="white-space:pre">					</span>file.mkdirs();</div><div><span class="Apple-tab-span" style="white-space:pre">				</span>}</div><div><span class="Apple-tab-span" style="white-space:pre">				</span>FileOutputStream fos = new FileOutputStream(path);</div><div><span class="Apple-tab-span" style="white-space:pre">				</span>fos.write(data);</div><div><span class="Apple-tab-span" style="white-space:pre">				</span>fos.flush();</div><div><span class="Apple-tab-span" style="white-space:pre">				</span>fos.close();</div><div><span class="Apple-tab-span" style="white-space:pre">			</span>} catch (Exception e) {</div><div><span class="Apple-tab-span" style="white-space:pre">				</span>Toast.makeText(MyCameraActivity.this,"Error : " + e.getMessage(), 0).show();</div><div><span class="Apple-tab-span" style="white-space:pre">				</span>return;</div><div><span class="Apple-tab-span" style="white-space:pre">			</span>}</div><div><br></div><div><span class="Apple-tab-span" style="white-space:pre">			</span>Toast.makeText(MyCameraActivity.this, fileName, Toast.LENGTH_SHORT).show();</div><div><br></div><div><span class="Apple-tab-span" style="white-space:pre">			</span>// 스캐닝 요청</div><div><span class="Apple-tab-span" style="white-space:pre">			</span>Intent intent = new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE);</div><div><span class="Apple-tab-span" style="white-space:pre">			</span>Uri uri = Uri.parse("file://" + path);</div><div><span class="Apple-tab-span" style="white-space:pre">			</span>intent.setData(uri);</div><div><span class="Apple-tab-span" style="white-space:pre">			</span>sendBroadcast(intent);</div><div><br></div><div><span class="Apple-tab-span" style="white-space:pre">			</span>mPreview.getCamera().startPreview();</div><div><span class="Apple-tab-span" style="white-space:pre">		</span>}</div><div><span class="Apple-tab-span" style="white-space:pre">	</span>};</div></div><div><br></div><div>위 소스는 사진을 찍었을 때 수행되는 메소드를 여기저기에서 짜깁기한 코드입니다.</div><div><br></div><div>문제는 fos.write를 하기 전에 해당 데이터에 어떻게 접근을 하나요?</div><div><br></div><div>접근을 해야지 이미지를 변경할 수 있을 텐데... 파라미터로 오는 byte[] data 이부분이 실제로는</div><div><br></div><div>사진의 데이터 정보가 오는건가요?</div><div><br></div><div>그리고 또 질문이 있는데요</div><div><br></div><div>이미지 저장을 년월일_시분초로 저장을 하는데</div><div><br></div><div>갤러리에 들어가서 보면 제일 처음 찍은게 제일 처음 나오니까 맨날</div><div><br></div><div>아랫쪽까지 내려야 하는 불편함이 있던데</div><div><br></div><div>최근 사진이 위로 오게 정렬되게 하는 방법은 없나요?</div><div><br></div><div>메소드 있을것 같은데...</div>]]></description>
<dc:creator>치타간지</dc:creator>
<lastmod>Fri, 18 May 2012 21:02:07 +0900</lastmod>
<changefreq>daily</changefreq>
<priority>0.9</priority>
</item>
<item>
<title>[무료/ㅋㅋ] 디아블로3 아이템 갤러리!</title>
<link>http://www.androidside.com/bbs/board.php?bo_table=B37_1&amp;wr_id=14091</link>
<description><![CDATA[<p><img rel="xe_gallery" src="http://market.android.com/publish/images/PQAAAPhXEpX3yca2oG2-DjbRf8XaRD8Xp5E3Ut1d6W4pkkLclmJYMfSlcoMsimjIWPgr_a_kVIDWgYts8OWiVHASvSUAzfqVafOhUc5sE15xWO16TCo-K-Az7Iug.png" alt="http://market.android.com/publish/images/PQAAAPhXEpX3yca2oG2-DjbRf8XaRD8Xp5E3Ut1d6W4pkkLclmJYMfSlcoMsimjIWPgr_a_kVIDWgYts8OWiVHASvSUAzfqVafOhUc5sE15xWO16TCo-K-Az7Iug.png" title="http://market.android.com/publish/images/PQAAAPhXEpX3yca2oG2-DjbRf8XaRD8Xp5E3Ut1d6W4pkkLclmJYMfSlcoMsimjIWPgr_a_kVIDWgYts8OWiVHASvSUAzfqVafOhUc5sE15xWO16TCo-K-Az7Iug.png" class="iePngFix" style="cursor: pointer;"></p><p><br></p><p><br></p><p><img rel="xe_gallery" src="http://market.android.com/publish/images/PQAAAD-CaJHe4-IH9I1rey7XFoVUMmeIsfU3zu1m1snVSE6BTBkDNDq6zBnxbH_X3UE0dY0bOGE7G8S2fX9AQYXz6IsAzfqVaRA5wbrYhp6xaoCkqDrpl7V755DC.png" alt="http://market.android.com/publish/images/PQAAAD-CaJHe4-IH9I1rey7XFoVUMmeIsfU3zu1m1snVSE6BTBkDNDq6zBnxbH_X3UE0dY0bOGE7G8S2fX9AQYXz6IsAzfqVaRA5wbrYhp6xaoCkqDrpl7V755DC.png" title="http://market.android.com/publish/images/PQAAAD-CaJHe4-IH9I1rey7XFoVUMmeIsfU3zu1m1snVSE6BTBkDNDq6zBnxbH_X3UE0dY0bOGE7G8S2fX9AQYXz6IsAzfqVaRA5wbrYhp6xaoCkqDrpl7V755DC.png" class="iePngFix" style="cursor: pointer;"></p><p><span style="font-size: 24px;">디아3 재밌네요 ㅋㅋㅋㅋ&nbsp;</span></p><p><br></p><p><span style="font-size: 24px;">디아2 때도 그렇고 요즘도 그런게 <br></span></p><p><span style="font-size: 24px;"><br></span></p><p><span style="font-size: 24px;">좋은템 먹으면 자랑하고싶고 ㅋㅋ&nbsp;</span></p><p><br></p><p><span style="font-size: 24px;">애매한거 먹으면 이걸 어따쓰나 조언도 받고싶은게 많았는데&nbsp;</span></p><p><br></p><p><span style="font-size: 24px;">그런것들 때문에 만들었습니다. </span><br></p><p><br></p><p><span style="font-size: 24px;">간편하게 글쓰기 버튼 누르고, 사진찍고 글쓰면 되요 ㅎㅎㅎ&nbsp;</span></p><p><br></p><p><span style="font-size: 32px;">디아3 하시는 분들 한번 써보세요 ^^</span></p><p><br></p><p><br></p><p><br></p><p><a target="_blank" href="https://play.google.com/store/apps/details?id=com.doouky.d3_client"><span style="font-size: 32px;">마켓 링크&nbsp;</span></a></p><p><br></p><p>QR코드<br></p><p><img rel="xe_gallery" src="http://qoongr.co.kr/code/QRgen.php?chrd=market%3A%2F%2Fdetails%3Fid%3Dcom.doouky.d3_client&amp;size=L&amp;type=url&amp;l=1" id="qrimg_preview" style=""></p><p><br></p><span style="font-size: 24px;">검색은 디아블로 라고 검색하시면 첫페이지에 바로나와요 ^^<br><br></span>아.. 어디에 올려야할지 애매해서 여기 올립니다 ^^; 문제가 된다면 쪽지 날려주세요 바로 옮기겠습니다 <br>]]></description>
<dc:creator>검은향기</dc:creator>
<lastmod>Fri, 18 May 2012 20:59:48 +0900</lastmod>
<changefreq>daily</changefreq>
<priority>0.9</priority>
</item>
<item>
<title>gSoap라이브러리 안드로이드에서 사용가능한지 궁금합니다.</title>
<link>http://www.androidside.com/bbs/board.php?bo_table=B49&amp;wr_id=75146</link>
<description><![CDATA[<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: Gulim; ">제목 그대로입니다. 사용가능한지 궁금합니다.</p><p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: Gulim; "><br></p><p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; font-family: Gulim; ">혹시 성공하신분 계시는지..?</p>]]></description>
<dc:creator>금빛늑대</dc:creator>
<lastmod>Fri, 18 May 2012 20:49:11 +0900</lastmod>
<changefreq>daily</changefreq>
<priority>0.9</priority>
</item>
<item>
<title>BadTokenException  에러</title>
<link>http://www.androidside.com/bbs/board.php?bo_table=B49&amp;wr_id=75142</link>
<description><![CDATA[<div>android.view.WindowManager$BadTokenException: Unable to add window -- token null is not valid; is your activity running?</div>공지사항을 만들기위해서 SharedPreference를 쓰고있습니다.<div>공지사항 팝업을 띄우면 이런 에러가 나는데... 뭐가 문제인지 잘 모르겠습니다...&nbsp;</div><div>고수분들..답변 부탁드립니다...</div>]]></description>
<dc:creator>봄날의곰</dc:creator>
<lastmod>Fri, 18 May 2012 19:55:18 +0900</lastmod>
<changefreq>daily</changefreq>
<priority>0.9</priority>
</item>
<item>
<title>덧없음님과 정에님</title>
<link>http://www.androidside.com/bbs/board.php?bo_table=B49&amp;wr_id=75136</link>
<description><![CDATA[<DIV>에디트텍스트에 사용자가 임의로 수를 주어줍니다..</DIV>
<DIV>&nbsp;</DIV>
<DIV>1 2; 3 4;</DIV>
<DIV>&nbsp;</DIV>
<DIV>대충 간단하게 이렇게요 그다음 버튼을 누르면</DIV>
<DIV>그럼 미리 2*2배열로 선언한데다가</DIV>
<DIV>&nbsp;</DIV>
<DIV>1 2</DIV>
<DIV>3 4</DIV>
<DIV>텍스트</DIV>
<DIV>이런식으로 나타내고 싶습니다...</DIV>
<DIV>EditText et = (EditText)findViewById(R.id.editText1);</DIV>
<DIV>Button m_Button = (Button)findViewById(R.id.btn1);</DIV>
<DIV>TextView m_Text = (TextView)findViewById(R.id.tv);</DIV>
<DIV>이렇게만 선언한 상태구요 그다음 모르겠어요 ㅠㅠ</DIV>]]></description>
<dc:creator>아카츠키</dc:creator>
<lastmod>Fri, 18 May 2012 18:51:17 +0900</lastmod>
<changefreq>daily</changefreq>
<priority>0.9</priority>
</item>
<item>
<title>에디트텍스트에서 인덱스오브를 써서 텍스트창에 뿌려주기~</title>
<link>http://www.androidside.com/bbs/board.php?bo_table=B49&amp;wr_id=75134</link>
<description><![CDATA[<DIV>&nbsp;</DIV>
<DIV>public class TestActivity extends Activity {<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; public String op1;<BR>&nbsp;public char operator;<BR>&nbsp;TextView m_Text;</DIV>
<DIV>//배열 선언<BR>&nbsp;int [] [] a = new int [2] [2];<BR>&nbsp;private String s1;<BR>&nbsp;private EditText et1;<BR>&nbsp;<BR>&nbsp;<BR>&nbsp;&nbsp;&nbsp; @Override<BR>&nbsp;&nbsp;&nbsp; public void onCreate(Bundle savedInstanceState) {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; super.onCreate(savedInstanceState);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; setContentView(R.layout.main);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Button m_Button = (Button)findViewById(R.id.btn1);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;m_Text = (TextView)findViewById(R.id.tv);<BR>//에디트텍스트&nbsp;xml파일에서 불어왓고요&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</DIV>
<DIV>&nbsp;EditText et = (EditText)findViewById(R.id.editText1);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //이제 에디트텍스트에서 문자열을 따로 선언한다음에 인덱스오브를 써야되는지</DIV>
<DIV>//아니면 바로 인덱스오브를 써도되는지가&nbsp;궁금합니다.</DIV>
<DIV>//그리고 그렇게&nbsp;에디트 텍스트에서 인덱스오브를 어떻게 써야되는지 모르겠어요ㅠㅠ</DIV>
<DIV>//아에 소스를 어떻게 작성하는법을요 ㅠㅠ</DIV>
<DIV>//제가 원하는건&nbsp;에디트 텍스트에서&nbsp;띄워쓰기가 들어갈때&nbsp;1 2 3 4&nbsp;이렇게 4개있는 배열에서 1번배열에서 2번배열로 </DIV>
<DIV>//넘어가고 싶은걸 하고 싶어요 ㅠㅠ<BR>&nbsp;&nbsp;String et1 = null;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; int index = ((String) et1).indexOf(" ");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; a[0][0] = 1;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; m_Button.setOnClickListener(new View.OnClickListener() {<BR>&nbsp;&nbsp;&nbsp;<BR>&nbsp;&nbsp;&nbsp;public void onClick(View arg0) {<BR>&nbsp;&nbsp;&nbsp;&nbsp;// TODO Auto-generated method stub<BR>&nbsp;&nbsp;&nbsp;updateDisplay();&nbsp;<BR>&nbsp;&nbsp;&nbsp;}<BR>&nbsp;&nbsp;&nbsp;<BR>&nbsp;&nbsp;});<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; et1.setText("");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; operator = '0';<BR>&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp; private void updateDisplay() {<BR>&nbsp;&nbsp;m_Text.setText(String.format("%d&nbsp;&nbsp;&nbsp; %d\n%d&nbsp;&nbsp;&nbsp;&nbsp; %d",a[0][0],a[0][1],a[1][0],a[1][1]));<BR>&nbsp;}</DIV>
<DIV>&nbsp;</DIV>]]></description>
<dc:creator>아카츠키</dc:creator>
<lastmod>Fri, 18 May 2012 18:36:31 +0900</lastmod>
<changefreq>daily</changefreq>
<priority>0.9</priority>
</item>
<item>
<title>앱 실행상태에서 잠금상태로 이동</title>
<link>http://www.androidside.com/bbs/board.php?bo_table=B49&amp;wr_id=75133</link>
<description><![CDATA[안녕하세요&nbsp;<div><br></div><div>처음 핸드폰을 켰을때 잠금화면이 나오는것처럼</div><div><br></div><div>앱을 실행한 상태에서 버튼을 누르면 앱을 종료시키고 잠금화면으로 이동하고싶은데&nbsp;</div><div><br></div><div>잘 모르겠네요..</div><div><br></div><div>검색해도 시원한 답이 안나오고 잠금을 해제하는 방법만 나오더군요..</div><div><br></div><div>잠금하는방법좀 알려주세요 고수님들 ㅠㅠ</div>]]></description>
<dc:creator>두근</dc:creator>
<lastmod>Fri, 18 May 2012 18:26:51 +0900</lastmod>
<changefreq>daily</changefreq>
<priority>0.9</priority>
</item>
<item>
<title>android facebook newsfeed 따오는거 질문이 있습니다.</title>
<link>http://www.androidside.com/bbs/board.php?bo_table=B49&amp;wr_id=75130</link>
<description><![CDATA[<DIV>asyncRunner.request("me/feed", new RequestListener() {</DIV>
<DIV>Log.i("response", response);<BR>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;// parse response and make list.<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;try {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;final JSONObject json = new JSONObject(response);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;JSONArray d = json.getJSONArray("data");</DIV>
<DIV>데이터를 받아와서 </DIV>
<DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;JSONObject post=d.getJSONObject(i);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;list.add(post.getString("from"));</DIV>
<DIV>이렇게 뿌려주는데요</DIV>
<DIV>아이디와 이름밖에 안나오네요...</DIV>
<DIV>뉴스피드 뽑아내는 방법좀 알려주세요...ㅠㅠ</DIV>]]></description>
<dc:creator>어창친구</dc:creator>
<lastmod>Fri, 18 May 2012 18:02:35 +0900</lastmod>
<changefreq>daily</changefreq>
<priority>0.9</priority>
</item>
<item>
<title>안녕하세요^^</title>
<link>http://www.androidside.com/bbs/board.php?bo_table=B01&amp;wr_id=5411</link>
<description><![CDATA[<DIV>가입한지 일주일 조금 넘었는데 좀 늦게 가입인사 올리네요</DIV>
<DIV>모든 개발자분들 항상 열심히 좋은 결과 있기를 바랍니다.ㅎ</DIV>
<DIV>좋은 정보 많이 배워가겠습니다.</DIV>]]></description>
<dc:creator>어창친구</dc:creator>
<lastmod>Fri, 18 May 2012 18:01:52 +0900</lastmod>
<changefreq>daily</changefreq>
<priority>0.9</priority>
</item>
<item>
<title>안드로이드 공부중인데.....</title>
<link>http://www.androidside.com/bbs/board.php?bo_table=B10&amp;wr_id=20279</link>
<description><![CDATA[<DIV>너무 어려워요</DIV>
<DIV>자바도 첨해봐서 너무어려워여</DIV>
<DIV>패키지 첨봤어여</DIV>
<DIV>역시 어려워여</DIV>
<DIV>하지만 포기하지 않아요</DIV>]]></description>
<dc:creator>어창친구</dc:creator>
<lastmod>Fri, 18 May 2012 18:00:30 +0900</lastmod>
<changefreq>daily</changefreq>
<priority>0.9</priority>
</item>
<item>
<title>[유료][안드로이드/아이폰4s/아이패드2]발키리[Valkyrie]:Death Zone - 출시 본격 스타일리쉬 3인칭시점 액션 슈팅게임(TPS)</title>
<link>http://www.androidside.com/bbs/board.php?bo_table=B37_1&amp;wr_id=14089</link>
<description><![CDATA[* 소개 글이 아닌 광고성 글이나 이미지를 직접 올리지 않은 글은 임의로 삭제될 수 있으므로 주의해주시기 바랍니다.<br>
* 링크1에 마켓 url을 입력하시면 자동으로 QR 코드가 생성됩니다.<div><br></div><div><a href="https://play.google.com/store/apps/details?id=com.wiz.valkyriekor" style="font-family: 돋움, Dotum, AppleGothic, sans-serif; line-height: 15px; " target="_blank">다운 링크</a></div><div><br><div><p style="margin-top: 0px !important; margin-right: 0px; margin-bottom: 0px !important; margin-left: 0px; padding-top: 0px !important; padding-right: 0px; padding-bottom: 0px !important; padding-left: 0px; border: 0px; line-height: 15px; font-family: 돋움, Dotum, AppleGothic, sans-serif; color: rgb(138, 138, 138); ">&nbsp;본격&nbsp;스타일리쉬&nbsp;3인칭시점&nbsp;액션&nbsp;슈팅게임(TPS)</p><p style="margin-top: 0px !important; margin-right: 0px; margin-bottom: 0px !important; margin-left: 0px; padding-top: 0px !important; padding-right: 0px; padding-bottom: 0px !important; padding-left: 0px; border: 0px; line-height: 15px; font-family: 돋움, Dotum, AppleGothic, sans-serif; color: rgb(138, 138, 138); "><br></p><p style="margin-top: 0px !important; margin-right: 0px; margin-bottom: 0px !important; margin-left: 0px; padding-top: 0px !important; padding-right: 0px; padding-bottom: 0px !important; padding-left: 0px; border: 0px; line-height: 15px; font-family: 돋움, Dotum, AppleGothic, sans-serif; color: rgb(138, 138, 138); ">드디어 나왔다 발키리!!! 데드존~~~~ ㅋㅋ</p><p style="margin-top: 0px !important; margin-right: 0px; margin-bottom: 0px !important; margin-left: 0px; padding-top: 0px !important; padding-right: 0px; padding-bottom: 0px !important; padding-left: 0px; border: 0px; line-height: 15px; font-family: 돋움, Dotum, AppleGothic, sans-serif; color: rgb(138, 138, 138); "><br style="margin: 0px; padding: 0px; border: 0px; line-height: 1.3; "></p><p style="margin-top: 0px !important; margin-right: 0px; margin-bottom: 0px !important; margin-left: 0px; padding-top: 0px !important; padding-right: 0px; padding-bottom: 0px !important; padding-left: 0px; border: 0px; line-height: 15px; font-family: 돋움, Dotum, AppleGothic, sans-serif; color: rgb(138, 138, 138); ">여러분 지금 바로 다운 받으세요 !! ~ &nbsp;일단 안드로이드 마켓 우선 개시</p><p style="margin-top: 0px !important; margin-right: 0px; margin-bottom: 0px !important; margin-left: 0px; padding-top: 0px !important; padding-right: 0px; padding-bottom: 0px !important; padding-left: 0px; border: 0px; line-height: 15px; font-family: 돋움, Dotum, AppleGothic, sans-serif; color: rgb(138, 138, 138); "><br style="margin: 0px; padding: 0px; border: 0px; line-height: 1.3; "></p><p style="margin-top: 0px !important; margin-right: 0px; margin-bottom: 0px !important; margin-left: 0px; padding-top: 0px !important; padding-right: 0px; padding-bottom: 0px !important; padding-left: 0px; border: 0px; line-height: 15px; font-family: 돋움, Dotum, AppleGothic, sans-serif; color: rgb(138, 138, 138); ">단 듀얼 코어 2세대 Cpu 이상에서 원활하게 작동합니다. (디자이어 hd 이상)</p><p style="margin-top: 0px !important; margin-right: 0px; margin-bottom: 0px !important; margin-left: 0px; padding-top: 0px !important; padding-right: 0px; padding-bottom: 0px !important; padding-left: 0px; border: 0px; line-height: 15px; font-family: 돋움, Dotum, AppleGothic, sans-serif; color: rgb(138, 138, 138); "><br></p><p style="margin-top: 0px !important; margin-right: 0px; margin-bottom: 0px !important; margin-left: 0px; padding-top: 0px !important; padding-right: 0px; padding-bottom: 0px !important; padding-left: 0px; border: 0px; line-height: 15px; font-family: 돋움, Dotum, AppleGothic, sans-serif; color: rgb(138, 138, 138); text-align: center; clear: none; float: none; "><span class="imageblock" style="margin: 5px 0px; padding: 0px; border: 0px; line-height: 1.3; display: inline-block; width: 650px; "><img src="http://cfile23.uf.tistory.com/image/1102AC464FB5F6962D97A9" height="2900" width="650" style="margin: 0px; padding: 0px; border: 0px; line-height: 1.3; outline-style: none; cursor: pointer; "></span></p><p style="margin-top: 0px !important; margin-right: 0px; margin-bottom: 0px !important; margin-left: 0px; padding-top: 0px !important; padding-right: 0px; padding-bottom: 0px !important; padding-left: 0px; border: 0px; line-height: 15px; font-family: 돋움, Dotum, AppleGothic, sans-serif; color: rgb(138, 138, 138); "></p><p style="margin-top: 0px !important; margin-right: 0px; margin-bottom: 0px !important; margin-left: 0px; padding-top: 0px !important; padding-right: 0px; padding-bottom: 0px !important; padding-left: 0px; border: 0px; line-height: 15px; font-family: 돋움, Dotum, AppleGothic, sans-serif; color: rgb(138, 138, 138); "><br style="margin: 0px; padding: 0px; border: 0px; line-height: 1.3; "></p><p style="margin-top: 0px !important; margin-right: 0px; margin-bottom: 0px !important; margin-left: 0px; padding-top: 0px !important; padding-right: 0px; padding-bottom: 0px !important; padding-left: 0px; border: 0px; line-height: 15px; font-family: 돋움, Dotum, AppleGothic, sans-serif; color: rgb(138, 138, 138); "><br></p></div><div><br></div></div>]]></description>
<dc:creator>아낙</dc:creator>
<lastmod>Fri, 18 May 2012 17:57:08 +0900</lastmod>
<changefreq>daily</changefreq>
<priority>0.9</priority>
</item>
<item>
<title>맵뷰 띄우고 정확한 좌표값을 알아오려면??</title>
<link>http://www.androidside.com/bbs/board.php?bo_table=B49&amp;wr_id=75129</link>
<description><![CDATA[<DIV>맵뷰가 차지하는&nbsp;영역의 좌표값을 얻어와서 어플에서 가장 초기화면을 띄우는데 사용하고 있습니다.</DIV>
<DIV>&nbsp;</DIV>
<DIV>Projection proj = locMap.getProjection();<BR>&nbsp;&nbsp;topLeft = proj.fromPixels(0, 0);<BR>&nbsp;&nbsp;bottomRight = proj.fromPixels(locMap.getRight()-locMap.getLeft() - 1, locMap.getBottom()-locMap.getTop() - 1);&nbsp;</DIV>
<DIV>&nbsp;</DIV>
<DIV>이런식으로 맵뷰가 차지하는 영역의 위치영역을 좌표값으로 가져오는데요.</DIV>
<DIV>액티비티를 생성한다음에&nbsp;막바로 process를 실행하면 제대로된 좌표값이 넘어오지 않습니다.</DIV>
<DIV>일정시간 슬립을 준다음에 실행하면 제대로 좌표값이 넘어오고요...</DIV>
<DIV>&nbsp;</DIV>
<DIV>맵뷰를 로딩해와야 제대로된 좌표영역을 줄수 있기 때문인것으로 생각되는데요.</DIV>
<DIV>맵뷰에서 제대로된 좌표값을 반환할 수 있는 상태가 되었는지 어떻게 확인할 수 있나요?</DIV>]]></description>
<dc:creator>기다리는</dc:creator>
<lastmod>Fri, 18 May 2012 17:53:39 +0900</lastmod>
<changefreq>daily</changefreq>
<priority>0.9</priority>
</item>
<item>
<title>가입인사</title>
<link>http://www.androidside.com/bbs/board.php?bo_table=B01&amp;wr_id=5410</link>
<description><![CDATA[<DIV>가입했습니다</DIV>
<DIV>잘 부탁드립니다</DIV>]]></description>
<dc:creator>tripleK</dc:creator>
<lastmod>Fri, 18 May 2012 17:40:32 +0900</lastmod>
<changefreq>daily</changefreq>
<priority>0.9</priority>
</item>
<item>
<title>반가워요</title>
<link>http://www.androidside.com/bbs/board.php?bo_table=B01&amp;wr_id=5409</link>
<description><![CDATA[반갑습니다.]]></description>
<dc:creator>제이케이</dc:creator>
<lastmod>Fri, 18 May 2012 17:37:23 +0900</lastmod>
<changefreq>daily</changefreq>
<priority>0.9</priority>
</item>
</channel>
</rss>

