0

我正在尝试制作一个像 Android 4.1 中内置的消息应用程序一样的撰写新消息屏幕

  1. 我注意到当一个人选择一个联系人时,在 AutoCompleteTextView 中插入了一个按钮之类的东西。这怎么可能?请帮忙,因为我什至不知道给它一个起始代码。PS:我很想在创建新帖子时在 StackOverflow 的“标签”条目中实现类似的东西。IE 单词(匹配的联系人)被按钮替换,右边缘有一个小 X 以删除它们!:-)

  2. 您如何创建加载速度如此之快的适配器?一个想法是缓存所有联系人的列表(姓名、电话号码、电话号码类型)。还有其他想法吗?(例如,如果我们可以使用 2 个字符的初始搜索字符串查询内容提供程序,这将大大减少自动完成结果的数量,从而减少加载适配器所需的时间。但是当然,这需要设置键入每个字符时自动完成文本视图的适配器。我的疑问是,是否可以查询 ContactsContract 以获取以几个给定字母开头的搜索结果,而不仅仅是使用光标从一开始就扫描整个数据库?)

  3. autocompletetextview 不识别空格,并且不给出任何结果。我已经读过这个 但无法实现它,有没有人有任何工作代码?

4

2 回答 2

0

I built TokenAutoComplete to solve this issue as there did not appear to be a simple way to do this. Here's a basic example solving points 1 and 3:

public class ContactsCompletionView extends TokenCompleteTextView {
    public ContactsCompletionView(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    @Override
    protected View getViewForObject(Object object) {
        Person p = (Person)object;

        LayoutInflater l = (LayoutInflater)getContext().getSystemService(Activity.LAYOUT_INFLATER_SERVICE);
        LinearLayout view = (LinearLayout)l.inflate(R.layout.contact_token, (ViewGroup)ContactsCompletionView.this.getParent(), false);
        ((TextView)view.findViewById(R.id.name)).setText(p.getName());

        return view;
    }

    @Override
    protected Object defaultObject(String completionText) {
        //Stupid simple example of guessing if we have an email or not
        int index = completionText.indexOf('@');
        if (index == -1) {
            return new Person(completionText, completionText.replace(" ", "") + "@example.com");
        } else {
            return new Person(completionText.substring(0, index), completionText);
        }
    }
}

Layout code for contact_token (you'll need to find your own x drawable)

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_height="wrap_content"
    android:layout_width="wrap_content"
    android:background="@drawable/token_background">
    <TextView android:id="@+id/name"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textColor="@android:color/white"
        android:textSize="14sp"
        android:text="Test Me"
        android:padding="2dp" />

    <ImageView
        android:layout_height="10dp"
        android:layout_width="10dp"
        android:src="@drawable/x"
        android:layout_gravity="center_vertical"
        android:layout_marginLeft="3dp"
        android:layout_marginRight="5dp" />
</LinearLayout>

Token backgound drawable

<shape xmlns:android="http://schemas.android.com/apk/res/android" >
    <solid android:color="#ffafafaf" />
    <corners
        android:topLeftRadius="5dp"
        android:bottomLeftRadius="5dp"
        android:topRightRadius="5dp"
        android:bottomRightRadius="5dp" />
</shape>

Person object code

public class Person implements Serializable {
    private String name;
    private String email;

    public Person(String n, String e) { name = n; email = e; }

    public String getName() { return name; }
    public String getEmail() { return email; }

    @Override
    public String toString() { return name; }
}

Sample activity

public class TokenActivity extends Activity {
    ContactsCompletionView completionView;
    Person[] people;
    ArrayAdapter<Person> adapter;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        people = new Person[]{
                new Person("Marshall Weir", "marshall@example.com"),
                new Person("Margaret Smith", "margaret@example.com"),
                new Person("Max Jordan", "max@example.com"),
                new Person("Meg Peterson", "meg@example.com"),
                new Person("Amanda Johnson", "amanda@example.com"),
                new Person("Terry Anderson", "terry@example.com")
        };

        adapter = new ArrayAdapter<Person>(this, android.R.layout.simple_list_item_1, people);

        completionView = (ContactsCompletionView)findViewById(R.id.searchView);
        completionView.setAdapter(adapter);
        completionView.setTokenClickStyle(TokenCompleteTextView.TokenClickStyle.Delete);
    }
}

Layout code

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <com.tokenautocomplete.ContactsCompletionView
        android:id="@+id/searchView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

</RelativeLayout>

Here's what it looks like:

enter image description here

于 2013-10-22T23:21:45.190 回答
0

您可以在 Android GitHub 上免费查看内置消息应用程序的源代码。您需要的只是耐心阅读和理解代码。我提醒您,并非所有代码都在公共 SDK 中,因此使用时要小心。

1、带有联系人标签RecipientEditTextView的 MultiAutoComplete 。RecipientsEditor是类扩展,RecipientEditTextView他们在应用程序更新中使用它:这是撰写屏幕的布局。第 37 行是您想要的 autocompletetextview。下面是它的布局。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal">

<com.android.mms.ui.RecipientsEditor
    android:id="@+id/recipients_editor"
    android:hint="@string/to_hint"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:inputType="textFilter"
    android:layout_weight="1"
    android:textColor="#000000"
/>

<ImageButton android:id="@+id/recipients_picker"
    android:src="@drawable/ic_launcher_contacts"
    android:layout_marginLeft="5dip"
    android:layout_width="50dip"
    android:layout_height="fill_parent"
    android:layout_weight="0"
    android:visibility="gone"
/>

于 2012-09-17T14:00:19.777 回答