gpt4 book ai didi

android - 为什么没有显示android微调器的 'prompt'?

转载 作者:行者123 更新时间:2023-11-30 01:29:27 30 4
gpt4 key购买 nike

在android中我定义了一个布局如下:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:columnCount="4"
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.v7.widget.Toolbar android:id="@+id/toolbar_setting"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"/>

<Spinner
android:id="@+id/settings_interval"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:prompt="@string/spinner_title"/>

...

但由于某些原因,当我启动相应的 Activity 时,微调器的 android:promp 文本未显示。为了完整起见,这里是 Activity :

public class SettingsActivity extends AppCompatActivity implements AdapterView.OnItemSelectedListener {

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

// Set toolbar, allow going back.
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar_setting);
//toolbar.setDisplayHomeAsUpEnabled(true);
//toolbar.setTitle("Settings");
setSupportActionBar(toolbar);
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
getSupportActionBar().setTitle("Settings");

Spinner spinner = (Spinner) findViewById(R.id.settings_interval);
// Create an ArrayAdapter using the string array and a default spinner layout
ArrayAdapter<CharSequence> adapter = ArrayAdapter.createFromResource(this,
R.array.listValues, android.R.layout.simple_spinner_item);
// Specify the layout to use when the list of choices appears
adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
// Apply the adapter to the spinner
spinner.setAdapter(adapter);
spinner.setOnItemSelectedListener(this);
}
}

最佳答案

这是来自 Spinner 类的代码:

public void setPromptText(CharSequence hintText) {
// Hint text is ignored for dropdowns, but maintain it here.
mHintText = hintText;
}

在 dropDown 模式下看起来像 spinner ignore prompt。尝试设置 android:spinnerMode="dialog" 来检查。

你也可以看看here解决这个问题。

关于android - 为什么没有显示android微调器的 'prompt'?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35972223/

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