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
- Eclips
- JSP
- 예외처리
- struts2
- 어노테이션
- 오버로딩
- OGNL
- oracle
- Android
- 국제화
- 생성자
- Graphic
- 메서드
- 이클립스
- 메소드
- layout
- mybatis
- AWT
- Spring
- 배열
- 에러페이지
- 안드로이드
- 기본
- 클래스
- paint
- Menu
- 전화걸기
- Java
- JavaScript
- HTML
Archives
- Today
- Total
note
전화걸기2 컨텍트 프로바이더contact 본문
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" > <Button android:id="@+id/pick" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_weight="1" android:text="선택" /> <Button android:id="@+id/view" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_weight="1" android:text="보기" /> </LinearLayout>
package kr.android.intent4;
//컨택트 프로바이더 사용
import android.app.Activity;
import android.os.Bundle;
import android.content.Intent;
import android.net.Uri;
import android.view.View;
import android.widget.Button;
public class ContactDemo extends Activity {
Button viewButton = null;
Uri contact = null;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Button btn= (Button)findViewById(R.id.pick);
btn.setOnClickListener(new View.OnClickListener() {
public void onClick(View view) {
Intent i = new Intent(Intent.ACTION_PICK,
Uri.parse("content://contacts/people"));
startActivity(i);
}
});
viewButton = (Button)findViewById(R.id.view);
viewButton.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
startActivity(new Intent(Intent.ACTION_VIEW,
Uri.parse("content://contacts/people/1")));
}
});
}
}
'Android > 기본' 카테고리의 다른 글
| SMSReceiver (BroadcastReceiver사용) (0) | 2012.01.18 |
|---|---|
| Notify 알림 메세지 (0) | 2012.01.18 |
| 안드로이드 전화걸기 (0) | 2012.01.17 |
| 구글맵 사용하여 위도 경도값 직접입력해서 보기 (0) | 2012.01.17 |
| Intent 사용하여 화면 이동 (0) | 2012.01.17 |