作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用微调器,并使用所有选项填充下拉菜单。我遇到的问题是,当下拉菜单出现时,它会阻止当前选择的内容。
这是演示的图片和我的代码:
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/
我正在尝试用 Swift 编写这段 JavaScript 代码:k_combinations 到目前为止,我在 Swift 中有这个: import Foundation import Cocoa e
我是一名优秀的程序员,十分优秀!