您好,登錄后才能下訂單哦!
在 Android 中,要實現 EditText 的自動補全功能,可以使用 AutoCompleteTextView 組件。AutoCompleteTextView 是 EditText 的一個子類,它可以在用戶輸入時顯示建議列表。以下是如何實現 AutoCompleteTextView 的簡單示例:
<AutoCompleteTextView
android:id="@+id/autoCompleteTextView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="請輸入內容" />
import android.os.Bundle;
import android.widget.ArrayAdapter;
import android.widget.AutoCompleteTextView;
import androidx.appcompat.app.AppCompatActivity;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// 創建一個包含建議內容的字符串數組
String[] suggestions = {"Apple", "Banana", "Cherry", "Date", "Elderberry", "Fig", "Grape"};
// 創建一個 ArrayAdapter,將建議內容與 AutoCompleteTextView 關聯
ArrayAdapter<String> adapter = new ArrayAdapter<>(this, android.R.layout.simple_dropdown_item_1line, suggestions);
// 獲取布局文件中的 AutoCompleteTextView 控件
AutoCompleteTextView autoCompleteTextView = findViewById(R.id.autoCompleteTextView);
// 為 AutoCompleteTextView 設置適配器
autoCompleteTextView.setAdapter(adapter);
}
}
在這個示例中,我們首先在布局文件中添加了一個 AutoCompleteTextView 控件。然后,在 Activity 中,我們創建了一個包含建議內容的字符串數組,并使用 ArrayAdapter 將其與 AutoCompleteTextView 關聯。最后,我們獲取布局文件中的 AutoCompleteTextView 控件,并為其設置適配器。
現在,當用戶在 AutoCompleteTextView 中輸入內容時,應用程序將顯示與輸入內容相匹配的建議列表。用戶可以從列表中選擇一個建議,或者繼續輸入以縮小選擇范圍。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。