"매일매일 체중계" 어플리케이션 소스 공유 합니다.





안드로이드로 만든 체중기록용 앱 소스 공유 합니다.

필요하신분 받아가세요~ 받아가실땐 댓글 정도 부탁 합니다.


------------------------------------------------------------------------------------------------------


[앱다운로드]

https://play.google.com/store/apps/details?id=com.brs.dailyweightmonitor



[소스]



Daily Weight Monitor

  1. Daily weight monitor application for android
  2. Simple application for record your weight.

Feature

  1. Custom ListView
  2. Custom Dialog
  3. Preference (with PreferenceFragment)
  4. SQLite
  5. Handler (with WeakReference)
  6. Check latest version (with Jericho parser)
  7. Use Admob

Used library

Jericho parser 3.3

Application Download


유니티에서 해상도 고정하는 방법.


[Android]


(스크립트가 시작시 -  Start() 에서)

Screen.SetResolution(1280, 720, true); // 1280 x 720 으로 조정

Screen.SetResolution(Screen.width, (Screen.width / 2) * 3 ); // 2:3 비율로 개발시

Screen.SetResolution(Screen.width, Screen.width * 16 / 9,  true); // 16:9 로 개발시



지정해 주면 고정비로 빌드가 되어 단말에서 지정 해상도로 출력이 된다.

+ Recent posts