gpt4 book ai didi

android - 操作栏中的 AutoCompleteTextView 不起作用?

转载 作者:太空狗 更新时间:2023-10-29 14:57:15 24 4
gpt4 key购买 nike

我正在尝试在操作栏中使用自动完成 TextView 。尽管我能够将自动完成操作 View 放在那里,但每当我开始输入时,我都看不到带有推荐的下拉菜单。它就像一个普通的编辑文本框。

然后,为了测试,我还在应用程序布局中包含了一个自动完成 TextView 。但这一个完全按照它应该的方式工作。两个自动完成 TextView 都是使用相同的适配器初始化的。

这是主要 Activity 的 onCreate 方法。

//defining an array to be used by the array adapters

import android.support.v4.app.FragmentActivity;
import android.support.v4.view.MenuCompat;
import android.support.v4.view.MenuItemCompat;
import android.support.v7.app.ActionBar;
import android.support.v7.app.AppCompatActivity;
import android.widget.ArrayAdapter;
import android.widget.AutoCompleteTextView;

private static final String[] COUNTRIES = new String[] { "Belgium",
"France", "France_", "Italy", "Germany", "Spain" };

protected void onCreate(Bundle savedInstanceState) {

//inflating the activity layout
super.onCreate(savedInstanceState);
setContentView(R.layout.frag_map);

//getting the action bar
actionBar = getSupportActionBar();
actionBar.setDisplayShowCustomEnabled(true);
actionBar.setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM);
actionBar.setCustomView(R.layout.map_screen_ab_auto_commplete);
LayoutInflater inflator = (LayoutInflater) this
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View v = inflator.inflate(R.layout.map_screen_ab_auto_commplete, null);

//Defining an adapter which will then be used by auto complete text view
ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,
android.R.layout.simple_dropdown_item_1line, COUNTRIES);

//setting an auto complete text view in the action bar.PLEASE NOTE THAT THIS DOES NOT WORK
mAutocompleteView = (AutoCompleteTextView) v
.findViewById(R.id.map_screen_auto_complete);
mAutocompleteView.setAdapter(adapter);

//just for checking, another auto complete text view was added. THIS WORKS
test_ac_view = (AutoCompleteTextView) this.findViewById(R.id.test_ac_view);
test_ac_view.setAdapter( adapter);
}

这是包含自动完成 TextView 的主要 Activity 布局:

    <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">

<AutoCompleteTextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="New AutoCompleteTextView"
android:id="@+id/test_ac_view"
android:layout_gravity="center_horizontal" />

<fragment
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent"
class="com.google.android.gms.maps.SupportMapFragment"
/>

</LinearLayout>

这是包含自动完成 TextView 的操作栏布局。

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

<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center_horizontal">

<AutoCompleteTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/map_screen_auto_complete"
android:layout_gravity="center_vertical"
android:layout_weight="1"
android:hint="Search Location" />
</LinearLayout>
</LinearLayout>

最佳答案

在 Manifest 文件中确保 AppTheme 是这样的:

<style name="AppTheme" parent="android:Theme.Holo.Light.DarkActionBar">

关于android - 操作栏中的 AutoCompleteTextView 不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30222981/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com