목록분류 전체보기 (238)
Nuke Olaf - Log Store
내 앱의 구글 맵이 보이는 부분에서 장소를 검색할 수 있는 검색 창을 띄우고 싶다. 구글 맵에서 제공하는 AutoCompleteFragment 를 사용하거나, 직접 EditText 를 이용해서 검색창을 만들 수 있다고 한다. AutoCompleteFragment 는 지도에서 검색할때 자동완성을 도와주는 기능을 하는 fragment 인것 같다. 그런데 찾아보니, AutoCompleteFragment 는 deprecated 되었다고 한다. 왜 deprecated 되었는지는 아직 찾아보지 못했음. 아무튼 그래서 SupportAutocompleteFragment 를 사용하면 된다고 함 https://developers.google.com/places/android-sdk/autocomplete 아무튼 나는 Ed..
@Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_shop); // 구글 맵 프래그먼트를 띄운다 // SupprotMapFragment 를 통해 레이아웃에 만든 fragment 의 ID 를 참조하고 // 구글맵을 호출한다. SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager() .findFragmentById(R.id.shop_map); // getMapAsync 는 무조건 main Thread 에서 호출되어야한다 mapFragme..
1. API 의 사전적인 의미 "Application Programming Interface" : "응용 프로그래밍 인페이스" 라는 뜻이다. 위키피디아에서 말하는 API https://en.wikipedia.org/wiki/Application_programming_interface " An application programming interface (API) is an interface or communication protocol between different parts of a computer program intended to simplify the implementation and maintenance of software. " " An API may be for a web-based sys..
1. Android 에서의 google map API 란? Android 용 Maps SDK 를 사용하면 Google Map 데이터를 기반의 지도를 어플리케이션에 추가할 수 있다. Google Maps API 에는 크게 두가지 기능이 있다고 볼 수 있다. (1) 사용자를 위한 지도가 보여지게 하는 것 (2) 사용자 위치의 위도/경도 데이터를 반환하는것, 또는 주소에 대한 데이터를 반환하는 것 구글은 우리 모두 알다시피 짱 큰 회사이다. 이 회사에서 축적한 지도 관련 데이터는 엄청나게 많을 것이다. 우리는 구글이 만들어 놓은 지도 데이터, 그리고 지도를 앱에 띄우게 하고, 사용자의 위치 데이터를 반환하는 코드를 필요한 상황에 맞게 가져다 쓰면 되는것이다. 그러한 코드들과, 코드들을 사용할 수 있게 연결해주..
https://stackoverflow.com/questions/41442538/get-the-latest-image-from-external-storage-in-android/41442632 Get the latest image from external storage in android I want to load the latest image from the external storage in Android. Do you have any ideas how to get the name of the latest image? Currently, I load a certain picture from the gallery t... stackoverflow.com String[] projection = new S..
https://stackoverflow.com/questions/9049143/android-share-intent-for-a-bitmap-is-it-possible-not-to-save-it-prior-sharing?rq=1 Android Share Intent for a Bitmap - is it possible not to save it prior sharing? I try to export a bitmap from my app using share intent without saving a file for a temporal location. All the examples I found are two-step 1) save to SD Card and create Uri for that file 2..
https://developer.android.com/reference/android/content/Intent ACTION_PICK 과 ACTION_GET_CONTENT 가 무엇이 다른지 생각해보기 https://developer.android.com/reference/android/content/Intent.html#ACTION_GET_CONTENT https://itrainbowm.tistory.com/27 Button클릭 시 갤러리에서 이미지 가져오기 Button클릭 시 image/* 파일들 선택할 수 있는 창 열기 OnCreate 부문에 Button onClickListener을 추가 하고, Intent를 활용하여 전체적인 파일을 가져올 수 있게 합니다. protected void onCreat..
카메라앱의 앨범 액티비티 (갤러리 액티비티)를 만들기 위해 라이브러리를 사용해야 했다. 키워드는 image picker. 안드로이드 용 api 라고 검색하면 나오는 image picker https://developers.google.com/android/reference/com/google/android/gms/cast/framework/media/ImagePicker 앨범 액티비티를 만들기 위해 어떤 라이브러리를 선택할지 고민해야 했다. 1. Android Arsenal 이라는 사이트는 내가 원하는 라이브러리를 찾기 쉽도록 도와준다 Android Arsenal 링크 : https://android-arsenal.com/free https://www.androidpolice.com/2014/05/20/..