프로그램/모바일

삼성 바다 SDK 애뮬레이터 빌드(BADA)

와이즈캣 2010. 5. 13. 20:51





음...
이거 gcc 컴팔러를 사용...
이클립스... ㅡ_ㅡ;
요즘 왜 모든게 귀찮지...
설치하고 빌드한 후 실행하면 됨~
자세한 건 담에 시간 날 때....

아래는 소스 수정 내용...
---------------------------------------------------------------------------------------
void
FirstProject::OnForeground(void)
{
  // TODO:
  // Start or resume drawing when the application is moved to the foreground.

  Canvas* pCanvas = GetAppFrame()->GetCanvasN();

  Font font;
  font.Construct(FONT_STYLE_PLAIN | FONT_STYLE_BOLD, 50);
  pCanvas->SetFont(font);
  pCanvas->DrawText(Point(3030), "Twitter : OZSystem");
  pCanvas->DrawText(Point(3080), "Sue Hong Jue");
  pCanvas->Show();

  delete pCanvas;
}