반응형
주소와 위도를 바꿔주는 코딩
activity_main.xml 코드
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
<?xml version="1.0" encoding="utf-8"?>
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="16dp"
tools:context=".MainActivity">
<EditText
android:id="@+id/et_address"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="input address"
android:inputType="text"/>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="search"
android:onClick="clickBtn"/>
<EditText
android:id="@+id/et_lat"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:hint="input latitude"
android:inputType="numberDecimal"
android:layout_marginTop="24sp"/>
<EditText
android:id="@+id/et_lng"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:hint="input longitude"
android:inputType="numberDecimal"/>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="search"
android:onClick="clickBtn2"/>
</LinearLayout>
|
cs |
MainActivity.java 코드
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
package com.lcw.ex67locationgeocoding;
import android.app.AlertDialog;
import android.location.Address;
import android.location.Geocoder;
import android.os.Bundle;
import android.view.View;
import android.widget.EditText;
import android.widget.TextView;
import android.widget.Toast;
import java.io.IOException;
import java.util.List;
import java.util.Locale;
public class MainActivity extends AppCompatActivity {
EditText etAddress;
EditText etLat, etLng;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
etAddress=findViewById(R.id.et_address);
etLat=findViewById(R.id.et_lat);
etLng=findViewById(R.id.et_lng);
}
public void clickBtn(View view) {
// 주소 -> 좌표 (지오코딩)
String addr= etAddress.getText().toString();
//지오 코딩 작업을 수행하는 객체 생성
//지오코더에게 지오코딩작업 요청
try {
List<Address> addresses=geocoder.getFromLocationName(addr,3); //최대 3개까지 받는데, 0~3개까지 있으면 받는다.
StringBuffer buffer= new StringBuffer();
for(Address t : addresses){
}
//다이얼로그로 좌표들 보여주기
AlertDialog.Builder builder= new AlertDialog.Builder(this);
builder.setMessage(buffer.toString()).setPositiveButton("OK",null).create().show();
} catch (IOException e) {
Toast.makeText(this, "검색 실패", Toast.LENGTH_SHORT).show();
}
}
public void clickBtn2(View view) {
// 좌표 -> 주소 (역지오코딩)
double lat=Double.parseDouble(etLat.getText().toString());
double lng=Double.parseDouble(etLng.getText().toString());
try {
List<Address> addresses=geocoder.getFromLocation(lat,lng,3);
StringBuffer buffer= new StringBuffer();
for(Address t : addresses){
buffer.append("---------------\n");
}
//다이얼로그로 결과 보여주기
new AlertDialog.Builder(this).setMessage(buffer.toString()).setPositiveButton("OK",null).create().show();
} catch (IOException e) {
Toast.makeText(this, "검색 실패", Toast.LENGTH_SHORT).show();
}
}
}
|
위 코드를 작성하면 아래와 같이 실행될 것이다.
이제 위도, 경도 정보로 지도에 위치를 표시하자.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
<?xml version="1.0" encoding="utf-8"?>
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="16dp"
tools:context=".MainActivity">
<EditText
android:id="@+id/et_address"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="input address"
android:inputType="text"/>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="search"
android:onClick="clickBtn"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="show map"
android:onClick="clickShowMap"/>
<EditText
android:id="@+id/et_lat"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:hint="input latitude"
android:inputType="numberDecimal"
android:layout_marginTop="24sp"/>
<EditText
android:id="@+id/et_lng"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:hint="input longitude"
android:inputType="numberDecimal"/>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="search"
android:onClick="clickBtn2"/>
</LinearLayout>
|
반응형
'안드로이드 웹앱 콘테츠 개발자 양성(국비지원) > Android 기능' 카테고리의 다른 글
Android Studio(기능) Location / Map [Google Map 사용 예제] (0) | 2019.10.11 |
---|---|
Android Studio(기능) Location / Map 각 사이트 이용 방법 (0) | 2019.10.11 |
Android Studio(기능) LBS 2(Location Test) (0) | 2019.10.10 |
Android Studio(기능) LBS(Location Test) (0) | 2019.10.10 |
Android Studio(기능) Service 2 (Background 작업) 음악재생 (0) | 2019.10.08 |
댓글