ก่อนเข้าสู่ตัวอย่าง เราควรรู้ว่าการป้อนข้อความอัตโนมัติใน Android คืออะไร การดูข้อความเติมข้อความอัตโนมัติก็เหมือนกับข้อความแก้ไขและเป็นคลาสย่อยของ editext แต่จะแสดงคำแนะนำจากรายการเป็นรายการดรอปดาวน์ เราต้องตั้งค่าเกณฑ์เพื่อเติมข้อความอัตโนมัติในมุมมอง ตัวอย่างเช่น เราได้ตั้งค่า Threshold เป็น 1 ดังนั้นหากผู้ใช้ป้อนตัวอักษรหนึ่งตัวจะเป็นการให้คำแนะนำตามตัวอักษร Threshold
ตัวอย่างนี้สาธิตวิธีตั้งค่าอแด็ปเตอร์เพื่อเติมข้อความอัตโนมัติในมุมมอง
ขั้นตอนที่ 1 − สร้างโครงการใหม่ใน Android Studio ไปที่ไฟล์ ⇒ โครงการใหม่และกรอกรายละเอียดที่จำเป็นทั้งหมดเพื่อสร้างโครงการใหม่
ขั้นตอนที่ 2 − เพิ่มรหัสต่อไปนี้ใน res/layout/activity_main.xml .
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="https://schemas.android.com/apk/res/android" xmlns:app="https://schemas.android.com/apk/res-auto" xmlns:tools="https://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:gravity="center" android:orientation="vertical" tools:context=".MainActivity"> <AutoCompleteTextView android:id="@+id/autoComplete" android:layout_width="fill_parent" android:hint="Enter programming language" android:layout_height="wrap_content" /> </LinearLayout>
ในด้านบนนี้ เราได้ประกาศการเติมข้อความอัตโนมัติในการดูข้อความ เมื่อผู้ใช้ป้อนตัวอักษร ระบบจะแสดงรายการเป็นคำแนะนำในเมนูแบบเลื่อนลง
ขั้นตอนที่ 3 − เพิ่มรหัสต่อไปนี้ใน src/MainActivity.java
package com.example.andy.myapplication; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.content.IntentFilter; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.text.Editable; import android.text.TextWatcher; import android.util.Log; import android.view.View; import android.widget.AdapterView; import android.widget.ArrayAdapter; import android.widget.AutoCompleteTextView; import android.widget.Button; import android.widget.RadioButton; import android.widget.Toast; import java.util.ArrayList; public class MainActivity extends AppCompatActivity { RadioButton radioButton; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); final AutoCompleteTextView autoCompleteTextView=findViewById(R.id.autoComplete); ArrayList arrayList=new ArrayList<>(); arrayList.add("Android"); arrayList.add("JAVA"); arrayList.add("CPP"); arrayList.add("C Programming"); arrayList.add("Kotlin"); arrayList.add("CSS"); arrayList.add("HTML"); arrayList.add("PHP"); arrayList.add("Swift"); ArrayAdapter arrayAdapter=new ArrayAdapter(this, android.R.layout.simple_dropdown_item_1line, arrayList); autoCompleteTextView.setAdapter(arrayAdapter); autoCompleteTextView.setThreshold(1); autoCompleteTextView.addTextChangedListener(new TextWatcher() { @Override public void beforeTextChanged(CharSequence s, int start, int count, int after) { Log.d("beforeTextChanged", String.valueOf(s)); } @Override public void onTextChanged(CharSequence s, int start, int before, int count) { Log.d("onTextChanged", String.valueOf(s)); } @Override public void afterTextChanged(Editable s) { Log.d("afterTextChanged", String.valueOf(s)); } }); } }
ในโค้ดข้างต้น เราได้เก็บค่าบางค่าไว้ใน ArrayList และผนวก ArrayList เข้ากับอะแด็ปเตอร์อาร์เรย์ เราได้ตั้งค่าอแด็ปเตอร์ให้เติมข้อความอัตโนมัติในการดูข้อความและเพิ่มขีดจำกัดเป็น 1 มาลองเรียกใช้แอปพลิเคชันของคุณกัน ฉันคิดว่าคุณได้เชื่อมต่ออุปกรณ์มือถือ Android จริงกับคอมพิวเตอร์ของคุณ ในการเรียกใช้แอปจากสตูดิโอ Android ให้เปิดไฟล์กิจกรรมของโครงการและคลิกไอคอนเรียกใช้จากแถบเครื่องมือ เลือกอุปกรณ์มือถือของคุณเป็นตัวเลือก แล้วตรวจสอบอุปกรณ์มือถือของคุณซึ่งจะแสดงหน้าจอเริ่มต้นของคุณ -
เริ่มแรกจะแสดงหน้าจอตามด้านบนและป้อน ja ใน textview นั้นจะแสดงผลลัพธ์จากอะแดปเตอร์ดังแสดงด้านล่าง -
จากผลลัพธ์ข้างต้น เรามีข้อเสนอแนะเพียงข้อเดียว ลบ J แล้วพิมพ์ c ในมุมมองข้อความนั้น ซึ่งจะแสดงคำแนะนำหลายข้อดังที่แสดงด้านล่าง -