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