gpt4 book ai didi

java - 如何移动微调下拉菜单以便可以看到所选的选项?

转载 作者:行者123 更新时间:2023-12-01 07:52:25 25 4
gpt4 key购买 nike

我正在使用微调器,并使用所有选项填充下拉菜单。我遇到的问题是,当下拉菜单出现时,它会阻止当前选择的内容。

这是演示的图片和我的代码:

Shows blocking spinner

 if(field.getType().equalsIgnoreCase("select"))
{
CSSelect select = (CSSelect) field;

LinearLayout ll = new LinearLayout(this);
final Spinner s = new Spinner(this);

TextView t = new TextView(this);
t.setText("▼");
t.setTextSize(12);
t.setBackgroundResource(R.drawable.spinnerbg);
t.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
s.performClick();
}
});

LinearLayout.LayoutParams slp = new LinearLayout.LayoutParams(400, LinearLayout.LayoutParams.WRAP_CONTENT);
s.setLayoutParams(slp);

ll.addView(s);
ll.addView(t);

s.setBackgroundResource(R.drawable.spinnerbg);

List<String> list = new ArrayList<String>();

JSONArray choices = select.getChoices();

for(int j = 0; j < choices.length(); j++)
{
JSONObject jObj = choices.getJSONObject(j);
String st = jObj.getString("text");
list.add(st);
}

ArrayAdapter<String> dataAdapter = new ArrayAdapter<String>(this,
R.layout.spinner_item, list);
dataAdapter.setDropDownViewResource(R.layout.spinner_dropdown_item);
s.setAdapter(dataAdapter);

rscroll.addView(ll, lp);
}

微调器下拉项 xml:

<?xml version="1.0" encoding="utf-8"?>
<CheckedTextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/text1"
style="?android:attr/spinnerDropDownItemStyle"
android:singleLine="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ellipsize="marquee"
android:textSize="12dp"
android:textColor="#000000"/>

微调项目 xml:

<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/text1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="12sp"
android:textColor="#000000"

/>

如何从上面的 A 转到 B?我应该使用什么代码来移动下面的下拉菜单?

最佳答案

只需将以下属性添加到 XML 中的 Spinner:

android:overlapAnchor="false"

关于java - 如何移动微调下拉菜单以便可以看到所选的选项?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35068620/

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