How do you get the number back from an implicit call to view the contacts list
.java file
Code:
package com.grimx.MakeCall;
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;
import android.widget.Toast;
public class MakeCall extends Activity implements View.OnClickListener{
private static final int CONTACT_ACTIVITY = 100;
EditText editText;
Button callBtn;
Button contactsBtn;
Button closeBtn;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
editText = (EditText)findViewById(R.id.editText);
callBtn = (Button)findViewById(R.id.callBtn);
callBtn.setOnClickListener(this);
contactsBtn = (Button)findViewById(R.id.contactsBtn);
contactsBtn.setOnClickListener(this);
closeBtn = (Button)findViewById(R.id.closeBtn);
closeBtn.setOnClickListener(this);
}
@Override
public void onClick(View v) {
if(v.getId() == R.id.callBtn) {
String phn_number = editText.getText().toString();
if(phn_number.equals("")) {
Toast.makeText(MakeCall.this, "Please Enter A Phone Number", Toast.LENGTH_LONG).show();
}
else
{
Intent call_intent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:" + phn_number));
startActivity(call_intent);
}
}
else if(v.getId() == R.id.contactsBtn) {
Uri uri = Uri.parse("content://contacts/people");
Intent contacts_intent = new Intent(Intent.ACTION_PICK, uri);
startActivityForResult(contacts_intent, CONTACT_ACTIVITY);
}
else if(v.getId() == R.id.closeBtn) {
Toast.makeText(MakeCall.this, "Exiting MakeCall", Toast.LENGTH_LONG).show();
finish();
}
}
public void onActivityResult(int requestCode, int resultCode, Intent data){
super.onActivityResult(requestCode, resultCode, data);
switch(requestCode){
case(CONTACT_ACTIVITY): {
if(resultCode == Activity.RESULT_OK) {
//want to get the number an put it in the editText
//editText.setText( );
}
break;
}
}
}
}
my layout file
Code:
<?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"
>
<EditText
android:id="@+id/editText"
android:phoneNumber="true"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
<Button
android:id="@+id/callBtn"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Call"
/>
<Button
android:id="@+id/contactsBtn"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Show Contacts"
/>
<Button
android:id="@+id/closeBtn"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Close"
/>
</LinearLayout>
AndroidManifest.xml
Code:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.grimx.MakeCall"
android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".MakeCall"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-sdk android:minSdkVersion="3" />
<uses-permission android:name="android.permission.CALL_PHONE" />
<uses-permission android:name="android.permission.CALL_PRIVILEGED" />
</manifest>