当前位置: 首页 > 知识库问答 >
问题:

android中的autoCompleteTextBox中不显示建议文本

叶浩荡
2023-03-14

由于android中AutoCompleteTextBox中的建议文本的背景颜色和文本颜色相同,所以建议文本是不可见的,我的xml文件是:

            <AutoCompleteTextView
            android:id="@+id/autoCompleteTextView1"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="2.4"
            android:background="#ffffff"
            android:ems="10"
            android:textColor="#000000" >
            </AutoCompleteTextView>

我的清单文件是:

<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="9" />

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >

我的Java文件是:protected void onCreate(Bundle savedInstanceState){super.onCreate(savedInstanceState);setContentView(r.layout.patient_registration);

    // Get a reference to the AutoCompleteTextView in the layout
    AutoCompleteTextView textView = (AutoCompleteTextView)    findViewById(R.id.autoCompleteTextView1);
    // Get the string array
    String[] countries = { "jan", "fbe", "mar", "june", "kokok", "opopopo" };
    // Create the adapter and set it to the AutoCompleteTextView
    ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,
            android.R.layout.simple_list_item_1, countries);
    textView.setThreshold(1);

    textView.setAdapter(adapter);

}

共有1个答案

江天宇
2023-03-14

尝试使用android.r.layout.simple_dropdown_item_1line而不是android.r.layout.simple_list_item_1-它对我起作用了。

 类似资料:
  • 我有这样一个dialogfragment类: 在其布局xml文件中。xml它包含一个自动完成的文本视图。这是from的代码。xml文件 我使用以下代码在单击按钮时弹出对话框片段。所以我给出了这样的答案: 现在我需要创建一个自动完成文本视图的对象,它应该向我展示建议。我有一个数组列表,其中包含自动完成文本视图的数组适配器的数据,我这样编码(这里actv1是自动完成文本视图的对象): 但问题是我不知道

  • 就是这个班 我想将当前日期显示为文本输入按钮。(以下是按钮的布局。) 这是设置文本输入按钮的.kt代码

  • 我正在尝试用JavaSwingGUI编写一个程序。我的目的是检查是否有桌子。因此,我尝试了以下代码: 所以问题是,当我写jlblWarning并在这里加上一个点时,我看不到setText建议。而且,当我在没有建议的情况下写它时,我仍然有错误。你能帮帮我吗? 注意:可能会有一些语法错误,因为我在这里再次编写代码,而不是复制粘贴。

  • 我已经做了一个水平进度条,它工作得很好。我想在它的中间显示一个文本视图或类似的东西,在条加载时显示倒计时。请记住,这不是进度对话框,进度条位于活动中并显示倒计时计时器。有人能帮我吗,最好的方法是什么,我怎么才能做到这一点?

  • 数据显示在logcat中,但不显示在文本视图中。我能做什么 这是我的日志

  • 我一直在处理。我能够得到建议和所有在下拉列表中,当我们键入。 我的问题是:我们能在建议下拉列表中突出显示键入的字符吗?