Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
Tags
- 안드로이드
- 메소드
- 생성자
- 배열
- 오버로딩
- Android
- OGNL
- 국제화
- 예외처리
- Menu
- 메서드
- Spring
- 에러페이지
- Eclips
- oracle
- HTML
- layout
- 전화걸기
- paint
- JSP
- Java
- 어노테이션
- mybatis
- 이클립스
- 기본
- 클래스
- Graphic
- JavaScript
- struts2
- AWT
Archives
- Today
- Total
note
안드로이드 전화걸기 본문
전화걸기
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="전화번호" />
<EditText
android:id="@+id/number"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:cursorVisible="true"
android:editable="true"
android:singleLine="true" />
</LinearLayout>
<Button
android:id="@+id/dial"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="전화 걸기" />
</LinearLayout>
package kr.android.intent3;
import android.app.Activity;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
public class DialerDemo extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
final EditText number = (EditText)findViewById(R.id.number);
Button dial= (Button)findViewById(R.id.dial);
dial.setOnClickListener(new Button.OnClickListener(){
public void onClick(View v) {
String toDial ="tel:"+number.getText().toString();
startActivity(new Intent(Intent.ACTION_DIAL,Uri.parse(toDial)));
}
});
}
}
'Android > 기본' 카테고리의 다른 글
| Notify 알림 메세지 (0) | 2012.01.18 |
|---|---|
| 전화걸기2 컨텍트 프로바이더contact (0) | 2012.01.17 |
| 구글맵 사용하여 위도 경도값 직접입력해서 보기 (0) | 2012.01.17 |
| Intent 사용하여 화면 이동 (0) | 2012.01.17 |
| 구글맵에 마커 표시하기(위치 지정) (2) | 2012.01.17 |