-1
  • 我用一个按钮和一个编辑文本创建了一个简单的 xml。
  • 单击按钮后,我可以进入 CallLog 页面。
  • 在我单击呼叫日志中的任何数字后,是否可以将所选数字显示到我的 EditText 中?

XML:

<?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:baselineAligned="true"
android:orientation="horizontal" >

<EditText
android:id="@+id/edittext"
android:layout_width="172dp"
android:layout_height="wrap_content"
android:layout_weight="0.29"
android:hint="CONTACT NUMBER" >

<requestFocus />
</EditText>

<Button
android:id="@+id/btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="CALL LOG" />

</LinearLayout>

编码:

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;

public class CallLogRetrieveActivity extends Activity {

Button myCallLogBtn;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

myCallLogBtn=(Button)findViewById(R.id.btn);

myCallLogBtn.setOnClickListener(new Button.OnClickListener(){

    public void onClick(View v) {

        Intent myIntent=new Intent();
        myIntent.setAction(Intent.ACTION_CALL_BUTTON);
        startActivity(myIntent);

    }});
}
}
4

1 回答 1

0

您应该首先开始阅读手册和教程,而不是在这里询问您在完成 RTFM 后就会知道的基本知识。所以“是的,你可以”。但是现在请做你的功课,通过阅读“android通话记录教程”谷歌资料。这里没有人会为你这样做。

于 2012-07-17T15:36:51.710 回答