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
- Graphic
- 배열
- Menu
- mybatis
- paint
- 생성자
- Spring
- 에러페이지
- OGNL
- Eclips
- 기본
- 예외처리
- Java
- 전화걸기
- layout
- HTML
- 메서드
- 국제화
- oracle
- 메소드
- JavaScript
- AWT
- Android
- 이클립스
- 클래스
- JSP
- 오버로딩
- 어노테이션
- struts2
- 안드로이드
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 |