Android Application(2)
-
안드로이드 개발자 등록
먼저 안드로이드 개발장 등록하기 위해서 구글 아이디가 필요하다.하단에 있는 주소로 개발자 등록을 해보자. https://play.google.com/apps/publish/ 주소로 이동하고 구글 아이디로 로그인해준다. 그럼 아래와같이 Google Play 개발자 배포 계약에 있는 동의(체크)를 해주시고 결제페이지로 이동을 눌러준다. 여기서 중요한거 해외결재를 할 수 있는 신용카드 및 체크카드가 필요하다.개발자등록을 할때 25달러 비용이 소모된다. 도둑넘들....처음 결제하기전 페이팔처럼 1달러가 테스트로 결제가된다. 머 당황하지말자 결제 테스트라고 보면된다.정확히 다 입력하면 개발자 등록은 완료 그럼 아래와같이 화면이 나올것이다. 인터페이스가 간혹 바뀌나 별차이는 없다. 끝~
2013.10.22 -
안드로이드 다이얼로그
[안드로이드,Android]다이어로그,AlerDialog (버튼3개)-확인,중립,취소 package com.example.teste22; import android.app.Activity; import android.app.AlertDialog; import android.content.DialogInterface; import android.content.DialogInterface.OnCancelListener; import android.content.DialogInterface.OnClickListener; import android.os.Bundle; import android.widget.Toast; public class MainActivity extends Activity { @Overri..
2013.05.30