728x90 반응형 SMALL dev/android17 안드로이드 현재시간 구하기 안드로이드 현재시간 구하기 Step1. 현재 시간 가져오기. Step2. Date 생성하기 Step3. 가져오고 싶은 형식으로 가져오기 long now = System.currentTimeMillis(); Date date = new Date(now); SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");String getTime = sdf.format(date); 2019. 1. 1. 안드로이드 전화걸기 안드로이드 전화걸기 안드로이드 전화 다이얼로 넘기기 Intent intent = new Intent(Intent.ACTION_DIAL, Uri.parse("tel:010-1111-2222")); startActivity(intent); 안드로이드 바로 전화 걸기 Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:010-1111-2222")); startActivity(intent); 2019. 1. 1. 안드로이드 DP를 PIX로 변경 메소드 public static int getDpToPix(Context con, double dp) { float density = 0.0f; density = con.getResources().getDisplayMetrics().density; return (int) (dp * density + 0.5);} 2018. 12. 21. 안드로이드 공유하기 안드로이드 공유하기 Intent msg = new Intent(Intent.ACTION_SEND); msg.setType("text/plain"); msg.addCategory(Intent.CATEGORY_DEFAULT); msg.putExtra(Intent.EXTRA_TEXT, "공유내용"); msg.putExtra(Intent.EXTRA_TITLE, "친구에게 공유기하기"); startActivity(Intent.createChooser(msg, "공유")); 2018. 12. 20. 이전 1 2 3 4 5 다음 728x90 반응형 LIST