0

嗨,我制作了一个 android 应用程序,其中我将所有地址簿联系人加载到列表中,并在其上方放置了一个编辑文本,如果我输入任何字母,那么它应该给我列表中与该字母相关的所有值,我尝试过下面,但它不工作

我的代码如下:

AutocompliteMain.java

package com.example.autocomplite;

import java.util.ArrayList;
import android.app.Activity;
import android.content.ContentResolver;
import android.content.Intent;
import android.database.Cursor;
import android.net.Uri;
import android.os.Bundle;
import android.provider.ContactsContract;
import android.provider.ContactsContract.Contacts;
import android.util.Log;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.inputmethod.InputMethodManager;
import android.widget.AdapterView;
import android.widget.ArrayAdapter;
import android.widget.AutoCompleteTextView;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;
import android.widget.AdapterView.OnItemClickListener;
import android.widget.AdapterView.OnItemSelectedListener;

public class AutocompleteMain extends Activity implements OnItemClickListener,
        OnItemSelectedListener {

    // Initialize variables

    int PICK_CONTACT = 1200;
    AutoCompleteTextView textView = null;
    private ArrayAdapter<String> adapter;

    // Store contacts values in these arraylist
    public static ArrayList<String> phoneValueArr = new ArrayList<String>();
    public static ArrayList<String> nameValueArr = new ArrayList<String>();

    EditText toNumber = null;
    String toNumberValue = "";

    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle bundle) {
        super.onCreate(bundle);

        setContentView(R.layout.autocomplete_main);

        final Button Send = (Button) findViewById(R.id.Send);

        // Initialize AutoCompleteTextView values

        textView = (AutoCompleteTextView) findViewById(R.id.toNumber);

        // Create adapter
        adapter = new ArrayAdapter<String>(this,
                android.R.layout.simple_dropdown_item_1line,
                new ArrayList<String>());
        textView.setThreshold(1);

        // Set adapter to AutoCompleteTextView
        textView.setAdapter(adapter);
        textView.setOnItemClickListener(this);

        // Read contact data and add data to ArrayAdapter
        // ArrayAdapter used by AutoCompleteTextView

        readContactData();

        /********** Button Click pass textView object ***********/
        Send.setOnClickListener(BtnAction(textView));

    }

    private OnClickListener BtnAction(final AutoCompleteTextView toNumber) {
        return new OnClickListener() {

            public void onClick(View v) {

                String NameSel = "";
                NameSel = toNumber.getText().toString();

                final String ToNumber = toNumberValue;

                if (ToNumber.length() == 0) {
                    Toast.makeText(getBaseContext(),
                            "Please fill phone number", Toast.LENGTH_SHORT)
                            .show();
                } else {

                    /*
                     * Toast.makeText(getBaseContext(),
                     * NameSel+" : "+toNumberValue, Toast.LENGTH_LONG).show();
                     */
                }

            }
        };
    }

    // Read phone contact name and phone numbers

    private void readContactData() {

        try {

            /*********** Reading Contacts Name And Number **********/

            String phoneNumber = "";
            ContentResolver cr = getBaseContext().getContentResolver();

            // Query to get contact name

            Cursor cur = cr.query(ContactsContract.Contacts.CONTENT_URI, null,
                    null, null, null);

            // If data data found in contacts
            if (cur.getCount() > 0) {

                Log.i("AutocompleteContacts", "Reading   contacts........");

                int k = 0;
                String name = "";

                while (cur.moveToNext()) {

                    String id = cur.getString(cur
                            .getColumnIndex(ContactsContract.Contacts._ID));
                    name = cur
                            .getString(cur
                                    .getColumnIndex(ContactsContract.Contacts.DISPLAY_NAME));

                    // Check contact have phone number
                    if (Integer
                            .parseInt(cur.getString(cur
                                    .getColumnIndex(ContactsContract.Contacts.HAS_PHONE_NUMBER))) > 0) {

                        // Create query to get phone number by contact id
                        Cursor pCur = cr
                                .query(ContactsContract.CommonDataKinds.Phone.CONTENT_URI,
                                        null,
                                        ContactsContract.CommonDataKinds.Phone.CONTACT_ID
                                                + " = ?", new String[] { id },
                                        null);
                        int j = 0;

                        while (pCur.moveToNext()) {
                            // Sometimes get multiple data
                            if (j == 0) {
                                // Get Phone number
                                phoneNumber = ""
                                        + pCur.getString(pCur
                                                .getColumnIndex(ContactsContract.CommonDataKinds.Phone.NUMBER));

                                // Add contacts names to adapter
                                adapter.add(name);

                                // Add ArrayList names to adapter
                                phoneValueArr.add(phoneNumber.toString());
                                nameValueArr.add(name.toString());

                                j++;
                                k++;
                            }
                        } // End while loop
                        pCur.close();
                    } // End if

                } // End while loop

            } // End Cursor value check
            cur.close();

        } catch (Exception e) {
            Log.i("AutocompleteContacts", "Exception : " + e);
        }

    }

    @Override
    public void onItemSelected(AdapterView<?> arg0, View arg1, int position,
            long arg3) {
        // TODO Auto-generated method stub
        Log.d("AutocompleteContacts", "onItemSelected() position " + position);

    }

    @Override
    public void onNothingSelected(AdapterView<?> arg0) {
        // TODO Auto-generated method stub

        InputMethodManager imm = (InputMethodManager) getSystemService(INPUT_METHOD_SERVICE);
        imm.hideSoftInputFromWindow(getCurrentFocus().getWindowToken(), 0);

    }

    @Override
    public void onItemClick(AdapterView<?> arg0, View arg1, int arg2, long arg3) {
        // TODO Auto-generated method stub

        // Get Array index value for selected name
        int i = nameValueArr.indexOf("" + arg0.getItemAtPosition(arg2));

        // If name exist in name ArrayList
        if (i >= 0) {

            // Get Phone Number
            toNumberValue = phoneValueArr.get(i);

            InputMethodManager imm = (InputMethodManager) getSystemService(INPUT_METHOD_SERVICE);
            imm.hideSoftInputFromWindow(getCurrentFocus().getWindowToken(), 0);

            // Show Alert

            Intent it = new Intent(Intent.ACTION_PICK, Contacts.CONTENT_URI);

            startActivityForResult(it, PICK_CONTACT);

            /*
             * Toast.makeText(getBaseContext(),
             * "Position:"+arg2+" Name:"+arg0.getItemAtPosition
             * (arg2)+" Number:"+toNumberValue, Toast.LENGTH_LONG).show();
             */
            Log.d("AutocompleteContacts",
                    "Position:" + arg2 + " Name:"
                            + arg0.getItemAtPosition(arg2) + " Number:"
                            + toNumberValue);

        }

    }

    protected void onResume() {
        super.onResume();
    }

    protected void onDestroy() {
        super.onDestroy();
    }

}

autocomplitemain.xml

<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
     >

    <TableRow>
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textSize="20px"
            android:text="Write character"
            android:layout_marginLeft="10dip"></TextView>
    </TableRow>      
    <TableRow>

        <AutoCompleteTextView
            android:id="@+id/toNumber"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_marginLeft="10dip"
            android:layout_marginRight="10dip"
            android:textColorHighlight="#000000"
            android:textColorLink="#000000"
            android:textStyle="bold"
            android:width="250dip" />

    </TableRow>
    <TableRow android:layout_marginTop="2dip">

        <Button android:id="@+id/Send"
                android:clickable="true"
                android:width="86dip"
                android:text="Show Selected Value"
                android:layout_gravity="center_vertical|center_horizontal"/> 
     </TableRow>

</TableLayout>
4

1 回答 1

0

使用 AutoCompleteTextView 而不是 EditText。因此,一旦您在其中输入任何字符串,它就会自动提供具有匹配条目的数据列表。

或者你可以尝试使用 TextChangeListener for EditText

于 2013-10-24T13:44:04.700 回答