0

アイテム「call shop」を押したときにアプリで電話をかけたいのですが、

ここに私のコードがあります:

@Override
protected void onListItemClick(ListView l, View v, int position, long id) {
    // TODO Auto-generated method stub
    final Entity_BikeShopRepair toko = adapterShop.getItem(position);

    CharSequence[] items = { "View on Map", "Call Shop" };

    AlertDialog.Builder builder = new AlertDialog.Builder(
            Tab_Shop_Repair_ListView_Activity.this);
    builder.setTitle(toko.getShop_Name());
    builder.setItems(items, new DialogInterface.OnClickListener() {
        public void onClick(DialogInterface dialog, int item) {
            switch (item) {
            case 0:
                Toast.makeText(Tab_Shop_Repair_ListView_Activity.this,
                        toko.getShop_Name(), Toast.LENGTH_LONG).show();
                break;
            case 1:
                arrayList(Tab_Shop_Repair_ListView_Activity.this,
                        toko.getPhone_Number());
                Intent intent = new Intent(Intent.ACTION_CALL, Uri
                        .parse(arrayList.toString()));
                startActivity(intent);

                break;
            case 2:
                break;
            }
        }
    });
    AlertDialog alert = builder.create();
    alert.show();
}

しかし、コードは「メソッドarrayList(Tab_Shop_Repair_ListView_Activity、String)は、タイプnew DialogInterface.OnClickListener(){}に対して未定義です」というエラーです

私はそれを修正する方法を知りません, 誰かが私を助けることができます? どうもありがとうございます。

4

2 に答える 2

2

まず、マニフェストにアクセス許可を追加する必要があります。

<uses-permission android:name="android.permission.CALL_PHONE" />

次に、アクティビティで次のコードを使用して呼び出しを行います。

Intent callIntent = new Intent(Intent.ACTION_VIEW);
callIntent.setData(Uri.parse("tel:" + ph_no));
startActivity(callIntent);

Intent.ACTION_CALLここでは、 をより適切に使用する代わりにIntent.ACTION_VIEW、ユーザーが通話を確認する前に番号を変更できるようにします (0前に追加するなど)。

また、同じアクティビティに次のコードがあります。

PhoneCallListener phoneListener = new PhoneCallListener();
TelephonyManager telephonyManager = (TelephonyManager) this.getSystemService(Context.TELEPHONY_SERVICE);
telephonyManager.listen(phoneListener,PhoneStateListener.LISTEN_CALL_STATE);

そしてこのクラス:

private class PhoneCallListener extends PhoneStateListener {

    private boolean isPhoneCalling = false;

    String LOG_TAG = "LOGGING 123";

    @Override
    public void onCallStateChanged(int state, String incomingNumber) {

        if (TelephonyManager.CALL_STATE_RINGING == state) {
            // phone ringing
            Log.i(LOG_TAG, "RINGING, number: " + incomingNumber);
        }

        if (TelephonyManager.CALL_STATE_OFFHOOK == state) {
            // active
            Log.i(LOG_TAG, "OFFHOOK");

            isPhoneCalling = true;
        }

        if (TelephonyManager.CALL_STATE_IDLE == state) {
            // run when class initial and phone call ended,
            // need detect flag from CALL_STATE_OFFHOOK
            Log.i(LOG_TAG, "IDLE");

            if (isPhoneCalling) {

                Log.i(LOG_TAG, "restart app");

                // restart app
                Intent i = getBaseContext().getPackageManager()
                        .getLaunchIntentForPackage(
                                getBaseContext().getPackageName());
                i.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
                startActivity(i);

                isPhoneCalling = false;
            }

        }
    }
}

通話が終了したりキャンセルされたりしたら、アプリケーションに戻ります。

于 2012-09-14T09:07:51.140 に答える
1

Try this code it will work

String number = "tel:" + toko.getPhone_Number().toString();
    Intent callIntent = new Intent(Intent.ACTION_CALL, Uri.parse(number)); 
    startActivity(callIntent);

Also Add Permission in manifest...

<uses-permission android:name="android.permission.CALL_PHONE" />
于 2012-09-14T08:31:54.113 に答える