전체 글 224

[android] 안드로이드 스튜디오 카메라/갤러리 처리하기

버튼을 누르면 바로 알러트 다이얼로그 띄우는 함수만들기 // 알러트 다이얼로그 띄우는 함수 void showDialog(){ AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this); builder.setTitle(R.string.alert_title); builder.setItems(R.array.alert_photo, new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialogInterface, int i) { if (i == 0){ // todo : 사진찍는 코드 실행 camera(); } else if (i == 1){ ..

android studio 2023.02.13

[android] Intent ACTION_VIEW Uri.parse 외부 액티비티 띄우기

void selectContact(){ Intent intent = new Intent(Intent.ACTION_PICK); intent.setType(ContactsContract.Contacts.CONTENT_TYPE); startActivity(intent); } //웹브라우저 실행시키니는 인텐트 void openWebPage(String url){ Uri uri = Uri.parse(url); Intent intent = new Intent(Intent.ACTION_VIEW,uri); startActivity(intent); } // SMS 보내기위한 액티비티 띄우기 void composeSMS(String phone){ Uri uri = Uri.parse(phone); Intent intent ..

android studio 2023.02.07

[android] 이미지 처리를 위한 Glide 라이브러리 사용법

이미지는 데이터베이스에 저장하고 그 URL 주소로(안드로이드,웹브라우저 등 모두) 이미지 다운로드 받을때(네트워크 통해 데이터베이스 왔다갔다 할대)도 스레드로 처리(다운받는동안 다른 작업할수있게) 그 쓰레드 프로그래밍 라이브러리가 바로 glide gradle 에 가서 sync 맞춰주기 이미지뷰 연결해주고 Glide.with(MainActivity.this).load(경로).into(멤버변수);

android studio 2023.02.07

[android] 네트워크 연결을 위한 volley 라이브러리

multi processing(cpu가 여러개의 프로스세스,소트웨어를 동시에 실행) - 소프트웨어 앱 단위!(앱을 동시에 여러개 실행 가능) 이렇게 하면 cpu가 일을 나눠서 처리 Multi Threading 앱하나에서도 여러가지 일을 나눠서 처리 (자막띄우는 ui 재생버튼ui 소리가 나오는 ui 등등) UI Thread는 항상 동작하며 이게 main thread가 된다. Thread프로그램을 라이브러리로 처리 시켜준게 안드로이드에서 네트워크 통신 라이브러리 Volley Retrofit2 https://google.github.io/volley/ Volley overview Volley overview Volley is an HTTP library that makes networking for Andro..

android studio 2023.02.03

[android] TextWatcher 사용법

EDIT TEXT를 통해 입력한 값을 실시간으로 화면에서 처리해야할때 사용하는 코드 editText.addTextChangedListener(new TextWatcher() 입력하면 기본으로 3개의 메소드를 연결 시켜줌 beforeTextChanged 문자열이 처음부터 COUNT 길이만큼 AFTER 길이로 변경되려고 한다는 내용을 전달 after TextChanged 어느 문자열이 변경되었음을 알려주는 함수 onTextChanged 처음부터 count된 길이만큼 변경된걸 알려주는 함수 함수를 이용해 실시간으로 반응 하는걸 바로 textview에 표시해보면 입력 내용 실시간으로 반응

android studio 2023.02.03